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

Attachment

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

An object representing a container instance or task attachment.

interface Attachment {
details?: KeyValuePair[] | null;
id?: string | null;
status?: string | null;
type?: string | null;
}

§Properties

§
details?: KeyValuePair[] | null
[src]

Details of the attachment. For elastic network interfaces, this includes the network interface ID, the MAC address, the subnet ID, and the private IPv4 address.

§
id?: string | null
[src]

The unique identifier for the attachment.

§
status?: string | null
[src]

The status of the attachment. Valid values are PRECREATED, CREATED, ATTACHING, ATTACHED, DETACHING, DETACHED, DELETED, and FAILED.

§
type?: string | null
[src]

The type of the attachment, such as ElasticNetworkInterface.