Class GrowthType
Defines the growth type of the deployment strategy.
Inheritance
System.Object
GrowthType
Namespace: Amazon.CDK.AWS.AppConfig
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public sealed class GrowthType : Enum
Syntax (vb)
Public NotInheritable Class GrowthType
Inherits
Enum
Synopsis
Fields
EXPONENTIAL | AWS AppConfig will process the deployment exponentially using the following formula: |
LINEAR | AWS AppConfig will process the deployment by increments of the growth factor evenly distributed over the deployment. |
value__ |
Fields
EXPONENTIAL
AWS AppConfig will process the deployment exponentially using the following formula: G*(2^N)
.
public const GrowthType EXPONENTIAL
Field Value
Type | Description |
---|---|
GrowthType |
Remarks
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.
LINEAR
AWS AppConfig will process the deployment by increments of the growth factor evenly distributed over the deployment.
public const GrowthType LINEAR
Field Value
Type | Description |
---|---|
GrowthType |
value__
public int value__
Field Value
Type | Description |
---|---|
System.Int32 |