Struct rusoto_ec2::DetachVolumeRequest [] [src]

pub struct DetachVolumeRequest {
    pub device: Option<String>,
    pub dry_run: Option<bool>,
    pub force: Option<bool>,
    pub instance_id: Option<String>,
    pub volume_id: String,
}

Contains the parameters for DetachVolume.

Fields

The device name.

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.

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.

The ID of the instance.

The ID of the volume.

Trait Implementations

impl Default for DetachVolumeRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for DetachVolumeRequest
[src]

Formats the value using the given formatter.

impl Clone for DetachVolumeRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more