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

VolumeModification

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

Describes the modification status of an EBS volume.

If the volume has never been modified, some element values will be null.

interface VolumeModification {
EndTime?: Date | number | null;
ModificationState?: VolumeModificationState | null;
OriginalIops?: number | null;
OriginalMultiAttachEnabled?: boolean | null;
OriginalSize?: number | null;
OriginalThroughput?: number | null;
OriginalVolumeType?: VolumeType | null;
Progress?: number | null;
StartTime?: Date | number | null;
StatusMessage?: string | null;
TargetIops?: number | null;
TargetMultiAttachEnabled?: boolean | null;
TargetSize?: number | null;
TargetThroughput?: number | null;
TargetVolumeType?: VolumeType | null;
VolumeId?: string | null;
}

§Properties

§
EndTime?: Date | number | null
[src]

The modification completion or failure time.

§
ModificationState?: VolumeModificationState | null
[src]

The current modification state. The modification state is null for unmodified volumes.

§
OriginalIops?: number | null
[src]

The original IOPS rate of the volume.

§
OriginalMultiAttachEnabled?: boolean | null
[src]

The original setting for Amazon EBS Multi-Attach.

§
OriginalSize?: number | null
[src]

The original size of the volume, in GiB.

§
OriginalThroughput?: number | null
[src]

The original throughput of the volume, in MiB/s.

§
OriginalVolumeType?: VolumeType | null
[src]

The original EBS volume type of the volume.

§
Progress?: number | null
[src]

The modification progress, from 0 to 100 percent complete.

§
StartTime?: Date | number | null
[src]

The modification start time.

§
StatusMessage?: string | null
[src]

A status message about the modification progress or failure.

§
TargetIops?: number | null
[src]

The target IOPS rate of the volume.

§
TargetMultiAttachEnabled?: boolean | null
[src]

The target setting for Amazon EBS Multi-Attach.

§
TargetSize?: number | null
[src]

The target size of the volume, in GiB.

§
TargetThroughput?: number | null
[src]

The target throughput of the volume, in MiB/s.

§
TargetVolumeType?: VolumeType | null
[src]

The target EBS volume type of the volume.

§
VolumeId?: string | null
[src]

The ID of the volume.