@wmfs/statebox
Version:
Orchestrate Node functions using Amazon States Language
21 lines • 433 B
JSON
{
"Comment": "A simple two-state machine, which will fail on the second state",
"StartAt": "Hello",
"States": {
"Hello": {
"Type": "Task",
"Resource": "module:hello",
"Next": "Stuttery"
},
"Stuttery": {
"Type": "Task",
"Resource": "module:stuttery",
"Next": "IT-LIVES"
},
"IT-LIVES": {
"Type": "Task",
"Resource": "module:ilive",
"End": true
}
}
}