Last active
October 24, 2017 02:13
-
-
Save dkavanagh/4dea1df6725d61561c6d12eeee28a7f8 to your computer and use it in GitHub Desktop.
calc_too
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"StartAt": "Calculate", | |
"States": { | |
"Calculate": { | |
"Type": "Task", | |
"Resource": "arn:aws:lambda:us-east-1:721404732763:function:DoMath", | |
"ResultPath": "$.second", | |
"Next": "CalculateToo" | |
}, | |
"CalculateToo": { | |
"Type": "Task", | |
"Resource": "arn:aws:lambda:us-east-1:721404732763:function:DoMath", | |
"InputPath": "$.output", | |
"End": true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment