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

AwsSourceDiskDetails

import type { AwsSourceDiskDetails } from "https://googleapis.deno.dev/v1/vmmigration:v1.ts";

Represents the source AWS Disk details.

interface AwsSourceDiskDetails {
readonly diskType?:
| "TYPE_UNSPECIFIED"
| "GP2"
| "GP3"
| "IO1"
| "IO2"
| "ST1"
| "SC1"
| "STANDARD";
readonly sizeGib?: bigint;
readonly tags?: {
[key: string]: string;
}
;
volumeId?: string;
}

§Properties

§
readonly diskType?: "TYPE_UNSPECIFIED" | "GP2" | "GP3" | "IO1" | "IO2" | "ST1" | "SC1" | "STANDARD"
[src]

Optional. Output only. Disk type.

§
readonly sizeGib?: bigint
[src]

Output only. Size in GiB.

§
readonly tags?: {
[key: string]: string;
}
[src]

Optional. Output only. A map of AWS volume tags.

§
volumeId?: string
[src]

Required. AWS volume ID.