CleanRoomsService.Paginator.
ListConfiguredTables
¶paginator = client.get_paginator('list_configured_tables')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from CleanRoomsService.Client.list_configured_tables()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'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
The configured tables listed by the request.
The member of the configured table summary list.
The unique ID of the configured table.
The unique ARN of the configured table.
The name of the configured table.
The time the configured table was created.
The time the configured table was last updated.
The types of analysis rules associated with this configured table.
The analysis method for the configured tables. The only valid value is currently DIRECT_QUERY.
A token to resume pagination.