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,
}Fields§
§device: Option<String>The device name.
dry_run: Option<bool>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: Option<bool>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.
instance_id: Option<String>The ID of the instance. If you are detaching a Multi-Attach enabled volume, you must specify an instance ID.
volume_id: StringThe ID of the volume.
Trait Implementations§
Source§impl Clone for DetachVolumeRequest
impl Clone for DetachVolumeRequest
Source§fn clone(&self) -> DetachVolumeRequest
fn clone(&self) -> DetachVolumeRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more