resumeProcesses

Resumes the specified suspended auto scaling processes, or all suspended process, for the specified Auto Scaling group.

For more information, see Suspending and resuming scaling processes in the Amazon EC2 Auto Scaling User Guide.

Samples


fun main() { 
   //sampleStart 
   // This example resumes the specified suspended scaling process for the specified Auto Scaling group.
autoScalingClient.resumeProcesses {
    autoScalingGroupName = "my-auto-scaling-group"
    scalingProcesses = listOf<String>(
        "AlarmNotification"
    )
} 
   //sampleEnd
}