Module: AWSCDK::StepFunctions::InputType

Defined in:
step_functions/input_type.rb

Overview

The type of task input.

Constant Summary collapse

TEXT =
Deprecated.
Note:

Default:

Use a literal string This might be a JSON-encoded object, or just text.

valid JSON text: standalone, quote-delimited strings; objects; arrays; numbers; Boolean values; and null.

example: literal string example: "encoded"

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions.InputType", "TEXT")
OBJECT =
Deprecated.
Note:

Default:

Use an object which may contain Data and Context fields as object values, if desired.

example: { literal: 'literal', SomeInput: sfn.JsonPath.stringAt('$.someField') }

Jsii::Enum.new("aws-cdk-lib.aws_stepfunctions.InputType", "OBJECT")