Skip to content

Put Dedicated Ip Pool Scaling Attributes

sesv2_put_dedicated_ip_pool_scaling_attributes R Documentation

Used to convert a dedicated IP pool to a different scaling mode

Description

Used to convert a dedicated IP pool to a different scaling mode.

MANAGED pools cannot be converted to STANDARD scaling mode.

Usage

sesv2_put_dedicated_ip_pool_scaling_attributes(PoolName, ScalingMode)

Arguments

PoolName

[required] The name of the dedicated IP pool.

ScalingMode

[required] The scaling mode to apply to the dedicated IP pool.

Changing the scaling mode from MANAGED to STANDARD is not supported.

Value

An empty list.

Request syntax

svc$put_dedicated_ip_pool_scaling_attributes(
  PoolName = "string",
  ScalingMode = "STANDARD"|"MANAGED"
)

Examples

## Not run: 
# This example converts a dedicated IP pool from STANDARD to MANAGED.
svc$put_dedicated_ip_pool_scaling_attributes(
  PoolName = "sample-ses-pool",
  ScalingMode = "MANAGED"
)

## End(Not run)