Uses of Class
software.amazon.awscdk.services.stepfunctions.Choice
Packages that use Choice
Package
Description
AWS Step Functions Construct Library
-
Uses of Choice in software.amazon.awscdk.services.stepfunctions
Methods in software.amazon.awscdk.services.stepfunctions that return ChoiceModifier and TypeMethodDescriptionChoice.Builder.build()static ChoiceDefine a Choice using JSONata in the state machine.static ChoiceChoice.jsonata(software.constructs.Construct scope, String id, ChoiceJsonataProps props) Define a Choice using JSONata in the state machine.static ChoiceDefine a Choice using JSONPath in the state machine.static ChoiceChoice.jsonPath(software.constructs.Construct scope, String id, ChoiceJsonPathProps props) Define a Choice using JSONPath in the state machine.Choice.otherwise(IChainable def) If none of the given conditions match, continue execution with the given state.Choice.when(Condition condition, IChainable next) If the given condition matches, continue execution with the given state.Choice.when(Condition condition, IChainable next, ChoiceTransitionOptions options) If the given condition matches, continue execution with the given state.