CleanRoomsML / Paginator / ListConfiguredAudienceModels
ListConfiguredAudienceModels#
- class CleanRoomsML.Paginator.ListConfiguredAudienceModels#
paginator = client.get_paginator('list_configured_audience_models')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
CleanRoomsML.Client.list_configured_audience_models()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
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
{ 'configuredAudienceModels': [ { 'audienceModelArn': 'string', 'configuredAudienceModelArn': 'string', 'createTime': datetime(2015, 1, 1), 'description': 'string', 'name': 'string', 'outputConfig': { 'destination': { 's3Destination': { 's3Uri': 'string' } }, 'roleArn': 'string' }, 'status': 'ACTIVE', 'updateTime': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
configuredAudienceModels (list) –
The configured audience models.
(dict) –
Information about the configured audience model.
audienceModelArn (string) –
The Amazon Resource Name (ARN) of the audience model that was used to create the configured audience model.
configuredAudienceModelArn (string) –
The Amazon Resource Name (ARN) of the configured audience model that you are interested in.
createTime (datetime) –
The time at which the configured audience model was created.
description (string) –
The description of the configured audience model.
name (string) –
The name of the configured audience model.
outputConfig (dict) –
The output configuration of the configured audience model.
destination (dict) –
Defines the Amazon S3 bucket where the configured audience is stored.
s3Destination (dict) –
The Amazon S3 bucket and path for the configured audience.
s3Uri (string) –
The Amazon S3 location URI.
roleArn (string) –
The ARN of the IAM role that can write the Amazon S3 bucket.
status (string) –
The status of the configured audience model.
updateTime (datetime) –
The most recent time at which the configured audience model was updated.
NextToken (string) –
A token to resume pagination.