UNPKG

@wmfs/statebox

Version:

Orchestrate Node functions using Amazon States Language

16 lines 324 B
{ "Comment": "A simple two-state machine, which will fail on the second state", "StartAt": "Hello", "States": { "Hello": { "Type": "Task", "Resource": "module:hello", "Next": "Failure" }, "Failure": { "Type": "Task", "Resource": "module:failure", "End": true } } }