:doc:`IoT <../../iot>` / Client / list_managed_job_templates

**************************
list_managed_job_templates
**************************



.. py:method:: IoT.Client.list_managed_job_templates(**kwargs)

  

  Returns a list of managed job templates.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iot-2015-05-28/ListManagedJobTemplates>`_  


  **Request Syntax**
  ::

    response = client.list_managed_job_templates(
        templateName='string',
        maxResults=123,
        nextToken='string'
    )
    
  :type templateName: string
  :param templateName: 

    An optional parameter for template name. If specified, only the versions of the managed job templates that have the specified template name will be returned.

    

  
  :type maxResults: integer
  :param maxResults: 

    Maximum number of entries that can be returned.

    

  
  :type nextToken: string
  :param nextToken: 

    The token to retrieve the next set of results.

    

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

    
    ::

      {
          'managedJobTemplates': [
              {
                  'templateArn': 'string',
                  'templateName': 'string',
                  'description': 'string',
                  'environments': [
                      'string',
                  ],
                  'templateVersion': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **managedJobTemplates** *(list) --* 

        A list of managed job templates that are returned.

        
        

        - *(dict) --* 

          An object that contains information about the managed template.

          
          

          - **templateArn** *(string) --* 

            The Amazon Resource Name (ARN) for a managed template.

            
          

          - **templateName** *(string) --* 

            The unique Name for a managed template.

            
          

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

            The description for a managed template.

            
          

          - **environments** *(list) --* 

            A list of environments that are supported with the managed job template.

            
            

            - *(string) --* 
        
          

          - **templateVersion** *(string) --* 

            The version for a managed template.

            
      
    
      

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

        The token to retrieve the next set of results.

        
  
  **Exceptions**
  
  *   :py:class:`IoT.Client.exceptions.InvalidRequestException`

  
  *   :py:class:`IoT.Client.exceptions.ResourceNotFoundException`

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

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

  