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

**********************************
list_configured_table_associations
**********************************



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

  

  Lists configured table associations for a membership.

  

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


  **Request Syntax**
  ::

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

    A unique identifier for the membership to list configured table associations for. Currently accepts the membership ID.

    

  
  :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**

    
    ::

      {
          '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) --* 

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

        
  
  **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`

  