:doc:`Greengrass <../../greengrass>` / Client / list_subscription_definitions

*****************************
list_subscription_definitions
*****************************



.. py:method:: Greengrass.Client.list_subscription_definitions(**kwargs)

  Retrieves a list of subscription definitions.

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/greengrass-2017-06-07/ListSubscriptionDefinitions>`_  


  **Request Syntax**
  ::

    response = client.list_subscription_definitions(
        MaxResults='string',
        NextToken='string'
    )
    
  :type MaxResults: string
  :param MaxResults: The maximum number of results to be returned per request.

  
  :type NextToken: string
  :param NextToken: The token for the next set of results, or ''null'' if there are no additional results.

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

    
    ::

      {
          'Definitions': [
              {
                  'Arn': 'string',
                  'CreationTimestamp': 'string',
                  'Id': 'string',
                  'LastUpdatedTimestamp': 'string',
                  'LatestVersion': 'string',
                  'LatestVersionArn': 'string',
                  'Name': 'string',
                  'Tags': {
                      'string': 'string'
                  }
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Definitions** *(list) --* Information about a definition.
        

        - *(dict) --* Information about a definition.
          

          - **Arn** *(string) --* The ARN of the definition.
          

          - **CreationTimestamp** *(string) --* The time, in milliseconds since the epoch, when the definition was created.
          

          - **Id** *(string) --* The ID of the definition.
          

          - **LastUpdatedTimestamp** *(string) --* The time, in milliseconds since the epoch, when the definition was last updated.
          

          - **LatestVersion** *(string) --* The ID of the latest version associated with the definition.
          

          - **LatestVersionArn** *(string) --* The ARN of the latest version associated with the definition.
          

          - **Name** *(string) --* The name of the definition.
          

          - **Tags** *(dict) --* Tag(s) attached to the resource arn.
            

            - *(string) --* 
              

              - *(string) --* 
        
      
      
    
      

      - **NextToken** *(string) --* The token for the next set of results, or ''null'' if there are no additional results.
  