Interface IChoiceJsonataProps
Properties for defining a Choice state that using JSONata.
Inherited Members
Namespace: Amazon.CDK.AWS.StepFunctions
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IChoiceJsonataProps : IStateBaseProps, IAssignableStateOptions, IJsonataCommonOptions
Syntax (vb)
Public Interface IChoiceJsonataProps
Inherits IStateBaseProps, IAssignableStateOptions, IJsonataCommonOptions
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.StepFunctions;
var assign;
var outputs;
var choiceJsonataProps = new ChoiceJsonataProps {
Assign = new Dictionary<string, object> {
{ "assignKey", assign }
},
Comment = "comment",
Outputs = outputs,
QueryLanguage = QueryLanguage.JSON_PATH,
StateName = "stateName"
};