CleanRoomsService / Paginator / ListIntermediateTables

ListIntermediateTables

class CleanRoomsService.Paginator.ListIntermediateTables
paginator = client.get_paginator('list_intermediate_tables')
paginate(**kwargs)

Creates an iterator that will paginate through responses from CleanRoomsService.Client.list_intermediate_tables().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    membershipIdentifier='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • membershipIdentifier (string) –

    [REQUIRED]

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

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

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) –

      A token to resume pagination.