ChoiceProps¶
-
class
aws_cdk.aws_stepfunctions.
ChoiceProps
(*, comment=None, input_path=None, output_path=None)¶ Bases:
object
Properties for defining a Choice state.
- Parameters
comment (
Optional
[str
]) – An optional description for this state. Default: No commentinput_path (
Optional
[str
]) – JSONPath expression to select part of the state to be the input to this state. May also be the special value DISCARD, which will cause the effective input to be the empty object {}. Default: $output_path (
Optional
[str
]) – JSONPath expression to select part of the state to be the output to this state. May also be the special value DISCARD, which will cause the effective output to be the empty object {}. Default: $
Attributes
-
comment
¶ An optional description for this state.
- Default
No comment
- Return type
Optional
[str
]
-
input_path
¶ JSONPath expression to select part of the state to be the input to this state.
May also be the special value DISCARD, which will cause the effective input to be the empty object {}.
- Default
$
- Return type
Optional
[str
]
-
output_path
¶ JSONPath expression to select part of the state to be the output to this state.
May also be the special value DISCARD, which will cause the effective output to be the empty object {}.
- Default
$
- Return type
Optional
[str
]