@Generated(value="jsii-pacmak/1.29.0 (build 41df200)", date="2021-06-02T17:52:47.671Z") @Stability(value=Stable) public enum InputType extends Enum<InputType>
| Enum Constant and Description |
|---|
OBJECT
Use an object which may contain Data and Context fields as object values, if desired.
|
TEXT
Use a literal string This might be a JSON-encoded object, or just text.
|
| Modifier and Type | Method and Description |
|---|---|
static InputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Stable) public static final InputType TEXT
valid JSON text: standalone, quote-delimited strings; objects; arrays; numbers; Boolean values; and null.
example: literal string
example: {"json": "encoded"}
@Stability(value=Stable) public static final InputType OBJECT
example: { literal: 'literal', SomeInput: sfn.JsonPath.stringAt('$.someField') }
https://docs.aws.amazon.com/step-functions/latest/dg/input-output-contextobject.htmlpublic static InputType[] values()
for (InputType c : InputType.values()) System.out.println(c);
public static InputType 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 © 2021. All rights reserved.