interface NotificationConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.AutoScaling.CfnAutoScalingGroup.NotificationConfigurationProperty | 
|  Java | software.amazon.awscdk.services.autoscaling.CfnAutoScalingGroup.NotificationConfigurationProperty | 
|  Python | aws_cdk.aws_autoscaling.CfnAutoScalingGroup.NotificationConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-autoscaling»CfnAutoScalingGroup»NotificationConfigurationProperty | 
A structure that specifies an Amazon SNS notification configuration for the NotificationConfigurations property of the AWS::AutoScaling::AutoScalingGroup resource.
For an example template snippet, see Auto scaling template snippets .
For more information, see Get Amazon SNS notifications when your Auto Scaling group scales in the Amazon EC2 Auto Scaling User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as autoscaling from '@aws-cdk/aws-autoscaling';
const notificationConfigurationProperty: autoscaling.CfnAutoScalingGroup.NotificationConfigurationProperty = {
  topicArn: 'topicArn',
  // the properties below are optional
  notificationTypes: ['notificationTypes'],
};
Properties
| Name | Type | Description | 
|---|---|---|
| topic | string | The Amazon Resource Name (ARN) of the Amazon SNS topic. | 
| notification | string[] | A list of event types that send a notification. Event types can include any of the following types. | 
topicArn
Type:
string
The Amazon Resource Name (ARN) of the Amazon SNS topic.
notificationTypes?
Type:
string[]
(optional)
A list of event types that send a notification. Event types can include any of the following types.
Allowed values :
- autoscaling:EC2_INSTANCE_LAUNCH
- autoscaling:EC2_INSTANCE_LAUNCH_ERROR
- autoscaling:EC2_INSTANCE_TERMINATE
- autoscaling:EC2_INSTANCE_TERMINATE_ERROR
- autoscaling:TEST_NOTIFICATION
