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

28 lines
487 B
JSON

{
"StartAt": "ChoiceStateX",
"States": {
"ChoiceStateX": {
"Type": "Choice",
"Choices": [
{
"And": [
{
"Variable": "$.type",
"StringEquals": "Public"
}
],
"Next": "Public"
}
],
"Default": "DefaultState"
},
"Public": {
"Type": "Pass",
"End": true
},
"DefaultState": {
"Type": "Fail",
"Cause": "No Matches!"
}
}
}