putDedicatedIpPoolScalingAttributes
abstract suspend fun putDedicatedIpPoolScalingAttributes(input: PutDedicatedIpPoolScalingAttributesRequest): PutDedicatedIpPoolScalingAttributesResponse
Used to convert a dedicated IP pool to a different scaling mode.
MANAGED
pools cannot be converted to STANDARD
scaling mode.
Samples
fun main() {
//sampleStart
// This example converts a dedicated IP pool from STANDARD to MANAGED.
val resp = sesV2Client.putDedicatedIpPoolScalingAttributes {
poolName = "sample-ses-pool"
scalingMode = ScalingMode.fromValue("MANAGED")
}
//sampleEnd
}