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

InstanceStorageInfo

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

Describes the instance store features that are supported by the instance type.

interface InstanceStorageInfo {
Disks: DiskInfo[];
EncryptionSupport?: InstanceStorageEncryptionSupport | null;
NvmeSupport?: EphemeralNvmeSupport | null;
TotalSizeInGB?: number | null;
}

§Properties

§
Disks: DiskInfo[]
[src]

Describes the disks that are available for the instance type.

§
EncryptionSupport?: InstanceStorageEncryptionSupport | null
[src]

Indicates whether data is encrypted at rest.

§
NvmeSupport?: EphemeralNvmeSupport | null
[src]

Indicates whether non-volatile memory express (NVMe) is supported.

§
TotalSizeInGB?: number | null
[src]

The total size of the disks, in GB.