DetachVolumeRequest
public struct DetachVolumeRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The device name.
Declaration
Swift
public let device: String?
-
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.
Declaration
Swift
public let dryRun: 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.
Declaration
Swift
public let force: Bool?
-
The ID of the instance. If you are detaching a Multi-Attach enabled volume, you must specify an instance ID.
Declaration
Swift
public let instanceId: String?
-
The ID of the volume.
Declaration
Swift
public let volumeId: String
-
Undocumented
Declaration
Swift
public init(device: String? = nil, dryRun: Bool? = nil, force: Bool? = nil, instanceId: String? = nil, volumeId: String)