CleanRoomsService / Client / list_configured_tables
list_configured_tables¶
- CleanRoomsService.Client.list_configured_tables(**kwargs)¶
- Lists configured tables. - See also: AWS API Documentation - Request Syntax- response = client.list_configured_tables( nextToken='string', maxResults=123 ) - Parameters:
- nextToken (string) – The pagination token that’s used to fetch the next set of results. 
- maxResults (integer) – 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. 
 
- Return type:
- 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_QUERYallows SQL queries to be run directly on this table.- DIRECT_JOBallows PySpark jobs to be run directly on this table.- MULTIPLEallows 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- CleanRoomsService.Client.exceptions.InternalServerException
- CleanRoomsService.Client.exceptions.ValidationException
- CleanRoomsService.Client.exceptions.ThrottlingException
- CleanRoomsService.Client.exceptions.AccessDeniedException