:doc:`CleanRoomsService <../../cleanrooms>` / Client / list_analysis_templates

***********************
list_analysis_templates
***********************



.. py:method:: CleanRoomsService.Client.list_analysis_templates(**kwargs)

  

  Lists analysis templates that the caller owns.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/cleanrooms-2022-02-17/ListAnalysisTemplates>`_  


  **Request Syntax**
  ::

    response = client.list_analysis_templates(
        membershipIdentifier='string',
        nextToken='string',
        maxResults=123
    )
    
  :type membershipIdentifier: string
  :param membershipIdentifier: **[REQUIRED]** 

    The identifier for a membership resource.

    

  
  :type nextToken: string
  :param nextToken: 

    The pagination token that's used to fetch the next set of results.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of results that are returned for an API request call. The service chooses a default number if you don't set one. The service might return a `nextToken` even if the `maxResults` value has not been met.

    

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

    
    ::

      {
          'nextToken': 'string',
          'analysisTemplateSummaries': [
              {
                  'arn': 'string',
                  'createTime': datetime(2015, 1, 1),
                  'id': 'string',
                  'name': 'string',
                  'updateTime': datetime(2015, 1, 1),
                  'membershipArn': 'string',
                  'membershipId': 'string',
                  'collaborationArn': 'string',
                  'collaborationId': 'string',
                  'description': 'string',
                  'isSyntheticData': True|False
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

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

        The pagination token that's used to fetch the next set of results.

        
      

      - **analysisTemplateSummaries** *(list) --* 

        Lists analysis template metadata.

        
        

        - *(dict) --* 

          The metadata of the analysis template.

          
          

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

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

            
          

          - **createTime** *(datetime) --* 

            The time that the analysis template summary was created.

            
          

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

            The identifier of the analysis template.

            
          

          - **name** *(string) --* 

            The name of the analysis template.

            
          

          - **updateTime** *(datetime) --* 

            The time that the analysis template summary was last updated.

            
          

          - **membershipArn** *(string) --* 

            The Amazon Resource Name (ARN) of the member who created the analysis template.

            
          

          - **membershipId** *(string) --* 

            The identifier for a membership resource.

            
          

          - **collaborationArn** *(string) --* 

            The unique ARN for the analysis template summary’s associated collaboration.

            
          

          - **collaborationId** *(string) --* 

            A unique identifier for the collaboration that the analysis template summary belongs to. Currently accepts collaboration ID.

            
          

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

            The description of the analysis template.

            
          

          - **isSyntheticData** *(boolean) --* 

            Indicates if this analysis template summary generated synthetic data.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`CleanRoomsService.Client.exceptions.ResourceNotFoundException`

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

  
  *   :py:class:`CleanRoomsService.Client.exceptions.ValidationException`

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

  
  *   :py:class:`CleanRoomsService.Client.exceptions.AccessDeniedException`

  