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

****************************************
describe_auto_scaling_notification_types
****************************************



.. py:method:: AutoScaling.Client.describe_auto_scaling_notification_types()

  

  Describes the notification types that are supported by Amazon EC2 Auto Scaling.

  

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


  **Request Syntax**

  ::

    response = client.describe_auto_scaling_notification_types()
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'AutoScalingNotificationTypes': [
              'string',
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **AutoScalingNotificationTypes** *(list) --* 

        The notification types.

        
        

        - *(string) --* 
    
  
  **Exceptions**
  
  *   :py:class:`AutoScaling.Client.exceptions.ResourceContentionFault`

  

  **Examples**

  This example describes the available notification types.
  ::

    response = client.describe_auto_scaling_notification_types(
    )
    
    print(response)

  
  Expected Output:
  ::

    {
        'AutoScalingNotificationTypes': [
            'autoscaling:EC2_INSTANCE_LAUNCH',
            'autoscaling:EC2_INSTANCE_LAUNCH_ERROR',
            'autoscaling:EC2_INSTANCE_TERMINATE',
            'autoscaling:EC2_INSTANCE_TERMINATE_ERROR',
            'autoscaling:TEST_NOTIFICATION',
        ],
        'ResponseMetadata': {
            '...': '...',
        },
    }

  