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

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

28 lines
487 B
JSON
Raw Normal View History

2024-03-16 14:03:41 +00:00
{
"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!"
}
}
}