CleanRoomsService / Paginator / ListConfiguredAudienceModelAssociations

ListConfiguredAudienceModelAssociations#

class CleanRoomsService.Paginator.ListConfiguredAudienceModelAssociations#
paginator = client.get_paginator('list_configured_audience_model_associations')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from CleanRoomsService.Client.list_configured_audience_model_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]

    A unique identifier for a membership that contains the configured audience model associations that you want to retrieve.

  • 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

{
    'configuredAudienceModelAssociationSummaries': [
        {
            'membershipId': 'string',
            'membershipArn': 'string',
            'collaborationArn': 'string',
            'collaborationId': 'string',
            'createTime': datetime(2015, 1, 1),
            'updateTime': datetime(2015, 1, 1),
            'id': 'string',
            'arn': 'string',
            'name': 'string',
            'configuredAudienceModelArn': 'string',
            'description': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • configuredAudienceModelAssociationSummaries (list) –

      Summaries of the configured audience model associations that you requested.

      • (dict) –

        A summary of the configured audience model association.

        • membershipId (string) –

          A unique identifier of the membership that contains the configured audience model association.

        • membershipArn (string) –

          The Amazon Resource Name (ARN) of the membership that contains the configured audience model association.

        • collaborationArn (string) –

          The Amazon Resource Name (ARN) of the collaboration that contains the configured audience model association.

        • collaborationId (string) –

          A unique identifier of the collaboration that configured audience model is associated with.

        • createTime (datetime) –

          The time at which the configured audience model association was created.

        • updateTime (datetime) –

          The most recent time at which the configured audience model association was updated.

        • id (string) –

          A unique identifier of the configured audience model association.

        • arn (string) –

          The Amazon Resource Name (ARN) of the configured audience model association.

        • name (string) –

          The name of the configured audience model association.

        • configuredAudienceModelArn (string) –

          The Amazon Resource Name (ARN) of the configured audience model that was used for this configured audience model association.

        • description (string) –

          The description of the configured audience model association.

    • NextToken (string) –

      A token to resume pagination.