:doc:`UserNotifications <../../notifications>` / Client / list_managed_notification_configurations

****************************************
list_managed_notification_configurations
****************************************



.. py:method:: UserNotifications.Client.list_managed_notification_configurations(**kwargs)

  

  Returns a list of Managed Notification Configurations according to specified filters, ordered by creation time in reverse chronological order (newest first).

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/notifications-2018-05-10/ListManagedNotificationConfigurations>`_  


  **Request Syntax**
  ::

    response = client.list_managed_notification_configurations(
        channelIdentifier='string',
        maxResults=123,
        nextToken='string'
    )
    
  :type channelIdentifier: string
  :param channelIdentifier: 

    The identifier or ARN of the notification channel to filter configurations by.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to be returned in this call. Defaults to 20.

    

  
  :type nextToken: string
  :param nextToken: 

    The start token for paginated calls. Retrieved from the response of a previous ListManagedNotificationChannelAssociations call. Next token uses Base64 encoding.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'nextToken': 'string',
          'managedNotificationConfigurations': [
              {
                  'arn': 'string',
                  'name': 'string',
                  'description': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **nextToken** *(string) --* 

        A pagination token. If a non-null pagination token is returned in a result, pass its value in another request to retrieve more entries.

        
      

      - **managedNotificationConfigurations** *(list) --* 

        A list of Managed Notification Configurations matching the request criteria.

        
        

        - *(dict) --* 

          Describes the basic structure and properties of a ``ManagedNotificationConfiguration``.

          
          

          - **arn** *(string) --* 

            The Amazon Resource Name (ARN) of the ``ManagedNotificationConfiguration``.

            
          

          - **name** *(string) --* 

            The name of the ``ManagedNotificationConfiguration``.

            
          

          - **description** *(string) --* 

            The description of the ``ManagedNotificationConfiguration``.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`UserNotifications.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`UserNotifications.Client.exceptions.ValidationException`

  
  *   :py:class:`UserNotifications.Client.exceptions.InternalServerException`

  
  *   :py:class:`UserNotifications.Client.exceptions.ThrottlingException`

  