:doc:`FIS <../../fis>` / Client / list_experiment_templates

*************************
list_experiment_templates
*************************



.. py:method:: FIS.Client.list_experiment_templates(**kwargs)

  

  Lists your experiment templates.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/fis-2020-12-01/ListExperimentTemplates>`_  


  **Request Syntax**
  ::

    response = client.list_experiment_templates(
        maxResults=123,
        nextToken='string'
    )
    
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned ``nextToken`` value.

    

  
  :type nextToken: string
  :param nextToken: 

    The token for the next page of results.

    

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

    
    ::

      {
          'experimentTemplates': [
              {
                  'id': 'string',
                  'arn': 'string',
                  'description': 'string',
                  'creationTime': datetime(2015, 1, 1),
                  'lastUpdateTime': datetime(2015, 1, 1),
                  'tags': {
                      'string': 'string'
                  }
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **experimentTemplates** *(list) --* 

        The experiment templates.

        
        

        - *(dict) --* 

          Provides a summary of an experiment template.

          
          

          - **id** *(string) --* 

            The ID of the experiment template.

            
          

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

            The Amazon Resource Name (ARN) of the experiment template.

            
          

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

            The description of the experiment template.

            
          

          - **creationTime** *(datetime) --* 

            The time that the experiment template was created.

            
          

          - **lastUpdateTime** *(datetime) --* 

            The time that the experiment template was last updated.

            
          

          - **tags** *(dict) --* 

            The tags for the experiment template.

            
            

            - *(string) --* 
              

              - *(string) --* 
        
      
      
    
      

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

        The token to use to retrieve the next page of results. This value is ``null`` when there are no more results to return.

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

  