CreateVolumeRequest
import type { CreateVolumeRequest } from "https://aws-api-gyr5wj9zj0fg.deno.dev/v0.2/services/ec2.ts";interface CreateVolumeRequest {
AvailabilityZone: string;
ClientToken?: string | null;
DryRun?: boolean | null;
Encrypted?: boolean | null;
Iops?: number | null;
KmsKeyId?: string | null;
MultiAttachEnabled?: boolean | null;
OutpostArn?: string | null;
Size?: number | null;
SnapshotId?: string | null;
TagSpecifications?: TagSpecification[] | null;
Throughput?: number | null;
VolumeType?: VolumeType | null;
}