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

VolumeConfiguration

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

Describes an Amazon EBS volume configuration.

interface VolumeConfiguration {
Encrypted?: boolean | null;
Iops?: number | null;
MountPoint: string;
NumberOfDisks: number;
RaidLevel?: number | null;
Size: number;
VolumeType?: string | null;
}

§Properties

§
Encrypted?: boolean | null
[src]

Specifies whether an Amazon EBS volume is encrypted. For more information, see Amazon EBS Encryption.

§
Iops?: number | null
[src]

For PIOPS volumes, the IOPS per disk.

§
MountPoint: string
[src]

The volume mount point. For example "/dev/sdh".

§
NumberOfDisks: number
[src]

The number of disks in the volume.

§
RaidLevel?: number | null
[src]

The volume RAID level.

§
Size: number
[src]

The volume size.

§
VolumeType?: string | null
[src]

The volume type. For more information, see Amazon EBS Volume Types.

  • standard - Magnetic. Magnetic volumes must have a minimum size of 1 GiB and a maximum size of 1024 GiB.
  • io1 - Provisioned IOPS (SSD). PIOPS volumes must have a minimum size of 4 GiB and a maximum size of 16384 GiB.
  • gp2 - General Purpose (SSD). General purpose volumes must have a minimum size of 1 GiB and a maximum size of 16384 GiB.
  • st1 - Throughput Optimized hard disk drive (HDD). Throughput optimized HDD volumes must have a minimum size of 500 GiB and a maximum size of 16384 GiB.
  • sc1 - Cold HDD. Cold HDD volumes must have a minimum size of 500 GiB and a maximum size of 16384 GiB.