putDedicatedIpPoolScalingAttributes

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

MANAGED pools cannot be converted to STANDARD scaling mode.

Samples

import aws.sdk.kotlin.services.sesv2.model.ScalingMode
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
}