CleanRoomsService / Paginator / ListIdNamespaceAssociations
ListIdNamespaceAssociations#
- class CleanRoomsService.Paginator.ListIdNamespaceAssociations#
paginator = client.get_paginator('list_id_namespace_associations')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
CleanRoomsService.Client.list_id_namespace_associations()
.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 namespace association 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
{ 'idNamespaceAssociationSummaries': [ { 'membershipId': 'string', 'membershipArn': 'string', 'collaborationArn': 'string', 'collaborationId': 'string', 'createTime': datetime(2015, 1, 1), 'updateTime': datetime(2015, 1, 1), 'id': 'string', 'arn': 'string', 'inputReferenceConfig': { 'inputReferenceArn': 'string', 'manageResourcePolicies': True|False }, 'name': 'string', 'description': 'string', 'inputReferenceProperties': { 'idNamespaceType': 'SOURCE'|'TARGET' } }, ], 'NextToken': 'string' }
Response Structure
(dict) –
idNamespaceAssociationSummaries (list) –
The summary information of the ID namespace associations that you requested.
(dict) –
Detailed information about the ID namespace association.
membershipId (string) –
The unique identifier of the membership resource for this ID namespace association.
membershipArn (string) –
The Amazon Resource Name (ARN) of the membership resource for this ID namespace association.
collaborationArn (string) –
The Amazon Resource Name (ARN) of the collaboration that contains this ID namespace association.
collaborationId (string) –
The unique identifier of the collaboration that contains this ID namespace association.
createTime (datetime) –
The time at which this ID namespace association was created.
updateTime (datetime) –
The most recent time at which this ID namespace association has been updated.
id (string) –
The unique identifier of this ID namespace association.
arn (string) –
The Amazon Resource Name (ARN) of this ID namespace association.
inputReferenceConfig (dict) –
The input reference configuration details for this ID namespace association.
inputReferenceArn (string) –
The Amazon Resource Name (ARN) of the Entity Resolution resource that is being associated to the collaboration. Valid resource ARNs are from the ID namespaces that you own.
manageResourcePolicies (boolean) –
When
TRUE
, Clean Rooms manages permissions for the ID namespace association resource.When
FALSE
, the resource owner manages permissions for the ID namespace association resource.
name (string) –
The name of the ID namespace association.
description (string) –
The description of the ID namespace association.
inputReferenceProperties (dict) –
The input reference properties for this ID namespace association.
idNamespaceType (string) –
The ID namespace type for this ID namespace association.
NextToken (string) –
A token to resume pagination.