Select your cookie preferences

We use cookies and similar tools to enhance your experience, provide our services, deliver relevant advertising, and make improvements. Approved third parties also use these tools to help us deliver advertising and provide certain site features.

ListThemeVersions

class QuickSight.Paginator.ListThemeVersions
paginator = client.get_paginator('list_theme_versions')
paginate(**kwargs)

Creates an iterator that will paginate through responses from QuickSight.Client.list_theme_versions().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    AwsAccountId='string',
    ThemeId='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • AwsAccountId (string) --

    [REQUIRED]

    The ID of the Amazon Web Services account that contains the themes that you're listing.

  • ThemeId (string) --

    [REQUIRED]

    The ID for the theme.

  • 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

{
    'ThemeVersionSummaryList': [
        {
            'VersionNumber': 123,
            'Arn': 'string',
            'Description': 'string',
            'CreatedTime': datetime(2015, 1, 1),
            'Status': 'CREATION_IN_PROGRESS'|'CREATION_SUCCESSFUL'|'CREATION_FAILED'|'UPDATE_IN_PROGRESS'|'UPDATE_SUCCESSFUL'|'UPDATE_FAILED'|'DELETED'
        },
    ],
    'Status': 123,
    'RequestId': 'string'
}

Response Structure

  • (dict) --

    • ThemeVersionSummaryList (list) --

      A structure containing a list of all the versions of the specified theme.

      • (dict) --

        The theme version.

        • VersionNumber (integer) --

          The version number of the theme version.

        • Arn (string) --

          The Amazon Resource Name (ARN) of the theme version.

        • Description (string) --

          The description of the theme version.

        • CreatedTime (datetime) --

          The date and time that this theme version was created.

        • Status (string) --

          The status of the theme version.

    • Status (integer) --

      The HTTP status of the request.

    • RequestId (string) --

      The Amazon Web Services request ID for this operation.