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

ExecuteCommandRequest

import type { ExecuteCommandRequest } from "https://aws-api.deno.dev/v0.4/services/ecs.ts?docs=full";
interface ExecuteCommandRequest {
cluster?: string | null;
command: string;
container?: string | null;
interactive: boolean;
task: string;
}

§Properties

§
cluster?: string | null
[src]

The Amazon Resource Name (ARN) or short name of the cluster the task is running in. If you do not specify a cluster, the default cluster is assumed.

§
command: string
[src]

The command to run on the container.

§
container?: string | null
[src]

The name of the container to execute the command on. A container name only needs to be specified for tasks containing multiple containers.

§
interactive: boolean
[src]

Use this flag to run your command in interactive mode.

§
task: string
[src]

The Amazon Resource Name (ARN) or ID of the task the container is part of.