@wmfs/statebox
Version:
Orchestrate Node functions using Amazon States Language
36 lines • 670 B
JSON
{
"StartAt": "FG",
"States": {
"FG": {
"Type": "Parallel",
"End": true,
"Branches": [
{
"StartAt": "Wait",
"States": {
"Wait": {
"Type": "Wait",
"Seconds": 1,
"Next": "F"
},
"F": {
"Type": "Task",
"Resource": "module:f",
"End": true
}
}
},
{
"StartAt": "G",
"States": {
"G": {
"Type": "Task",
"Resource": "module:g",
"End": true
}
}
}
]
}
}
}