CleanRoomsService / Paginator / ListCollaborationConfiguredAudienceModelAssociations
ListCollaborationConfiguredAudienceModelAssociations#
- class CleanRoomsService.Paginator.ListCollaborationConfiguredAudienceModelAssociations#
paginator = client.get_paginator('list_collaboration_configured_audience_model_associations')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
CleanRoomsService.Client.list_collaboration_configured_audience_model_associations()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( collaborationIdentifier='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
collaborationIdentifier (string) –
[REQUIRED]
A unique identifier for the collaboration that the configured audience model association belongs to. Accepts a collaboration ID.
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
{ 'collaborationConfiguredAudienceModelAssociationSummaries': [ { 'arn': 'string', 'createTime': datetime(2015, 1, 1), 'id': 'string', 'name': 'string', 'updateTime': datetime(2015, 1, 1), 'collaborationArn': 'string', 'collaborationId': 'string', 'creatorAccountId': 'string', 'description': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
collaborationConfiguredAudienceModelAssociationSummaries (list) –
The metadata of the configured audience model association within a collaboration.
(dict) –
A summary of the configured audience model association in the collaboration.
arn (string) –
The Amazon Resource Name (ARN) of the configured audience model association.
createTime (datetime) –
The time at which the configured audience model association was created.
id (string) –
The identifier of the configured audience model association.
name (string) –
The name of the configured audience model association.
updateTime (datetime) –
The most recent time at which the configured audience model association was updated.
collaborationArn (string) –
The unique ARN for the configured audience model’s associated collaboration.
collaborationId (string) –
A unique identifier for the collaboration that the configured audience model associations belong to. Accepts collaboration ID.
creatorAccountId (string) –
The identifier used to reference members of the collaboration. Only supports Amazon Web Services account ID.
description (string) –
The description of the configured audience model association.
NextToken (string) –
A token to resume pagination.