Interface StepFunctionsStartExecutionJsonataProps

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

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-06-13T09:19:47.682Z") @Stability(Stable) public interface StepFunctionsStartExecutionJsonataProps extends software.amazon.jsii.JsiiSerializable, TaskStateJsonataBaseProps
Properties for StartExecution using JSONata.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.stepfunctions.*;
 import software.amazon.awscdk.services.stepfunctions.tasks.*;
 Object assign;
 Object outputs;
 StateMachine stateMachine;
 TaskInput taskInput;
 TaskRole taskRole;
 Timeout timeout;
 StepFunctionsStartExecutionJsonataProps stepFunctionsStartExecutionJsonataProps = StepFunctionsStartExecutionJsonataProps.builder()
         .stateMachine(stateMachine)
         // the properties below are optional
         .assign(Map.of(
                 "assignKey", assign))
         .associateWithParent(false)
         .comment("comment")
         .credentials(Credentials.builder()
                 .role(taskRole)
                 .build())
         .heartbeat(Duration.minutes(30))
         .heartbeatTimeout(timeout)
         .input(taskInput)
         .integrationPattern(IntegrationPattern.REQUEST_RESPONSE)
         .name("name")
         .outputs(outputs)
         .queryLanguage(QueryLanguage.JSON_PATH)
         .stateName("stateName")
         .taskTimeout(timeout)
         .timeout(Duration.minutes(30))
         .build();