Personalize / Paginator / ListEventTrackers

ListEventTrackers#

class Personalize.Paginator.ListEventTrackers#
paginator = client.get_paginator('list_event_trackers')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from Personalize.Client.list_event_trackers().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    datasetGroupArn='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • datasetGroupArn (string) – The ARN of a dataset group used to filter the response.

  • 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

{
    'eventTrackers': [
        {
            'name': 'string',
            'eventTrackerArn': 'string',
            'status': 'string',
            'creationDateTime': datetime(2015, 1, 1),
            'lastUpdatedDateTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • eventTrackers (list) –

      A list of event trackers.

      • (dict) –

        Provides a summary of the properties of an event tracker. For a complete listing, call the DescribeEventTracker API.

        • name (string) –

          The name of the event tracker.

        • eventTrackerArn (string) –

          The Amazon Resource Name (ARN) of the event tracker.

        • status (string) –

          The status of the event tracker.

          An event tracker can be in one of the following states:

          • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED

          • DELETE PENDING > DELETE IN_PROGRESS

        • creationDateTime (datetime) –

          The date and time (in Unix time) that the event tracker was created.

        • lastUpdatedDateTime (datetime) –

          The date and time (in Unix time) that the event tracker was last updated.

    • NextToken (string) –

      A token to resume pagination.