Module Values.DeleteFileSystemResponseSource

The response object for the DeleteFileSystem operation.

Sourcetype nonrec t = {
  1. fileSystemId : FileSystemId.t option;
    (*

    The ID of the file system that's being deleted.

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

    The file system lifecycle for the deletion request. If the DeleteFileSystem operation is successful, this status is DELETING.

    *)
  3. windowsResponse : DeleteFileSystemWindowsResponse.t option;
  4. lustreResponse : DeleteFileSystemLustreResponse.t option;
  5. openZFSResponse : DeleteFileSystemOpenZFSResponse.t option;
    (*

    The response object for the OpenZFS file system that's being deleted in the DeleteFileSystem operation.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequest of BadRequest.t
  2. | `FileSystemNotFound of FileSystemNotFound.t
  3. | `IncompatibleParameterError of IncompatibleParameterError.t
  4. | `InternalServerError of InternalServerError.t
  5. | `ServiceLimitExceeded of ServiceLimitExceeded.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?fileSystemId:??? -> ?lifecycle:??? -> ?windowsResponse:??? -> ?lustreResponse:??? -> ?openZFSResponse:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequest of BadRequest.t | `FileSystemNotFound of FileSystemNotFound.t | `IncompatibleParameterError of IncompatibleParameterError.t | `InternalServerError of InternalServerError.t | `ServiceLimitExceeded of ServiceLimitExceeded.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequest of BadRequest.t | `FileSystemNotFound of FileSystemNotFound.t | `IncompatibleParameterError of IncompatibleParameterError.t | `InternalServerError of InternalServerError.t | `ServiceLimitExceeded of ServiceLimitExceeded.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FileSystemId.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