moto/tests/test_stepfunctions/parser/templates/parallel_states_order.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.2 KiB
JSON
Raw Normal View History

2024-03-16 14:03:41 +00:00
{
"Comment": "PARALLEL_STATE_ORDER",
"StartAt": "StartState",
"States": {
"StartState": {
"Type": "Parallel",
"Branches": [
{
"StartAt": "Branch0",
"States": {
"Branch0": {
"Type": "Pass",
"Result": {
"branch": 0
},
"End": true
}
}
},
{
"StartAt": "Branch1",
"States": {
"Branch1": {
"Type": "Pass",
"Result": {
"branch": 1
},
"End": true
}
}
},
{
"StartAt": "Branch2",
"States": {
"Branch2": {
"Type": "Pass",
"Result": {
"branch": 2
},
"End": true
}
}
},
{
"StartAt": "Branch3",
"States": {
"Branch3": {
"Type": "Pass",
"Result": {
"branch": 3
},
"End": true
}
}
}
],
"End": true
}
}
}