CleanRoomsService / Paginator / ListIdMappingTables
ListIdMappingTables#
- class CleanRoomsService.Paginator.ListIdMappingTables#
paginator = client.get_paginator('list_id_mapping_tables')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
CleanRoomsService.Client.list_id_mapping_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 that contains the ID mapping tables that you want to view.
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
{ 'idMappingTableSummaries': [ { 'collaborationArn': 'string', 'collaborationId': 'string', 'membershipId': 'string', 'membershipArn': 'string', 'createTime': datetime(2015, 1, 1), 'updateTime': datetime(2015, 1, 1), 'id': 'string', 'arn': 'string', 'description': 'string', 'inputReferenceConfig': { 'inputReferenceArn': 'string', 'manageResourcePolicies': True|False }, 'name': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
idMappingTableSummaries (list) –
The summary information of the ID mapping tables that you requested.
(dict) –
Detailed information about the ID mapping table.
collaborationArn (string) –
The Amazon Resource Name (ARN) of the collaboration that contains this ID mapping table.
collaborationId (string) –
The unique identifier of the collaboration that contains this ID mapping table.
membershipId (string) –
The unique identifier of the membership resource for this ID mapping table.
membershipArn (string) –
The Amazon Resource Name (ARN) of the membership resource for this ID mapping table.
createTime (datetime) –
The time at which this ID mapping table was created.
updateTime (datetime) –
The most recent time at which this ID mapping table was updated.
id (string) –
The unique identifier of this ID mapping table.
arn (string) –
The Amazon Resource Name (ARN) of this ID mapping table.
description (string) –
The description of this ID mapping table.
inputReferenceConfig (dict) –
The input reference configuration for the ID mapping table.
inputReferenceArn (string) –
The Amazon Resource Name (ARN) of the referenced resource in Entity Resolution. Valid values are ID mapping workflow ARNs.
manageResourcePolicies (boolean) –
When
TRUE
, Clean Rooms manages permissions for the ID mapping table resource.When
FALSE
, the resource owner manages permissions for the ID mapping table resource.
name (string) –
The name of this ID mapping table.
NextToken (string) –
A token to resume pagination.