Last active
April 4, 2019 14:40
-
-
Save zeyneloz/8f95d9bf0897082d3df1736558a796cc 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": "sendMailTask", | |
| }, | |
| "sendMailTask": { | |
| "Type": "Task", | |
| "Resource": "arn:aws:lambda:x:x:function:sendMail", | |
| "End": true | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment