:doc:`CleanRoomsService <../../cleanrooms>` / Paginator / ListCollaborationAnalysisTemplates

**********************************
ListCollaborationAnalysisTemplates
**********************************



.. py:class:: CleanRoomsService.Paginator.ListCollaborationAnalysisTemplates

  ::

    
    paginator = client.get_paginator('list_collaboration_analysis_templates')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`CleanRoomsService.Client.list_collaboration_analysis_templates`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          collaborationIdentifier='string',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type collaborationIdentifier: string
    :param collaborationIdentifier: **[REQUIRED]** 

      A unique identifier for the collaboration that the analysis templates belong to. Currently accepts collaboration ID.

      

    
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

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

      

      - *(dict) --* 
        

        - **collaborationAnalysisTemplateSummaries** *(list) --* 

          The metadata of the analysis template within a collaboration.

          
          

          - *(dict) --* 

            The metadata of the analysis template within a collaboration.

            
            

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

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

              
            

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

              The time that the summary of the analysis template in a collaboration was created.

              
            

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

              The identifier of the analysis template.

              
            

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

              The name of the analysis template.

              
            

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

              The time that the summary of the analysis template in the collaboration was last updated.

              
            

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

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

              
            

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

              A unique identifier for the collaboration that the analysis templates belong to. Currently accepts collaboration ID.

              
            

            - **creatorAccountId** *(string) --* 

              The identifier used to reference members of the collaboration. Currently only supports Amazon Web Services account ID.

              
            

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

              The description of the analysis template.

              
            

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

              Indicates if this collaboration analysis template uses synthetic data generation.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    