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/computeoptimizer.ts?docs=full";

Describes the configuration of an Amazon Elastic Block Store (Amazon EBS) volume.

interface VolumeConfiguration {
volumeBaselineIOPS?: number | null;
volumeBaselineThroughput?: number | null;
volumeBurstIOPS?: number | null;
volumeBurstThroughput?: number | null;
volumeSize?: number | null;
volumeType?: string | null;
}

§Properties

§
volumeBaselineIOPS?: number | null
[src]

The baseline IOPS of the volume.

§
volumeBaselineThroughput?: number | null
[src]

The baseline throughput of the volume.

§
volumeBurstIOPS?: number | null
[src]

The burst IOPS of the volume.

§
volumeBurstThroughput?: number | null
[src]

The burst throughput of the volume.

§
volumeSize?: number | null
[src]

The size of the volume, in GiB.

§
volumeType?: string | null
[src]

The volume type.

This can be gp2 for General Purpose SSD, io1 or io2 for Provisioned IOPS SSD, st1 for Throughput Optimized HDD, sc1 for Cold HDD, or standard for Magnetic volumes.