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

Describes a volume.

interface Volume {
Attachments: VolumeAttachment[];
AvailabilityZone?: string | null;
CreateTime?: Date | number | null;
Encrypted?: boolean | null;
FastRestored?: boolean | null;
Iops?: number | null;
KmsKeyId?: string | null;
MultiAttachEnabled?: boolean | null;
OutpostArn?: string | null;
Size?: number | null;
SnapshotId?: string | null;
State?: VolumeState | null;
Tags: Tag[];
Throughput?: number | null;
VolumeId?: string | null;
VolumeType?: VolumeType | null;
}

§Properties

§
Attachments: VolumeAttachment[]
[src]

Information about the volume attachments.

§
AvailabilityZone?: string | null
[src]

The Availability Zone for the volume.

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

The time stamp when volume creation was initiated.

§
Encrypted?: boolean | null
[src]

Indicates whether the volume is encrypted.

§
FastRestored?: boolean | null
[src]

Indicates whether the volume was created using fast snapshot restore.

§
Iops?: number | null
[src]

The number of I/O operations per second (IOPS). For gp3, io1, and io2 volumes, this represents the number of IOPS that are provisioned for the volume. For gp2 volumes, this represents the baseline performance of the volume and the rate at which the volume accumulates I/O credits for bursting.

§
KmsKeyId?: string | null
[src]

The Amazon Resource Name (ARN) of the Key Management Service (KMS) KMS key that was used to protect the volume encryption key for the volume.

§
MultiAttachEnabled?: boolean | null
[src]

Indicates whether Amazon EBS Multi-Attach is enabled.

§
OutpostArn?: string | null
[src]

The Amazon Resource Name (ARN) of the Outpost.

§
Size?: number | null
[src]

The size of the volume, in GiBs.

§
SnapshotId?: string | null
[src]

The snapshot from which the volume was created, if applicable.

§
State?: VolumeState | null
[src]

The volume state.

§
Tags: Tag[]
[src]

Any tags assigned to the volume.

§
Throughput?: number | null
[src]

The throughput that the volume supports, in MiB/s.

§
VolumeId?: string | null
[src]

The ID of the volume.

§
VolumeType?: VolumeType | null
[src]

The volume type.