RedshiftServerless / Paginator / ListTracks

ListTracks#

class RedshiftServerless.Paginator.ListTracks#
paginator = client.get_paginator('list_tracks')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from RedshiftServerless.Client.list_tracks().

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

{
    'tracks': [
        {
            'trackName': 'string',
            'updateTargets': [
                {
                    'trackName': 'string',
                    'workgroupVersion': 'string'
                },
            ],
            'workgroupVersion': 'string'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • tracks (list) –

      The returned tracks.

      • (dict) –

        Defines a track that determines which Amazon Redshift version to apply after a new version is released. If the value for ServerlessTrack is current, the workgroup is updated to the most recently certified release. If the value is trailing, the workgroup is updated to the previously certified release.

        • trackName (string) –

          The name of the track. Valid values are current and trailing.

        • updateTargets (list) –

          An array of UpdateTarget objects to update with the track.

          • (dict) –

            A track that you can switch the current track to.

            • trackName (string) –

              The name of the new track.

            • workgroupVersion (string) –

              The workgroup version for the new track.

        • workgroupVersion (string) –

          The workgroup version number for the workgroup release.

    • NextToken (string) –

      A token to resume pagination.