AppConfig / Paginator / ListConfigurationProfiles

ListConfigurationProfiles#

class AppConfig.Paginator.ListConfigurationProfiles#
paginator = client.get_paginator('list_configuration_profiles')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from AppConfig.Client.list_configuration_profiles().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    ApplicationId='string',
    Type='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • ApplicationId (string) –

    [REQUIRED]

    The application ID.

  • Type (string) – A filter based on the type of configurations that the configuration profile contains. A configuration can be a feature flag or a freeform configuration.

  • 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

{
    'Items': [
        {
            'ApplicationId': 'string',
            'Id': 'string',
            'Name': 'string',
            'LocationUri': 'string',
            'ValidatorTypes': [
                'JSON_SCHEMA'|'LAMBDA',
            ],
            'Type': 'string'
        },
    ],

}

Response Structure

  • (dict) –

    • Items (list) –

      The elements from this collection.

      • (dict) –

        A summary of a configuration profile.

        • ApplicationId (string) –

          The application ID.

        • Id (string) –

          The ID of the configuration profile.

        • Name (string) –

          The name of the configuration profile.

        • LocationUri (string) –

          The URI location of the configuration.

        • ValidatorTypes (list) –

          The types of validators in the configuration profile.

          • (string) –

        • Type (string) –

          The type of configurations contained in the profile. AppConfig supports feature flags and freeform configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values for Type:

          AWS.AppConfig.FeatureFlags

          AWS.Freeform