https://github.com/bboure/step-functions-sqs-pattern
https://github.com/bboure/step-functions-sqs-pattern
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bboure/step-functions-sqs-pattern
- Owner: bboure
- Created: 2022-04-25T21:07:15.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-25T21:07:46.000Z (about 4 years ago)
- Last Synced: 2025-07-25T06:31:02.843Z (11 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'
```