AWSEC2DetachVolumeRequest

Objective-C

@interface AWSEC2DetachVolumeRequest

Swift

class AWSEC2DetachVolumeRequest
  • The device name.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable device;

    Swift

    var device: String? { get set }
  • 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

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable dryRun;

    Swift

    var dryRun: NSNumber? { get set }
  • 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

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable force;

    Swift

    var force: NSNumber? { get set }
  • The ID of the instance. If you are detaching a Multi-Attach enabled volume, you must specify an instance ID.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable instanceId;

    Swift

    var instanceId: String? { get set }
  • The ID of the volume.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable volumeId;

    Swift

    var volumeId: String? { get set }