Enum JobState

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-17T14:54:05.056Z") @Stability(Stable) public enum JobState extends Enum<JobState>
Job states emitted by Glue to CloudWatch Events.

See Also:
  • Enum Constant Details

    • SUCCEEDED

      @Stability(Stable) public static final JobState SUCCEEDED
      State indicating job run succeeded.
    • FAILED

      @Stability(Stable) public static final JobState FAILED
      State indicating job run failed.
    • TIMEOUT

      @Stability(Stable) public static final JobState TIMEOUT
      State indicating job run timed out.
    • STARTING

      @Stability(Stable) public static final JobState STARTING
      State indicating job is starting.
    • RUNNING

      @Stability(Stable) public static final JobState RUNNING
      State indicating job is running.
    • STOPPING

      @Stability(Stable) public static final JobState STOPPING
      State indicating job is stopping.
    • STOPPED

      @Stability(Stable) public static final JobState STOPPED
      State indicating job stopped.
  • Method Details

    • values

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