Delete Notification Configuration
autoscaling_delete_notification_configuration | R Documentation |
Deletes the specified notification¶
Description¶
Deletes the specified notification.
Usage¶
autoscaling_delete_notification_configuration(AutoScalingGroupName,
TopicARN)
Arguments¶
AutoScalingGroupName |
[required] The name of the Auto Scaling group. |
TopicARN |
[required] The Amazon Resource Name (ARN) of the Amazon SNS topic. |
Value¶
An empty list.
Request syntax¶
svc$delete_notification_configuration(
AutoScalingGroupName = "string",
TopicARN = "string"
)
Examples¶
## Not run:
# This example deletes the specified notification from the specified Auto
# Scaling group.
svc$delete_notification_configuration(
AutoScalingGroupName = "my-auto-scaling-group",
TopicARN = "arn:aws:sns:us-west-2:123456789012:my-sns-topic"
)
## End(Not run)