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

CreateDiskSnapshotRequest

import type { CreateDiskSnapshotRequest } from "https://aws-api.deno.dev/v0.3/services/lightsail.ts?docs=full";
interface CreateDiskSnapshotRequest {
diskName?: string | null;
diskSnapshotName: string;
instanceName?: string | null;
tags?: Tag[] | null;
}

§Properties

§
diskName?: string | null
[src]

The unique name of the source disk (e.g., Disk-Virginia-1).

Note: This parameter cannot be defined together with the instance name parameter. The disk name and instance name parameters are mutually exclusive.

§
diskSnapshotName: string
[src]

The name of the destination disk snapshot (e.g., my-disk-snapshot) based on the source disk.

§
instanceName?: string | null
[src]

The unique name of the source instance (e.g., Amazon_Linux-512MB-Virginia-1). When this is defined, a snapshot of the instance's system volume is created.

Note: This parameter cannot be defined together with the disk name parameter. The instance name and disk name parameters are mutually exclusive.

§
tags?: Tag[] | null
[src]

The tag keys and optional values to add to the resource during create.

Use the TagResource action to tag a resource after it's created.