Module: AWSCDK::AppConfig::GrowthType
- Defined in:
- app_config/growth_type.rb
Overview
Defines the growth type of the deployment strategy.
Constant Summary collapse
- LINEAR =
Deprecated.Note:
Default:
AWS AppConfig will process the deployment by increments of the growth factor evenly distributed over the deployment.
Jsii::Enum.new("aws-cdk-lib.aws_appconfig.GrowthType", "LINEAR")
- EXPONENTIAL =
Deprecated.Note:
Default:
AWS AppConfig will process the deployment exponentially using the following formula:
G*(2^N).In this formula,
Gis the step percentage specified by the user andNis the number of steps until the configuration is deployed to all targets. Jsii::Enum.new("aws-cdk-lib.aws_appconfig.GrowthType", "EXPONENTIAL")