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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:25.366Z") @Stability(Stable) public enum ActionOnFailure extends Enum<ActionOnFailure>
The action to take when the cluster step fails.

Default: CONTINUE

Example:

 EmrAddStep.Builder.create(this, "Task")
         .clusterId("ClusterId")
         .name("StepName")
         .jar("Jar")
         .actionOnFailure(ActionOnFailure.CONTINUE)
         .build();
 

See Also:
  • Enum Constant Details

    • TERMINATE_CLUSTER

      @Stability(Stable) public static final ActionOnFailure TERMINATE_CLUSTER
      Terminate the Cluster on Step Failure.
    • CANCEL_AND_WAIT

      @Stability(Stable) public static final ActionOnFailure CANCEL_AND_WAIT
      Cancel Step execution and enter WAITING state.
    • CONTINUE

      @Stability(Stable) public static final ActionOnFailure CONTINUE
      Continue to the next Step.
  • Method Details

    • values

      public static ActionOnFailure[] 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 ActionOnFailure 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