AutoScaling / Client / delete_notification_configuration

delete_notification_configuration#

AutoScaling.Client.delete_notification_configuration(**kwargs)#

Deletes the specified notification.

See also: AWS API Documentation

Request Syntax

response = client.delete_notification_configuration(
    AutoScalingGroupName='string',
    TopicARN='string'
)
Parameters:
  • AutoScalingGroupName (string) –

    [REQUIRED]

    The name of the Auto Scaling group.

  • TopicARN (string) –

    [REQUIRED]

    The Amazon Resource Name (ARN) of the Amazon SNS topic.

Returns:

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': {
        '...': '...',
    },
}