Get Task Execution Overrides Container Override
data class GetTaskExecutionOverridesContainerOverride(val commands: List<String>? = null, val cpu: Int? = null, val environments: List<GetTaskExecutionOverridesContainerOverrideEnvironment>? = null, val memory: Int? = null, val memoryReservation: Int? = null, val name: String, val resourceRequirements: List<GetTaskExecutionOverridesContainerOverrideResourceRequirement>? = null) : ConvertibleToJava<GetTaskExecutionOverridesContainerOverride>
Constructors
Link copied to clipboard
constructor(commands: List<String>? = null, cpu: Int? = null, environments: List<GetTaskExecutionOverridesContainerOverrideEnvironment>? = null, memory: Int? = null, memoryReservation: Int? = null, name: String, resourceRequirements: List<GetTaskExecutionOverridesContainerOverrideResourceRequirement>? = null)
Properties
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. See below.
Link copied to clipboard
The soft limit (in MiB) of memory to reserve for the container, instead of the default value from the task definition.
Link copied to clipboard
val resourceRequirements: List<GetTaskExecutionOverridesContainerOverrideResourceRequirement>? = null
The type and amount of a resource to assign to a container, instead of the default value from the task definition. The only supported resource is a GPU. See below.