Module Values.DeleteVolumeOntapConfigurationSource

Use to specify skipping a final backup, adding tags to a final backup, or bypassing the retention period of an FSx for ONTAP SnapLock Enterprise volume when deleting an FSx for ONTAP volume.

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

    Set to true if you want to skip taking a final backup of the volume you are deleting.

    *)
  2. finalBackupTags : Tags.t option;
  3. bypassSnaplockEnterpriseRetention : Flag.t option;
    (*

    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. The IAM permission fsx:BypassSnaplockEnterpriseRetention is also required to delete SnapLock Enterprise volumes with unexpired WORM files. The default value is false. For more information, see Deleting a SnapLock volume.

    *)
}
Sourceval make : ?skipFinalBackup:??? -> ?finalBackupTags:??? -> ?bypassSnaplockEnterpriseRetention:??? -> 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