Interface NotificationConfiguration

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
NotificationConfiguration.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:45.399Z") @Stability(Stable) public interface NotificationConfiguration extends software.amazon.jsii.JsiiSerializable
AutoScalingGroup fleet change notifications configurations.

You can configure AutoScaling to send an SNS notification whenever your Auto Scaling group scales.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.autoscaling.*;
 import software.amazon.awscdk.services.sns.*;
 ScalingEvents scalingEvents;
 Topic topic;
 NotificationConfiguration notificationConfiguration = NotificationConfiguration.builder()
         .topic(topic)
         // the properties below are optional
         .scalingEvents(scalingEvents)
         .build();