deleteNotificationConfiguration

Deletes the specified notification.

Samples


fun main() { 
   //sampleStart 
   // This example deletes the specified notification from the specified Auto Scaling group.
autoScalingClient.deleteNotificationConfiguration {
    autoScalingGroupName = "my-auto-scaling-group"
    topicArn = "arn:aws:sns:us-west-2:123456789012:my-sns-topic"
} 
   //sampleEnd
}