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

**********************************
list_connector_definition_versions
**********************************



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

  Lists the versions of a connector definition, which are containers for connectors. Connectors run on the Greengrass core and contain built-in integration with local infrastructure, device protocols, AWS, and other cloud services.

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


  **Request Syntax**
  ::

    response = client.list_connector_definition_versions(
        ConnectorDefinitionId='string',
        MaxResults='string',
        NextToken='string'
    )
    
  :type ConnectorDefinitionId: string
  :param ConnectorDefinitionId: **[REQUIRED]** The ID of the connector definition.

  
  :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**

    
    ::

      {
          'NextToken': 'string',
          'Versions': [
              {
                  'Arn': 'string',
                  'CreationTimestamp': 'string',
                  'Id': 'string',
                  'Version': 'string'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

      - **Versions** *(list) --* Information about a version.
        

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

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

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

          - **Id** *(string) --* The ID of the parent definition that the version is associated with.
          

          - **Version** *(string) --* The ID of the version.
      
    
  
  **Exceptions**
  
  *   :py:class:`Greengrass.Client.exceptions.BadRequestException`

  