CleanRoomsML / Paginator / ListAudienceExportJobs

ListAudienceExportJobs#

class CleanRoomsML.Paginator.ListAudienceExportJobs#
paginator = client.get_paginator('list_audience_export_jobs')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from CleanRoomsML.Client.list_audience_export_jobs().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    audienceGenerationJobArn='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • audienceGenerationJobArn (string) – The Amazon Resource Name (ARN) of the audience generation job that you are interested in.

  • 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

{
    'audienceExportJobs': [
        {
            'audienceGenerationJobArn': 'string',
            'audienceSize': {
                'type': 'ABSOLUTE'|'PERCENTAGE',
                'value': 123
            },
            'createTime': datetime(2015, 1, 1),
            'description': 'string',
            'name': 'string',
            'outputLocation': 'string',
            'status': 'CREATE_PENDING'|'CREATE_IN_PROGRESS'|'CREATE_FAILED'|'ACTIVE',
            'statusDetails': {
                'message': 'string',
                'statusCode': 'string'
            },
            'updateTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • audienceExportJobs (list) –

      The audience export jobs that match the request.

      • (dict) –

        Provides information about the audience export job.

        • audienceGenerationJobArn (string) –

          The Amazon Resource Name (ARN) of the audience generation job that was exported.

        • audienceSize (dict) –

          The size of the generated audience. Must match one of the sizes in the configured audience model.

          • type (string) –

            Whether the audience size is defined in absolute terms or as a percentage. You can use the ABSOLUTE AudienceSize to configure out audience sizes using the count of identifiers in the output. You can use the Percentage AudienceSize to configure sizes in the range 1-100 percent.

          • value (integer) –

            Specify an audience size value.

        • createTime (datetime) –

          The time at which the audience export job was created.

        • description (string) –

          The description of the audience export job.

        • name (string) –

          The name of the audience export job.

        • outputLocation (string) –

          The Amazon S3 bucket where the audience export is stored.

        • status (string) –

          The status of the audience export job.

        • statusDetails (dict) –

          Details about the status of a resource.

          • message (string) –

            The error message that was returned. The message is intended for human consumption and can change at any time. Use the statusCode for programmatic error handling.

          • statusCode (string) –

            The status code that was returned. The status code is intended for programmatic error handling. Clean Rooms ML will not change the status code for existing error conditions.

        • updateTime (datetime) –

          The most recent time at which the audience export job was updated.

    • NextToken (string) –

      A token to resume pagination.