Enum ExecutionClass

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.758Z") @Stability(Experimental) public enum ExecutionClass extends Enum<ExecutionClass>
(experimental) The ExecutionClass whether the job is run with a standard or flexible execution class.

See Also:
  • Enum Constant Details

    • FLEX

      @Stability(Experimental) public static final ExecutionClass FLEX
      (experimental) The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary.
    • STANDARD

      @Stability(Experimental) public static final ExecutionClass STANDARD
      (experimental) The standard execution class is ideal for time-sensitive workloads that require fast job startup and dedicated resources.
  • Method Details

    • values

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