Guest User

Untitled

a guest
Jun 22nd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. {
  2. "StartAt": "CreateExportTask",
  3. "States": {
  4. "CreateExportTask": {
  5. "Type": "Task",
  6. "Resource": "LAMBDA_FUNCTION_ARN",
  7. "Next": "IsAllLogsExported"
  8. },
  9. "IsAllLogsExported": {
  10. "Type": "Choice",
  11. "Choices": [
  12. {
  13. "Variable": "$.continue",
  14. "BooleanEquals": true,
  15. "Next": "CreateExportTask"
  16. }
  17. ],
  18. "Default": "SuccessState"
  19. },
  20. "SuccessState": {
  21. "Type": "Succeed"
  22. }
  23. }
  24. }
Add Comment
Please, Sign In to add comment