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

Volume

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

Describes an instance's Amazon EBS volume.

interface Volume {
AvailabilityZone?: string | null;
Device?: string | null;
Ec2VolumeId?: string | null;
Encrypted?: boolean | null;
InstanceId?: string | null;
Iops?: number | null;
MountPoint?: string | null;
Name?: string | null;
RaidArrayId?: string | null;
Region?: string | null;
Size?: number | null;
Status?: string | null;
VolumeId?: string | null;
VolumeType?: string | null;
}

§Properties

§
AvailabilityZone?: string | null
[src]

The volume Availability Zone. For more information, see Regions and Endpoints.

§
Device?: string | null
[src]

The device name.

§
Ec2VolumeId?: string | null
[src]

The Amazon EC2 volume ID.

§
Encrypted?: boolean | null
[src]

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

§
InstanceId?: string | null
[src]

The instance ID.

§
Iops?: number | null
[src]

For PIOPS volumes, the IOPS per disk.

§
MountPoint?: string | null
[src]

The volume mount point. For example, "/mnt/disk1".

§
Name?: string | null
[src]

The volume name.

§
RaidArrayId?: string | null
[src]

The RAID array ID.

§
Region?: string | null
[src]

The AWS region. For more information about AWS regions, see Regions and Endpoints.

§
Size?: number | null
[src]

The volume size.

§
Status?: string | null
[src]

The value returned by DescribeVolumes.

§
VolumeId?: string | null
[src]

The volume ID.

§
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.