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 token value retrieved from a previous call to access the next page of results.
  • maxResults (integer) -- The maximum size of the results that is returned per call.
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',
            ],
            'analysisMethod': 'DIRECT_QUERY'
        },
    ],
    '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. The only valid value is currently DIRECT_QUERY.

    • nextToken (string) --

      The token value retrieved from a previous call to access the next page of results.

Exceptions

  • CleanRoomsService.Client.exceptions.InternalServerException
  • CleanRoomsService.Client.exceptions.ValidationException
  • CleanRoomsService.Client.exceptions.ThrottlingException
  • CleanRoomsService.Client.exceptions.AccessDeniedException