Module Values.DeleteFileSystemOpenZFSConfigurationSource

The configuration object for the Amazon FSx for OpenZFS file system used in the DeleteFileSystem operation.

Sourcetype nonrec t = {
  1. skipFinalBackup : Flag.t option;
    (*

    By default, Amazon FSx for OpenZFS takes a final backup on your behalf when the DeleteFileSystem operation is invoked. Doing this helps protect you from data loss, and we highly recommend taking the final backup. If you want to skip taking a final backup, set this value to true.

    *)
  2. finalBackupTags : Tags.t option;
    (*

    A list of tags to apply to the file system's final backup.

    *)
  3. options : DeleteFileSystemOpenZFSOptions.t option;
    (*

    To delete a file system if there are child volumes present below the root volume, use the string DELETE_CHILD_VOLUMES_AND_SNAPSHOTS. If your file system has child volumes and you don't use this option, the delete request will fail.

    *)
}
Sourceval make : ?skipFinalBackup:??? -> ?finalBackupTags:??? -> ?options:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Flag.t | `List of [> `Enum of string | `Structure of (string * [> `String of TagKey.t ]) list ] 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