Module Values.DeleteFileSystemRequestSource

Deletes an S3 File System. You can optionally force deletion of a file system that has pending export data.

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

    The ID or Amazon Resource Name (ARN) of the S3 File System to delete.

    *)
  2. forceDelete : Boolean.t option;
    (*

    If true, allows deletion of a file system that contains data pending export to S3. If false (the default), the deletion will fail if there is data that has not yet been exported to the S3 bucket. Use this parameter with caution as it may result in data loss.

    *)
}
Sourceval context_ : string
Sourceval make : ?forceDelete:??? -> fileSystemId:FileSystemId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of FileSystemId.t ]) 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