CleanRoomsService / Client / list_intermediate_tables

list_intermediate_tables

CleanRoomsService.Client.list_intermediate_tables(**kwargs)

Lists intermediate tables owned by the caller in a membership. We recommend using pagination to ensure that the operation returns quickly and successfully.

See also: AWS API Documentation

Request Syntax

response = client.list_intermediate_tables(
    membershipIdentifier='string',
    nextToken='string',
    maxResults=123
)
Parameters:
  • membershipIdentifier (string) –

    [REQUIRED]

    The unique identifier of the membership for which to list intermediate tables.

  • 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

{
    'intermediateTableSummaries': [
        {
            'id': 'string',
            'arn': 'string',
            'name': 'string',
            'description': 'string',
            'membershipArn': 'string',
            'membershipId': 'string',
            'collaborationArn': 'string',
            'collaborationId': 'string',
            'createTime': datetime(2015, 1, 1),
            'updateTime': datetime(2015, 1, 1),
            'status': 'CREATED'|'POPULATE_STARTED'|'POPULATE_SUCCESS'|'POPULATE_FAILED'|'DISALLOWED_BY_DATA_PROVIDER'|'BASE_TABLE_REMOVED'|'RETENTION_PERIOD_EXPIRED',
            'retentionInDays': 123,
            'analysisRuleTypes': [
                'CUSTOM',
            ]
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • intermediateTableSummaries (list) –

      The list of intermediate table summaries.

      • (dict) –

        Contains summary information about an intermediate table.

        • id (string) –

          The unique identifier of the intermediate table.

        • arn (string) –

          The Amazon Resource Name (ARN) of the intermediate table.

        • name (string) –

          The name of the intermediate table.

        • description (string) –

          The description of the intermediate table.

        • membershipArn (string) –

          The Amazon Resource Name (ARN) of the membership that contains the intermediate table.

        • membershipId (string) –

          The unique identifier of the membership that contains the intermediate table.

        • collaborationArn (string) –

          The Amazon Resource Name (ARN) of the collaboration that contains the intermediate table.

        • collaborationId (string) –

          The unique identifier of the collaboration that contains the intermediate table.

        • createTime (datetime) –

          The time the intermediate table was created.

        • updateTime (datetime) –

          The time the intermediate table was last updated.

        • status (string) –

          The current status of the intermediate table.

        • retentionInDays (integer) –

          The number of days that populated data is retained before expiring.

        • analysisRuleTypes (list) –

          The types of analysis rules associated with the intermediate table.

          • (string) –

    • nextToken (string) –

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

Exceptions