Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BatchContainerOverrides

import type { BatchContainerOverrides } from "https://aws-api.deno.dev/v0.4/services/pipes.ts?docs=full";

The overrides that are sent to a container.

interface BatchContainerOverrides {
Command?: string[] | null;
Environment?: BatchEnvironmentVariable[] | null;
InstanceType?: string | null;
ResourceRequirements?: BatchResourceRequirement[] | null;
}

§Properties

§
Command?: string[] | null
[src]

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

§
Environment?: BatchEnvironmentVariable[] | null
[src]

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.

Note: Environment variables cannot start with "Batch". This naming convention is reserved for variables that Batch sets.

§
InstanceType?: string | null
[src]

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

Note: This parameter isn't applicable to single-node container jobs or jobs that run on Fargate resources, and shouldn't be provided.

§
ResourceRequirements?: BatchResourceRequirement[] | null
[src]

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.