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

38 lines
704 B
JSON

{
"Comment": "PARALLEL_STATE_CATCH",
"StartAt": "ParallelState",
"States": {
"ParallelState": {
"Type": "Parallel",
"Branches": [
{
"StartAt": "Branch1",
"States": {
"Branch1": {
"Type": "Fail",
"Error": "FailureType",
"Cause": "Cause description"
}
}
}
],
"Catch": [
{
"ErrorEquals": [
"FailureType"
],
"Next": "FinalCaught"
}
],
"Next": "Final"
},
"FinalCaught": {
"Type": "Pass",
"End": true
},
"Final": {
"Type": "Pass",
"End": true
}
}
}