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

LaunchTemplateEbsBlockDevice

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

Describes a block device for an EBS volume.

interface LaunchTemplateEbsBlockDevice {
DeleteOnTermination?: boolean | null;
Encrypted?: boolean | null;
Iops?: number | null;
KmsKeyId?: string | null;
SnapshotId?: string | null;
Throughput?: number | null;
VolumeSize?: number | null;
VolumeType?: VolumeType | null;
}

§Properties

§
DeleteOnTermination?: boolean | null
[src]

Indicates whether the EBS volume is deleted on instance termination.

§
Encrypted?: boolean | null
[src]

Indicates whether the EBS volume is encrypted.

§
Iops?: number | null
[src]

The number of I/O operations per second (IOPS) that the volume supports.

§
KmsKeyId?: string | null
[src]

The ARN of the Key Management Service (KMS) CMK used for encryption.

§
SnapshotId?: string | null
[src]

The ID of the snapshot.

§
Throughput?: number | null
[src]

The throughput that the volume supports, in MiB/s.

§
VolumeSize?: number | null
[src]

The size of the volume, in GiB.

§
VolumeType?: VolumeType | null
[src]

The volume type.