java.lang.Object
java.lang.Enum<GrowthType>
software.amazon.awscdk.services.appconfig.GrowthType
All Implemented Interfaces:
Serializable, Comparable<GrowthType>, java.lang.constant.Constable

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-11T03:45:49.467Z") @Stability(Stable) public enum GrowthType extends Enum<GrowthType>
Defines the growth type of the deployment strategy.
  • Enum Constant Details

    • LINEAR

      @Stability(Stable) public static final GrowthType LINEAR
      AWS AppConfig will process the deployment by increments of the growth factor evenly distributed over the deployment.
    • EXPONENTIAL

      @Stability(Stable) public static final GrowthType 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.

  • Method Details

    • values

      public static GrowthType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static GrowthType valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null