aws.appconfig.get_deployment_strategy
Example SQL Queries
SELECT * FROMaws.appconfig.get_deployment_strategyWHERE"deployment_strategy_id" = 'VALUE';Description
Retrieves information about a deployment strategy. A deployment strategy defines important criteria for rolling out your configuration to the designated targets. A deployment strategy includes the overall duration required, a percentage of targets to receive the deployment during each interval, an algorithm that defines how percentage grows, and bake time.
Table Definition
| Column Name | Column Data Type |
|---|---|
| deployment_strategy_id Required Input Column The ID of the deployment strategy to get. | 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 |
| deployment_duration_in_minutes Total amount of time the deployment lasted. | BIGINT |
| description The description of the deployment strategy. | VARCHAR |
| final_bake_time_in_minutes The amount of time that AppConfig monitored for alarms before considering the deployment to be complete and no longer eligible for automatic rollback. | BIGINT |
| growth_factor The percentage of targets that received a deployed configuration during each interval. | DOUBLE |
| growth_type The algorithm used to define how percentage grew over time. | VARCHAR |
| id The deployment strategy ID. | VARCHAR |
| name The name of the deployment strategy. | VARCHAR |
| replicate_to Save the deployment strategy to a Systems Manager (SSM) document. | VARCHAR |