Created
April 4, 2019 22:34
-
-
Save zeyneloz/5b1c6064d08ed4d9e7e894816b8e6021 to your computer and use it in GitHub Desktop.
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": "translateTask", | |
"Comment": "exportNotes workflow.", | |
"Version": "1.0", | |
"States": { | |
"translateTask": { | |
"Type": "Task", | |
"Resource": "arn:aws:lambda:x:x:function:translate", | |
"Next": "adapter", | |
"InputPath": "$.translateInput", | |
"ResultPath": "$.translateOutput", | |
}, | |
"adapter": { | |
"Type": "Task", | |
"Resource": "arn:aws:lambda:x:x:function:adapter", | |
"Next": "sendMailTask", | |
"InputPath": "$", | |
"ResultPath": "$", | |
}, | |
"sendMailTask": { | |
"Type": "Task", | |
"Resource": "arn:aws:lambda:x:x:function:sendMail", | |
"InputPath": "$.sendMailInput", | |
"ResultPath": "$.sendMailOutput", | |
"End": true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment