@wmfs/statebox
Version:
Orchestrate Node functions using Amazon States Language
23 lines (22 loc) • 483 B
JSON
{
"Comment": "Example of the Pass State",
"StartAt": "TaskState",
"States": {
"TaskState": {
"Type": "Task",
"Resource": "module:passThrough",
"InputPath": "$.theOtherGeorefOf",
"Parameters": {
"x-datum": 0,
"y-datum": 600,
"where.$": "$.georefOf"
},
"ResultSelector": {
"x-datum.$": "$['x-datum']",
"y-datum.$": "$['y-datum']",
"place.$": "$.where"
},
"End": true
}
}
}