Module Values.DeleteFileSystemWindowsConfigurationSource

The configuration object for the Microsoft Windows file system used in the DeleteFileSystem operation.

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

    By default, Amazon FSx for Windows 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 this backup, use this flag to do so.

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

    A set of tags for your final backup.

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