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

ExecuteCommandResponse

import type { ExecuteCommandResponse } from "https://aws-api.deno.dev/v0.4/services/ecs.ts?docs=full";
interface ExecuteCommandResponse {
clusterArn?: string | null;
containerArn?: string | null;
containerName?: string | null;
interactive?: boolean | null;
session?: Session | null;
taskArn?: string | null;
}

§Properties

§
clusterArn?: string | null
[src]

The Amazon Resource Name (ARN) of the cluster.

§
containerArn?: string | null
[src]

The Amazon Resource Name (ARN) of the container.

§
containerName?: string | null
[src]

The name of the container.

§
interactive?: boolean | null
[src]

Determines whether the execute command session is running in interactive mode. Amazon ECS only supports initiating interactive sessions, so you must specify true for this value.

§
session?: Session | null
[src]

The details of the SSM session that was created for this instance of execute-command.

§
taskArn?: string | null
[src]

The Amazon Resource Name (ARN) of the task.