:doc:`MailManager <../../mailmanager>` / Client / list_addon_subscriptions

************************
list_addon_subscriptions
************************



.. py:method:: MailManager.Client.list_addon_subscriptions(**kwargs)

  

  Lists all Add On subscriptions in your account.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/mailmanager-2023-10-17/ListAddonSubscriptions>`_  


  **Request Syntax**
  ::

    response = client.list_addon_subscriptions(
        NextToken='string',
        PageSize=123
    )
    
  :type NextToken: string
  :param NextToken: 

    If you received a pagination token from a previous call to this API, you can provide it here to continue paginating through the next page of results.

    

  
  :type PageSize: integer
  :param PageSize: 

    The maximum number of ingress endpoint resources that are returned per call. You can use NextToken to obtain further ingress endpoints.

    

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

    
    ::

      {
          'AddonSubscriptions': [
              {
                  'AddonSubscriptionId': 'string',
                  'AddonName': 'string',
                  'AddonSubscriptionArn': 'string',
                  'CreatedTimestamp': datetime(2015, 1, 1)
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **AddonSubscriptions** *(list) --* 

        The list of ingress endpoints.

        
        

        - *(dict) --* 

          A subscription for an Add On representing the acceptance of its terms of use and additional pricing.

          
          

          - **AddonSubscriptionId** *(string) --* 

            The unique ID of the Add On subscription.

            
          

          - **AddonName** *(string) --* 

            The name of the Add On.

            
          

          - **AddonSubscriptionArn** *(string) --* 

            The Amazon Resource Name (ARN) of the Add On subscription.

            
          

          - **CreatedTimestamp** *(datetime) --* 

            The timestamp of when the Add On subscription was created.

            
      
    
      

      - **NextToken** *(string) --* 

        If NextToken is returned, there are more results available. The value of NextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.

        
  
  **Exceptions**
  
  *   :py:class:`MailManager.Client.exceptions.ValidationException`

  