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

EcsTaskOverride

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

The overrides that are associated with a task.

interface EcsTaskOverride {
ContainerOverrides?: EcsContainerOverride[] | null;
Cpu?: string | null;
EphemeralStorage?: EcsEphemeralStorage | null;
ExecutionRoleArn?: string | null;
InferenceAcceleratorOverrides?: EcsInferenceAcceleratorOverride[] | null;
Memory?: string | null;
TaskRoleArn?: string | null;
}

§Properties

§
ContainerOverrides?: EcsContainerOverride[] | null
[src]

One or more container overrides that are sent to a task.

§
Cpu?: string | null
[src]

The cpu override for the task.

§
EphemeralStorage?: EcsEphemeralStorage | null
[src]

The ephemeral storage setting override for the task.

Note: This parameter is only supported for tasks hosted on Fargate that use the following platform versions: - Linux platform version 1.4.0 or later. - Windows platform version 1.0.0 or later.

§
ExecutionRoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the task execution IAM role override for the task. For more information, see Amazon ECS task execution IAM role in the Amazon Elastic Container Service Developer Guide.

§
InferenceAcceleratorOverrides?: EcsInferenceAcceleratorOverride[] | null
[src]

The Elastic Inference accelerator override for the task.

§
Memory?: string | null
[src]

The memory override for the task.

§
TaskRoleArn?: string | null
[src]

The Amazon Resource Name (ARN) of the IAM role that containers in this task can assume. All containers in this task are granted the permissions that are specified in this role. For more information, see IAM Role for Tasks in the Amazon Elastic Container Service Developer Guide.