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;
}