https://github.com/bboure/step-functions-sqs-pattern
https://github.com/bboure/step-functions-sqs-pattern
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bboure/step-functions-sqs-pattern
- Owner: bboure
- Created: 2022-04-25T21:07:15.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-25T21:07:46.000Z (over 3 years ago)
- Last Synced: 2025-03-25T09:49:48.680Z (7 months ago)
- Language: TypeScript
- Size: 126 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Validate a task
```
aws stepfunctions send-task-success --task-token 'acbdef' --task-output '{ "reason": "OK" }'
```# Reject a task
```
aws stepfunctions send-task-failure --task-token 'acbdef' --error 'Error' --cause 'Some Failure cause'
```