AWS AppConfig Data

2021/11/17 - AWS AppConfig Data - 2 new api methods

Changes  AWS AppConfig Data is a new service that allows you to retrieve configuration deployed by AWS AppConfig. See the AppConfig user guide for more details on getting started. https://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html

GetLatestConfiguration (new) Link ¶

Retrieves the latest deployed configuration. This API may return empty Configuration data if the client already has the latest version. See StartConfigurationSession to obtain an InitialConfigurationToken to call this API.

Warning

Each call to GetLatestConfiguration returns a new ConfigurationToken (NextPollConfigurationToken in the response). This new token MUST be provided to the next call to GetLatestConfiguration when polling for configuration updates.

To avoid excess charges, we recommend that you include the ClientConfigurationVersion value with every call to GetConfiguration . This value must be saved on your client. Subsequent calls to GetConfiguration must pass this value by using the ClientConfigurationVersion parameter.

See also: AWS API Documentation

Request Syntax

client.get_latest_configuration(
    ConfigurationToken='string'
)
type ConfigurationToken

string

param ConfigurationToken

[REQUIRED]

Token describing the current state of the configuration session. To obtain a token, first call the StartConfigurationSession API. Note that every call to GetLatestConfiguration will return a new ConfigurationToken (NextPollConfigurationToken in the response) and MUST be provided to subsequent GetLatestConfiguration API calls.

rtype

dict

returns

Response Syntax

{
    'Configuration': StreamingBody(),
    'ContentType': 'string',
    'NextPollConfigurationToken': 'string',
    'NextPollIntervalInSeconds': 123
}

Response Structure

  • (dict) --

    Response parameters for the GetLatestConfiguration API

    • Configuration (:class:`.StreamingBody`) --

      The data of the configuration. Note that this may be empty if the client already has the latest version of configuration.

    • ContentType (string) --

      A standard MIME type describing the format of the configuration content.

    • NextPollConfigurationToken (string) --

      The latest token describing the current state of the configuration session. This MUST be provided to the next call to GetLatestConfiguration.

    • NextPollIntervalInSeconds (integer) --

      The amount of time the client should wait before polling for configuration updates again. See RequiredMinimumPollIntervalInSeconds to set the desired poll interval.

StartConfigurationSession (new) Link ¶

Starts a configuration session used to retrieve a deployed configuration. See the GetLatestConfiguration API for more details.

See also: AWS API Documentation

Request Syntax

client.start_configuration_session(
    ApplicationIdentifier='string',
    ConfigurationProfileIdentifier='string',
    EnvironmentIdentifier='string',
    RequiredMinimumPollIntervalInSeconds=123
)
type ApplicationIdentifier

string

param ApplicationIdentifier

[REQUIRED]

The application ID or the application name.

type ConfigurationProfileIdentifier

string

param ConfigurationProfileIdentifier

[REQUIRED]

The configuration profile ID or the configuration profile name.

type EnvironmentIdentifier

string

param EnvironmentIdentifier

[REQUIRED]

The environment ID or the environment name.

type RequiredMinimumPollIntervalInSeconds

integer

param RequiredMinimumPollIntervalInSeconds

The interval at which your client will poll for configuration. If provided, the service will throw a BadRequestException if the client polls before the specified poll interval. By default, client poll intervals are not enforced.

rtype

dict

returns

Response Syntax

{
    'InitialConfigurationToken': 'string'
}

Response Structure

  • (dict) --

    Response parameters for the StartConfigurationSession API.

    • InitialConfigurationToken (string) --

      Token encapsulating state about the configuration session. Provide this token to the GetLatestConfiguration API to retrieve configuration data.

      Warning

      This token should only be used once in your first call to GetLatestConfiguration. You MUST use the new token in the GetConfiguration response (NextPollConfigurationToken) in each subsequent call to GetLatestConfiguration.