Using paths to access input for Step Functions workflows
In the Amazon States Language, a path is a string beginning with $
that
you can use to identify components within JSON text. Paths follow JsonPathInputPath
,
ResultPath
, and OutputPath
. For more information see Processing input and output in Step Functions.
Note
You can also specify a JSON node of the input or the context object by using paths
within the Parameters
field of a state definition. See Passing parameters to a service API in Step Functions.
You must use square bracket notation if your field name contains any
character that is not included in the member-name-shorthand
definition of the JsonPath ABNF_
), you
must use square bracket notation. For example, $.abc.['def ghi']
.
Reference Paths
A reference path is a path whose syntax is limited in such a way that it can identify only a single node in a JSON structure:
-
You can access object fields using only dot (
.
) and square bracket ([ ]
) notation. -
Functions such as
length()
aren't supported. -
Lexical operators, which are non-symbolic, such as
subsetof
aren't supported. -
Filtering by regular expression or by referencing another value in the JSON structure is not supported.
-
The operators
@
,,
,:
, and?
are not supported
For example, if state input data contains the following values:
{
"foo": 123,
"bar": ["a", "b", "c"],
"car": {
"cdr": true
}
}
The following reference paths would return the following.
$.foo => 123
$.bar => ["a", "b", "c"]
$.car.cdr => true
Certain states use paths and reference paths to control the flow of a state machine or configure a state's settings or options. For more information,
see Modeling workflow input and output path processing with
data flow simulator
Flattening an array of arrays
If the Parallel workflow state or Map workflow state state in your state machines return an array of arrays, you can transform them into a flat array with the ResultSelector field. You can include this field inside the Parallel or Map state definition to manipulate the result of these states.
To flatten arrays, use the JMESPath syntax [*]
ResultSelector
field as shown in the following example.
"ResultSelector": { "flattenArray.$": "$[*][*]" }
For examples that show how to flatten an array, see Step 3 in the following tutorials: