Interface RunBatchJobProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
RunBatchJobProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:48.139Z") @Stability(Deprecated) @Deprecated public interface RunBatchJobProps extends software.amazon.jsii.JsiiSerializable
Deprecated.
use BatchSubmitJob
(deprecated) Properties for RunBatchJob.

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.ec2.*;
 import software.amazon.awscdk.services.stepfunctions.*;
 import software.amazon.awscdk.services.stepfunctions.tasks.*;
 import software.amazon.awscdk.core.*;
 InstanceType instanceType;
 Object payload;
 RunBatchJobProps runBatchJobProps = RunBatchJobProps.builder()
         .jobDefinitionArn("jobDefinitionArn")
         .jobName("jobName")
         .jobQueueArn("jobQueueArn")
         // the properties below are optional
         .arraySize(123)
         .attempts(123)
         .containerOverrides(ContainerOverrides.builder()
                 .command(List.of("command"))
                 .environment(Map.of(
                         "environmentKey", "environment"))
                 .gpuCount(123)
                 .instanceType(instanceType)
                 .memory(123)
                 .vcpus(123)
                 .build())
         .dependsOn(List.of(JobDependency.builder()
                 .jobId("jobId")
                 .type("type")
                 .build()))
         .integrationPattern(ServiceIntegrationPattern.FIRE_AND_FORGET)
         .payload(Map.of(
                 "payloadKey", payload))
         .timeout(Duration.minutes(30))
         .build();