aws.appconfig.get_configuration
Example SQL Queries
SELECT * FROMaws.appconfig.get_configurationWHERE"application" = 'VALUE'AND "environment" = 'VALUE'AND "configuration" = 'VALUE'AND "client_id" = 'VALUE';Description
(Deprecated) Retrieves the latest deployed configuration.
Note the following important information.
This API action is deprecated. Calls to receive configuration data should use the StartConfigurationSession and GetLatestConfiguration APIs instead.
GetConfiguration is a priced call. For more information, see Pricing.
Table Definition
| Column Name | Column Data Type |
|---|---|
| application Required Input Column The application to get. Specify either the application name or the application ID. | VARCHAR |
| client_id Required Input Column The clientId parameter in the following command is a unique, user-specified ID to identify the client for the configuration. This ID enables AppConfig to deploy the configuration in intervals, as defined in the deployment strategy. | VARCHAR |
| configuration Required Input Column The configuration to get. Specify either the configuration name or the configuration ID. | VARCHAR |
| environment Required Input Column The environment to get. Specify either the environment name or the environment ID. | VARCHAR |
| client_configuration_version Input Column The configuration version returned in the most recent GetConfiguration response. AppConfig uses the value of the ClientConfigurationVersion parameter to identify the configuration version on your clients. If you don’t send ClientConfigurationVersion with each call to GetConfiguration, your clients receive the current configuration. You are charged each time your clients receive a configuration. To avoid excess charges, we recommend you use the StartConfigurationSession and GetLatestConfiguration APIs, which track the client configuration version on your behalf. If you choose to continue using GetConfiguration, we recommend that you include the ClientConfigurationVersion value with every call to GetConfiguration. The value to use for ClientConfigurationVersion comes from the ConfigurationVersion attribute returned by GetConfiguration when there is new or updated data, and should be saved for subsequent calls to GetConfiguration. For more information about working with configurations, see Retrieving the Configuration in the AppConfig User Guide. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| configuration_version The configuration version. | VARCHAR |
| content The content of the configuration or the configuration data. The Content attribute only contains data if the system finds new or updated configuration data. If there is no new or updated data and ClientConfigurationVersion matches the version of the current configuration, AppConfig returns a 204 No Content HTTP response code and the Content value will be empty. | BLOB |
| content_type A standard MIME type describing the format of the configuration content. For more information, see Content-Type. | VARCHAR |