Enum Class ActionPoint

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-21T06:34:02.893Z") @Stability(Stable) public enum ActionPoint extends Enum<ActionPoint>
Defines Extension action points.

Example:

 Function fn;
 Extension.Builder.create(this, "MyExtension")
         .actions(List.of(
             Action.Builder.create()
                     .actionPoints(List.of(ActionPoint.ON_DEPLOYMENT_START))
                     .eventDestination(new LambdaDestination(fn))
                     .build()))
         .build();
 

See Also:
  • Enum Constant Details

    • PRE_CREATE_HOSTED_CONFIGURATION_VERSION

      @Stability(Stable) public static final ActionPoint PRE_CREATE_HOSTED_CONFIGURATION_VERSION
    • PRE_START_DEPLOYMENT

      @Stability(Stable) public static final ActionPoint PRE_START_DEPLOYMENT
    • ON_DEPLOYMENT_START

      @Stability(Stable) public static final ActionPoint ON_DEPLOYMENT_START
    • ON_DEPLOYMENT_STEP

      @Stability(Stable) public static final ActionPoint ON_DEPLOYMENT_STEP
    • ON_DEPLOYMENT_BAKING

      @Stability(Stable) public static final ActionPoint ON_DEPLOYMENT_BAKING
    • ON_DEPLOYMENT_COMPLETE

      @Stability(Stable) public static final ActionPoint ON_DEPLOYMENT_COMPLETE
    • ON_DEPLOYMENT_ROLLED_BACK

      @Stability(Stable) public static final ActionPoint ON_DEPLOYMENT_ROLLED_BACK
  • Method Details

    • values

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

      public static ActionPoint valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null