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

VolumeAttachment

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

Describes volume attachment details.

interface VolumeAttachment {
AttachTime?: Date | number | null;
DeleteOnTermination?: boolean | null;
Device?: string | null;
InstanceId?: string | null;
State?: VolumeAttachmentState | null;
VolumeId?: string | null;
}

§Properties

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

The time stamp when the attachment initiated.

§
DeleteOnTermination?: boolean | null
[src]

Indicates whether the EBS volume is deleted on instance termination.

§
Device?: string | null
[src]

The device name.

§
InstanceId?: string | null
[src]

The ID of the instance.

§

The attachment state of the volume.

§
VolumeId?: string | null
[src]

The ID of the volume.