Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save rafaelfelix/7e7d3d36f140624fe2cc05b500ca1ab6 to your computer and use it in GitHub Desktop.

Select an option

Save rafaelfelix/7e7d3d36f140624fe2cc05b500ca1ab6 to your computer and use it in GitHub Desktop.
step-functions-article-example-1.json
{
"StartAt": "Concatenate Strings",
"States": {
"Concatenate Strings": {
"Type": "Task",
"Resource": "arn:aws:lambda:region:account:function:concatenate_strings",
"ResultPath": "$.preparedInput",
"Parameters": {
"market.$": "$.market",
"model.$": "$.model",
"bucket": "my-bucket"
},
"Next": "Step2"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment