Interface NotificationConfiguration

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

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:11.776Z") @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();