Module Values.DeleteVolumeResponseSource

Deletes an Amazon FSx for NetApp ONTAP or Amazon FSx for OpenZFS volume.

Sourcetype nonrec t = {
  1. volumeId : VolumeId.t option;
    (*

    The ID of the volume that's being deleted.

    *)
  2. lifecycle : VolumeLifecycle.t option;
    (*

    The lifecycle state of the volume being deleted. If the DeleteVolume operation is successful, this value is DELETING.

    *)
  3. ontapResponse : DeleteVolumeOntapResponse.t option;
    (*

    Returned after a DeleteVolume request, showing the status of the delete request.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequest of BadRequest.t
  2. | `IncompatibleParameterError of IncompatibleParameterError.t
  3. | `InternalServerError of InternalServerError.t
  4. | `ServiceLimitExceeded of ServiceLimitExceeded.t
  5. | `VolumeNotFound of VolumeNotFound.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?volumeId:??? -> ?lifecycle:??? -> ?ontapResponse:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequest of BadRequest.t | `IncompatibleParameterError of IncompatibleParameterError.t | `InternalServerError of InternalServerError.t | `ServiceLimitExceeded of ServiceLimitExceeded.t | `Unknown_operation_error of string * string option | `VolumeNotFound of VolumeNotFound.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequest of BadRequest.t | `IncompatibleParameterError of IncompatibleParameterError.t | `InternalServerError of InternalServerError.t | `ServiceLimitExceeded of ServiceLimitExceeded.t | `Unknown_operation_error of string * string option | `VolumeNotFound of VolumeNotFound.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of VolumeId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of BackupId.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t