Interface BatchSubmitJobJsonPathProps

All Superinterfaces:
AssignableStateOptions, software.amazon.jsii.JsiiSerializable, JsonPathCommonOptions, StateBaseProps, TaskStateBaseOptions, TaskStateJsonPathBaseProps
All Known Implementing Classes:
BatchSubmitJobJsonPathProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-06-13T09:19:47.224Z") @Stability(Stable) public interface BatchSubmitJobJsonPathProps extends software.amazon.jsii.JsiiSerializable, TaskStateJsonPathBaseProps
Properties for BatchSubmitJob using JSONPath.

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.ec2.*;
 import software.amazon.awscdk.services.stepfunctions.*;
 import software.amazon.awscdk.services.stepfunctions.tasks.*;
 Object assign;
 InstanceType instanceType;
 Object resultSelector;
 Size size;
 TaskInput taskInput;
 TaskRole taskRole;
 Timeout timeout;
 BatchSubmitJobJsonPathProps batchSubmitJobJsonPathProps = BatchSubmitJobJsonPathProps.builder()
         .jobDefinitionArn("jobDefinitionArn")
         .jobName("jobName")
         .jobQueueArn("jobQueueArn")
         // the properties below are optional
         .arraySize(123)
         .assign(Map.of(
                 "assignKey", assign))
         .attempts(123)
         .comment("comment")
         .containerOverrides(BatchContainerOverrides.builder()
                 .command(List.of("command"))
                 .environment(Map.of(
                         "environmentKey", "environment"))
                 .gpuCount(123)
                 .instanceType(instanceType)
                 .memory(size)
                 .vcpus(123)
                 .build())
         .credentials(Credentials.builder()
                 .role(taskRole)
                 .build())
         .dependsOn(List.of(BatchJobDependency.builder()
                 .jobId("jobId")
                 .type("type")
                 .build()))
         .heartbeat(Duration.minutes(30))
         .heartbeatTimeout(timeout)
         .inputPath("inputPath")
         .integrationPattern(IntegrationPattern.REQUEST_RESPONSE)
         .outputPath("outputPath")
         .payload(taskInput)
         .queryLanguage(QueryLanguage.JSON_PATH)
         .resultPath("resultPath")
         .resultSelector(Map.of(
                 "resultSelectorKey", resultSelector))
         .stateName("stateName")
         .tags(Map.of(
                 "tagsKey", "tags"))
         .taskTimeout(timeout)
         .timeout(Duration.minutes(30))
         .build();
 
  • Method Details