There are more AWS SDK examples available in the AWS Doc SDK Examples
Use PutNotificationConfiguration
with a CLI
The following code examples show how to use PutNotificationConfiguration
.
- AWS CLI
-
To add a notification
This example adds the specified notification to the specified Auto Scaling group.
aws autoscaling put-notification-configuration \ --auto-scaling-group-name
my-asg
\ --topic-arnarn:aws:sns:us-west-2:123456789012:my-sns-topic
\ --notification-typeautoscaling:TEST_NOTIFICATION
This command produces no output.
For more information, see Getting Amazon SNS notifications when your Auto Scaling group scales in the Amazon EC2 Auto Scaling User Guide.
-
For API details, see PutNotificationConfiguration
in AWS CLI Command Reference.
-