You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::EC2::Types::DetachVolumeRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DetachVolumeRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  device: "String",
  force: false,
  instance_id: "InstanceId",
  volume_id: "VolumeId", # required
  dry_run: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#deviceString

The device name.

Returns:

  • (String)

    The device name.

#dry_runBoolean

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.

Returns:

  • (Boolean)

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response.

#forceBoolean

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.

Returns:

  • (Boolean)

    Forces detachment if the previous detachment attempt did not occur cleanly (for example, logging into an instance, unmounting the volume, and detaching normally).

#instance_idString

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

Returns:

  • (String)

    The ID of the instance.

#volume_idString

The ID of the volume.

Returns:

  • (String)

    The ID of the volume.