submitJob

inline suspend fun BatchClient.submitJob(crossinline block: SubmitJobRequest.Builder.() -> Unit): SubmitJobResponse

Submits an Batch job from a job definition. Parameters that are specified during SubmitJob override parameters defined in the job definition. vCPU and memory requirements that are specified in the resourceRequirements objects in the job definition are the exception. They can't be overridden this way using the memory and vcpus parameters. Rather, you must specify updates to job definition parameters in a resourceRequirements object that's included in the containerOverrides parameter.

Job queues with a scheduling policy are limited to 500 active fair share identifiers at a time.

Jobs that run on Fargate resources can't be guaranteed to run for more than 14 days. This is because, after 14 days, Fargate resources might become unavailable and job might be terminated.

Samples


fun main() { 
   //sampleStart 
   // This example submits a simple container job called example to the HighPriority job queue.
val resp = batchClient.submitJob {
    jobName = "example"
    jobQueue = "HighPriority"
    jobDefinition = "sleep60"
} 
   //sampleEnd
}