enum GrowthType
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppConfig.GrowthType |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappconfig#GrowthType |
Java | software.amazon.awscdk.services.appconfig.GrowthType |
Python | aws_cdk.aws_appconfig.GrowthType |
TypeScript (source) | aws-cdk-lib » aws_appconfig » GrowthType |
Defines the growth type of the deployment strategy.
Members
| Name | Description |
|---|---|
| LINEAR | AWS AppConfig will process the deployment by increments of the growth factor evenly distributed over the deployment. |
| EXPONENTIAL | AWS AppConfig will process the deployment exponentially using the following formula: G*(2^N). |
LINEAR
AWS AppConfig will process the deployment by increments of the growth factor evenly distributed over the deployment.
EXPONENTIAL
AWS AppConfig will process the deployment exponentially using the following formula: G*(2^N).
In this formula, G is the step percentage specified by the user and N
is the number of steps until the configuration is deployed to all targets.

.NET
Go
Java
Python
TypeScript (