Interface JsonataStateOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,JsonataCommonOptions
- All Known Subinterfaces:
JsonataStateProps,StateProps,StepFunctionsInvokeActivityJsonataProps,StepFunctionsInvokeActivityProps
- All Known Implementing Classes:
JsonataStateOptions.Jsii$Proxy,JsonataStateProps.Jsii$Proxy,StateProps.Jsii$Proxy,StepFunctionsInvokeActivityJsonataProps.Jsii$Proxy,StepFunctionsInvokeActivityProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:51.168Z")
@Stability(Stable)
public interface JsonataStateOptions
extends software.amazon.jsii.JsiiSerializable, JsonataCommonOptions
Option properties for JSONata task state.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.stepfunctions.*;
Object arguments_;
Object outputs;
JsonataStateOptions jsonataStateOptions = JsonataStateOptions.builder()
.arguments(arguments_)
.outputs(outputs)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forJsonataStateOptionsstatic final classAn implementation forJsonataStateOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic JsonataStateOptions.Builderbuilder()default ObjectParameters pass a collection of key-value pairs, either static values or JSONata expressions that select from the input.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJsonMethods inherited from interface software.amazon.awscdk.services.stepfunctions.JsonataCommonOptions
getOutputs
-
Method Details
-
getArguments
Parameters pass a collection of key-value pairs, either static values or JSONata expressions that select from the input.Default: - No arguments
- See Also:
-
builder
- Returns:
- a
JsonataStateOptions.BuilderofJsonataStateOptions
-