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

*******************************
ListConfiguredTableAssociations
*******************************



.. py:class:: CleanRoomsService.Paginator.ListConfiguredTableAssociations

  ::

    
    paginator = client.get_paginator('list_configured_table_associations')

  
  

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

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

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


    **Request Syntax**
    ::

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

      A unique identifier for the membership to list configured table associations for. Currently accepts the membership 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**

      
      ::

        {
            'configuredTableAssociationSummaries': [
                {
                    'configuredTableId': 'string',
                    'membershipId': 'string',
                    'membershipArn': 'string',
                    'name': 'string',
                    'createTime': datetime(2015, 1, 1),
                    'updateTime': datetime(2015, 1, 1),
                    'id': 'string',
                    'arn': 'string',
                    'analysisRuleTypes': [
                        'AGGREGATION'|'LIST'|'CUSTOM',
                    ]
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **configuredTableAssociationSummaries** *(list) --* 

          The retrieved list of configured table associations.

          
          

          - *(dict) --* 

            The configured table association summary for the objects listed by the request.

            
            

            - **configuredTableId** *(string) --* 

              The unique configured table ID that this configured table association refers to.

              
            

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

              The unique ID for the membership that the configured table association belongs to.

              
            

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

              The unique ARN for the membership that the configured table association belongs to.

              
            

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

              The name of the configured table association. The table is identified by this name when running Protected Queries against the underlying data.

              
            

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

              The time the configured table association was created.

              
            

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

              The time the configured table association was last updated.

              
            

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

              The unique ID for the configured table association.

              
            

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

              The unique ARN for the configured table association.

              
            

            - **analysisRuleTypes** *(list) --* 

              The analysis rule types that are associated with the configured table associations in this summary.

              
              

              - *(string) --* 
          
        
      
        

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

          A token to resume pagination.

          
    