ExportThemes

class AmplifyUIBuilder.Paginator.ExportThemes
paginator = client.get_paginator('export_themes')
paginate(**kwargs)

Creates an iterator that will paginate through responses from AmplifyUIBuilder.Client.export_themes().

See also: AWS API Documentation

Request Syntax

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

    [REQUIRED]

    The unique ID of the Amplify app to export the themes to.

  • environmentName (string) --

    [REQUIRED]

    The name of the backend environment that is part of the Amplify app.

  • 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.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'entities': [
        {
            'appId': 'string',
            'createdAt': datetime(2015, 1, 1),
            'environmentName': 'string',
            'id': 'string',
            'modifiedAt': datetime(2015, 1, 1),
            'name': 'string',
            'overrides': [
                {
                    'key': 'string',
                    'value': {
                        'children': {'... recursive ...'},
                        'value': 'string'
                    }
                },
            ],
            'tags': {
                'string': 'string'
            },
            'values': [
                {
                    'key': 'string',
                    'value': {
                        'children': {'... recursive ...'},
                        'value': 'string'
                    }
                },
            ]
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • entities (list) --

      Represents the configuration of the exported themes.

      • (dict) --

        A theme is a collection of style settings that apply globally to the components associated with an Amplify application.

        • appId (string) --

          The unique ID for the Amplify app associated with the theme.

        • createdAt (datetime) --

          The time that the theme was created.

        • environmentName (string) --

          The name of the backend environment that is a part of the Amplify app.

        • id (string) --

          The ID for the theme.

        • modifiedAt (datetime) --

          The time that the theme was modified.

        • name (string) --

          The name of the theme.

        • overrides (list) --

          Describes the properties that can be overriden to customize a theme.

          • (dict) --

            A key-value pair that defines a property of a theme.

            • key (string) --

              The name of the property.

            • value (dict) --

              The value of the property.

              • children (list) --

                A list of key-value pairs that define the theme's properties.

              • value (string) --

                The value of a theme property.

        • tags (dict) --

          One or more key-value pairs to use when tagging the theme.

          • (string) --
            • (string) --
        • values (list) --

          A list of key-value pairs that defines the properties of the theme.

          • (dict) --

            A key-value pair that defines a property of a theme.

            • key (string) --

              The name of the property.

            • value (dict) --

              The value of the property.

              • children (list) --

                A list of key-value pairs that define the theme's properties.

              • value (string) --

                The value of a theme property.

    • NextToken (string) --

      A token to resume pagination.