Enum ExecutionClass
- All Implemented Interfaces:
Serializable
,Comparable<ExecutionClass>
,java.lang.constant.Constable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-10-31T19:13:07.887Z")
@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:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription(experimental) The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary.(experimental) The standard execution class is ideal for time-sensitive workloads that require fast job startup and dedicated resources. -
Method Summary
Modifier and TypeMethodDescriptionstatic ExecutionClass
Returns the enum constant of this type with the specified name.static ExecutionClass[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
FLEX
(experimental) The flexible execution class is appropriate for time-insensitive jobs whose start and completion times may vary. -
STANDARD
(experimental) The standard execution class is ideal for time-sensitive workloads that require fast job startup and dedicated resources.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-