CleanRoomsService / Paginator / ListCollaborationPrivacyBudgetTemplates
ListCollaborationPrivacyBudgetTemplates#
- class CleanRoomsService.Paginator.ListCollaborationPrivacyBudgetTemplates#
paginator = client.get_paginator('list_collaboration_privacy_budget_templates')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
CleanRoomsService.Client.list_collaboration_privacy_budget_templates()
.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 one of your collaborations.
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
{ 'collaborationPrivacyBudgetTemplateSummaries': [ { 'id': 'string', 'arn': 'string', 'collaborationId': 'string', 'collaborationArn': 'string', 'creatorAccountId': 'string', 'privacyBudgetType': 'DIFFERENTIAL_PRIVACY', 'createTime': datetime(2015, 1, 1), 'updateTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
collaborationPrivacyBudgetTemplateSummaries (list) –
An array that summarizes the collaboration privacy budget templates. The summary includes collaboration information, creation information, the privacy budget type.
(dict) –
A summary of the collaboration’s privacy budget template. This summary includes information about who created the privacy budget template and what collaborations it belongs to.
id (string) –
The unique identifier of the collaboration privacy budget template.
arn (string) –
The ARN of the collaboration privacy budget template.
collaborationId (string) –
The unique identifier of the collaboration that contains this collaboration privacy budget template.
collaborationArn (string) –
The ARN of the collaboration that contains this collaboration privacy budget template.
creatorAccountId (string) –
The unique identifier of the account that created this collaboration privacy budget template.
privacyBudgetType (string) –
The type of the privacy budget template.
createTime (datetime) –
The time at which the collaboration privacy budget template was created.
updateTime (datetime) –
The most recent time at which the collaboration privacy budget template was updated.
NextToken (string) –
A token to resume pagination.