@Generated(value="jsii-pacmak/1.5.0 (build 46538f8)", date="2020-05-15T23:35:58.929Z") @Stability(value=Experimental) public enum StateMachineType extends Enum<StateMachineType>
Default: STANDARD
EXPERIMENTAL
https://docs.aws.amazon.com/step-functions/latest/dg/concepts-standard-vs-express.html| Enum Constant and Description |
|---|
EXPRESS
Express Workflows are ideal for high-volume, event processing workloads.
|
STANDARD
Standard Workflows are ideal for long-running, durable, and auditable workflows.
|
| Modifier and Type | Method and Description |
|---|---|
static StateMachineType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateMachineType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final StateMachineType EXPRESS
EXPERIMENTAL
@Stability(value=Experimental) public static final StateMachineType STANDARD
EXPERIMENTAL
public static StateMachineType[] values()
for (StateMachineType c : StateMachineType.values()) System.out.println(c);
public static StateMachineType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.