CleanRoomsService / Paginator / ListIntermediateTableVersions
ListIntermediateTableVersions¶
- class CleanRoomsService.Paginator.ListIntermediateTableVersions¶
paginator = client.get_paginator('list_intermediate_table_versions')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
CleanRoomsService.Client.list_intermediate_table_versions().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( membershipIdentifier='string', intermediateTableIdentifier='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
membershipIdentifier (string) –
[REQUIRED]
The unique identifier of the membership that contains the intermediate table.
intermediateTableIdentifier (string) –
[REQUIRED]
The unique identifier of the intermediate table for which to list versions.
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
NextTokenwill 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
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'intermediateTableVersionSummaries': [ { 'versionId': 'string', 'tableId': 'string', 'createTime': datetime(2015, 1, 1), 'analysisId': 'string', 'status': 'POPULATE_STARTED'|'POPULATE_SUCCESS'|'POPULATE_FAILED'|'RETENTION_PERIOD_EXPIRED', 'analysisType': 'QUERY', 'kmsKeyArn': 'string', 'expirationTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
intermediateTableVersionSummaries (list) –
The list of intermediate table version summaries.
(dict) –
Contains summary information about a version of an intermediate table.
versionId (string) –
The unique identifier of the version.
tableId (string) –
The unique identifier of the intermediate table that this version belongs to.
createTime (datetime) –
The time the version was created.
analysisId (string) –
The identifier of the protected query that created this version.
status (string) –
The status of the version.
analysisType (string) –
The type of analysis that created this version.
kmsKeyArn (string) –
The Amazon Resource Name (ARN) of the KMS key used to encrypt this version’s data.
expirationTime (datetime) –
The time when this version expires based on the retention period.
NextToken (string) –
A token to resume pagination.