delete_notification_configuration
(**kwargs)¶Deletes the specified notification.
See also: AWS API Documentation
Request Syntax
response = client.delete_notification_configuration(
AutoScalingGroupName='string',
TopicARN='string'
)
[REQUIRED]
The name of the Auto Scaling group.
[REQUIRED]
The Amazon Resource Name (ARN) of the Amazon SNS topic.
None
Exceptions
AutoScaling.Client.exceptions.ResourceContentionFault
Examples
This example deletes the specified notification from the specified Auto Scaling group.
response = client.delete_notification_configuration(
AutoScalingGroupName='my-auto-scaling-group',
TopicARN='arn:aws:sns:us-west-2:123456789012:my-sns-topic',
)
print(response)
Expected Output:
{
'ResponseMetadata': {
'...': '...',
},
}