Skip to content

Instantly share code, notes, and snippets.

@rafaelfelix
Last active April 4, 2019 12:21
Show Gist options
  • Save rafaelfelix/e974ead704783de1aefe217bb426c5d3 to your computer and use it in GitHub Desktop.
Save rafaelfelix/e974ead704783de1aefe217bb426c5d3 to your computer and use it in GitHub Desktop.
step-functions-article-example-2.json
{
"StartAt": "Step1",
"States": {
"Step1": {
"Type": "Task",
"Resource": "arn:aws:lambda:region:account:function:step1",
"ResultPath": "$.result",
"Next": "Step2"
},
"Step2": {
"Type": "Task",
"Resource": "arn:aws:lambda:region:account:function:step2",
"Parameters": {
"param1.$": "$.from.input",
"param2.$": "$.result.from.step1",
"End": true
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment