Interface WaitJsonataProps

All Superinterfaces:
AssignableStateOptions, software.amazon.jsii.JsiiSerializable, JsonataCommonOptions, StateBaseProps
All Known Implementing Classes:
WaitJsonataProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-15T14:52:07.946Z") @Stability(Stable) public interface WaitJsonataProps extends software.amazon.jsii.JsiiSerializable, StateBaseProps, AssignableStateOptions, JsonataCommonOptions
Properties for defining a Wait state that using JSONata.

Example:

 Wait.jsonata(this, "Wait", WaitJsonataProps.builder()
         .time(WaitTime.timestamp("{% $timestamp %}"))
         .outputs(Map.of(
                 "stringArgument", "inital-task",
                 "numberArgument", 123,
                 "booleanArgument", true,
                 "arrayArgument", List.of(1, "{% $number %}", 3),
                 "intrinsicFunctionsArgument", "{% $join($each($obj, function($v) { $v }), ', ') %}"))
         .build());