:doc:`AutoScaling <../../autoscaling>` / Client / delete_notification_configuration

*********************************
delete_notification_configuration
*********************************



.. py:method:: AutoScaling.Client.delete_notification_configuration(**kwargs)

  

  Deletes the specified notification.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/autoscaling-2011-01-01/DeleteNotificationConfiguration>`_  


  **Request Syntax**
  ::

    response = client.delete_notification_configuration(
        AutoScalingGroupName='string',
        TopicARN='string'
    )
    
  :type AutoScalingGroupName: string
  :param AutoScalingGroupName: **[REQUIRED]** 

    The name of the Auto Scaling group.

    

  
  :type TopicARN: string
  :param TopicARN: **[REQUIRED]** 

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

    

  
  
  :returns: None
  **Exceptions**
  
  *   :py:class:`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': {
            '...': '...',
        },
    }

  