aws.appconfig.get_hosted_configuration_version
Example SQL Queries
SELECT * FROMaws.appconfig.get_hosted_configuration_versionWHERE"application_id" = 'VALUE'AND "configuration_profile_id" = 'VALUE'AND "version_number" = 'VALUE';Description
Retrieves information about a specific configuration version.
Table Definition
| Column Name | Column Data Type |
|---|---|
| application_id Required Input Column The application ID. | VARCHAR |
| configuration_profile_id Required Input Column The configuration profile ID. | VARCHAR |
| version_number Required Input Column The configuration version. | BIGINT |
| _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 |
| content The content of the configuration or the configuration data. | BLOB |
| content_type A standard MIME type describing the format of the configuration content. For more information, see Content-Type. | VARCHAR |
| description A description of the configuration. | VARCHAR |
| kms_key_arn The Amazon Resource Name of the Key Management Service key that was used to encrypt this specific version of the configuration data in the AppConfig hosted configuration store. | VARCHAR |
| version_label A user-defined label for an AppConfig hosted configuration version. | VARCHAR |