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

SubmitContainerStateChangeRequest

import type { SubmitContainerStateChangeRequest } from "https://aws-api.deno.dev/v0.4/services/ecs.ts?docs=full";
interface SubmitContainerStateChangeRequest {
cluster?: string | null;
containerName?: string | null;
exitCode?: number | null;
networkBindings?: NetworkBinding[] | null;
reason?: string | null;
runtimeId?: string | null;
status?: string | null;
task?: string | null;
}

§Properties

§
cluster?: string | null
[src]

The short name or full ARN of the cluster that hosts the container.

§
containerName?: string | null
[src]

The name of the container.

§
exitCode?: number | null
[src]

The exit code that's returned for the state change request.

§
networkBindings?: NetworkBinding[] | null
[src]

The network bindings of the container.

§
reason?: string | null
[src]

The reason for the state change request.

§
runtimeId?: string | null
[src]

The ID of the Docker container.

§
status?: string | null
[src]

The status of the state change request.

§
task?: string | null
[src]

The task ID or full Amazon Resource Name (ARN) of the task that hosts the container.