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

**********************
list_configured_tables
**********************



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

  

  Lists configured tables.

  

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


  **Request Syntax**
  ::

    response = client.list_configured_tables(
        nextToken='string',
        maxResults=123
    )
    
  :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**

    
    ::

      {
          'configuredTableSummaries': [
              {
                  'id': 'string',
                  'arn': 'string',
                  'name': 'string',
                  'createTime': datetime(2015, 1, 1),
                  'updateTime': datetime(2015, 1, 1),
                  'analysisRuleTypes': [
                      'AGGREGATION'|'LIST'|'CUSTOM',
                  ],
                  'analysisMethod': 'DIRECT_QUERY'|'DIRECT_JOB'|'MULTIPLE',
                  'selectedAnalysisMethods': [
                      'DIRECT_QUERY'|'DIRECT_JOB',
                  ]
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **configuredTableSummaries** *(list) --* 

        The configured tables listed by the request.

        
        

        - *(dict) --* 

          The member of the configured table summary list.

          
          

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

            The unique ID of the configured table.

            
          

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

            The unique ARN of the configured table.

            
          

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

            The name of the configured table.

            
          

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

            The time the configured table was created.

            
          

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

            The time the configured table was last updated.

            
          

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

            The types of analysis rules associated with this configured table.

            
            

            - *(string) --* 
        
          

          - **analysisMethod** *(string) --* 

            The analysis method for the configured tables.

             

            ``DIRECT_QUERY`` allows SQL queries to be run directly on this table.

             

            ``DIRECT_JOB`` allows PySpark jobs to be run directly on this table.

             

            ``MULTIPLE`` allows both SQL queries and PySpark jobs to be run directly on this table.

            
          

          - **selectedAnalysisMethods** *(list) --* 

            The selected analysis methods for the configured table summary.

            
            

            - *(string) --* 
        
      
    
      

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

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

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

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

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

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

  