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

NetworkInterfaceAttachment

import type { NetworkInterfaceAttachment } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";

Describes a network interface attachment.

interface NetworkInterfaceAttachment {
AttachmentId?: string | null;
AttachTime?: Date | number | null;
DeleteOnTermination?: boolean | null;
DeviceIndex?: number | null;
InstanceId?: string | null;
InstanceOwnerId?: string | null;
NetworkCardIndex?: number | null;
Status?: AttachmentStatus | null;
}

§Properties

§
AttachmentId?: string | null
[src]

The ID of the network interface attachment.

§
AttachTime?: Date | number | null
[src]

The timestamp indicating when the attachment initiated.

§
DeleteOnTermination?: boolean | null
[src]

Indicates whether the network interface is deleted when the instance is terminated.

§
DeviceIndex?: number | null
[src]

The device index of the network interface attachment on the instance.

§
InstanceId?: string | null
[src]

The ID of the instance.

§
InstanceOwnerId?: string | null
[src]

The Amazon Web Services account ID of the owner of the instance.

§
NetworkCardIndex?: number | null
[src]

The index of the network card.

§
Status?: AttachmentStatus | null
[src]

The attachment state.