PipeBatchContainerOverrides

data class PipeBatchContainerOverrides(val command: List<String>? = null, val environment: List<PipeBatchEnvironmentVariable>? = null, val instanceType: String? = null, val resourceRequirements: List<PipeBatchResourceRequirement>? = null)

Constructors

Link copied to clipboard
constructor(command: List<String>? = null, environment: List<PipeBatchEnvironmentVariable>? = null, instanceType: String? = null, resourceRequirements: List<PipeBatchResourceRequirement>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val command: List<String>? = null

The command to send to the container that overrides the default command from the Docker image or the task definition.

Link copied to clipboard

The environment variables to send to the container. You can add new environment variables, which are added to the container at launch, or you can override the existing environment variables from the Docker image or the task definition.

Link copied to clipboard
val instanceType: String? = null

The instance type to use for a multi-node parallel job.

Link copied to clipboard

The type and amount of resources to assign to a container. This overrides the settings in the job definition. The supported resources include GPU , MEMORY , and VCPU .