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

EbsInstanceBlockDeviceSpecification

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

Amazon EBS-specific block device mapping specifications.

interface EbsInstanceBlockDeviceSpecification {
deleteOnTermination?: boolean | null;
encrypted?: boolean | null;
iops?: number | null;
kmsKeyId?: string | null;
snapshotId?: string | null;
throughput?: number | null;
volumeSize?: number | null;
volumeType?: EbsVolumeType | null;
}

§Properties

§
deleteOnTermination?: boolean | null
[src]

Use to configure delete on termination of the associated device.

§
encrypted?: boolean | null
[src]

Use to configure device encryption.

§
iops?: number | null
[src]

Use to configure device IOPS.

§
kmsKeyId?: string | null
[src]

Use to configure the KMS key to use when encrypting the device.

§
snapshotId?: string | null
[src]

The snapshot that defines the device contents.

§
throughput?: number | null
[src]

For GP3 volumes only – The throughput in MiB/s that the volume supports.

§
volumeSize?: number | null
[src]

Use to override the device's volume size.

§
volumeType?: EbsVolumeType | null
[src]

Use to override the device's volume type.