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

ContainerStateChange

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

An object that represents a change in state for a container.

interface ContainerStateChange {
containerName?: string | null;
exitCode?: number | null;
imageDigest?: string | null;
networkBindings?: NetworkBinding[] | null;
reason?: string | null;
runtimeId?: string | null;
status?: string | null;
}

§Properties

§
containerName?: string | null
[src]

The name of the container.

§
exitCode?: number | null
[src]

The exit code for the container, if the state change is a result of the container exiting.

§
imageDigest?: string | null
[src]

The container image SHA 256 digest.

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

Any network bindings that are associated with the container.

§
reason?: string | null
[src]

The reason for the state change.

§
runtimeId?: string | null
[src]

The ID of the Docker container.

§
status?: string | null
[src]

The status of the container.