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

EbsInstanceBlockDevice

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

Describes a parameter used to set up an EBS volume in a block device mapping.

interface EbsInstanceBlockDevice {
AttachTime?: Date | number | null;
DeleteOnTermination?: boolean | null;
Status?: AttachmentStatus | null;
VolumeId?: string | null;
}

§Properties

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

The time stamp when the attachment initiated.

§
DeleteOnTermination?: boolean | null
[src]

Indicates whether the volume is deleted on instance termination.

§
Status?: AttachmentStatus | null
[src]

The attachment state.

§
VolumeId?: string | null
[src]

The ID of the EBS volume.