Connect / Paginator / ListDataTablePrimaryValues
ListDataTablePrimaryValues¶
- class Connect.Paginator.ListDataTablePrimaryValues¶
paginator = client.get_paginator('list_data_table_primary_values')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
Connect.Client.list_data_table_primary_values().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( InstanceId='string', DataTableId='string', RecordIds=[ 'string', ], PrimaryAttributeValues=[ { 'AttributeName': 'string', 'Values': [ 'string', ] }, ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
InstanceId (string) –
[REQUIRED]
The unique identifier for the Amazon Connect instance.
DataTableId (string) –
[REQUIRED]
The unique identifier for the data table whose primary values should be listed.
RecordIds (list) –
Optional list of specific record IDs to retrieve. Used for CloudFormation to effectively describe records by ID. If NextToken is provided, this parameter is ignored.
(string) –
PrimaryAttributeValues (list) –
Optional filter to retrieve primary values matching specific criteria.
(dict) –
A primary attribute value filter.
AttributeName (string) – [REQUIRED]
The filter’s attribute name.
Values (list) – [REQUIRED]
The filter’s values.
(string) –
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
{ 'PrimaryValuesList': [ { 'RecordId': 'string', 'PrimaryValues': [ { 'AttributeName': 'string', 'AttributeId': 'string', 'Value': 'string' }, ], 'LastModifiedTime': datetime(2015, 1, 1), 'LastModifiedRegion': 'string' }, ] }
Response Structure
(dict) –
PrimaryValuesList (list) –
A list of primary value combinations with their record IDs and modification metadata.
(dict) –
A record primary value.
RecordId (string) –
The value’s record ID.
PrimaryValues (list) –
The value’s primary values.
(dict) –
A primary value response.
AttributeName (string) –
The value’s attribute name.
AttributeId (string) –
The value’s attribute ID.
Value (string) –
The value’s value.
LastModifiedTime (datetime) –
The value’s last modified time.
LastModifiedRegion (string) –
The value’s last modified region.