GrowthType
- class aws_cdk.aws_appconfig.GrowthType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)
Bases:
Enum
Defines the growth type of the deployment strategy.
Attributes
- 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 andN
is the number of steps until the configuration is deployed to all targets.
- LINEAR
AWS AppConfig will process the deployment by increments of the growth factor evenly distributed over the deployment.