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

DetachVolumeRequest

import type { DetachVolumeRequest } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";
interface DetachVolumeRequest {
Device?: string | null;
DryRun?: boolean | null;
Force?: boolean | null;
InstanceId?: string | null;
VolumeId: string;
}

§Properties

§
Device?: string | null
[src]

The device name.

§
DryRun?: boolean | null
[src]

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

§
Force?: boolean | null
[src]

Forces detachment if the previous detachment attempt did not occur cleanly (for example, logging into an instance, unmounting the volume, and detaching normally). This option can lead to data loss or a corrupted file system. Use this option only as a last resort to detach a volume from a failed instance. The instance won't have an opportunity to flush file system caches or file system metadata. If you use this option, you must perform file system check and repair procedures.

§
InstanceId?: string | null
[src]

The ID of the instance. If you are detaching a Multi-Attach enabled volume, you must specify an instance ID.

§
VolumeId: string
[src]

The ID of the volume.