@wmfs/statebox
Version:
Orchestrate Node functions using Amazon States Language
21 lines • 410 B
JSON
{
"Comment": "An example form-filling state machine",
"StartAt": "Hello",
"States": {
"Hello": {
"Type": "Task",
"Resource": "module:hello",
"Next": "FormFilling"
},
"FormFilling": {
"Type": "Task",
"Resource": "module:formFilling",
"Next": "World"
},
"World": {
"Type": "Task",
"Resource": "module:world",
"End": true
}
}
}