moto/tests/test_stepfunctions/parser/templates/parallel_fail.json
2024-03-16 13:03:41 -01:00

21 lines
381 B
JSON

{
"Comment": "PARALLEL_STATE_FAIL",
"StartAt": "ParallelState",
"States": {
"ParallelState": {
"Type": "Parallel",
"End": true,
"Branches": [
{
"StartAt": "Branch1",
"States": {
"Branch1": {
"Type": "Fail",
"Error": "FailureType"
}
}
}
]
}
}
}