Module Values.BackupRetentionPolicySource

A policy that defines the number of days to retain backups.

Sourcetype nonrec t = {
  1. type_ : BackupRetentionType.t option;
    (*

    The type of backup retention policy. For the DAYS type, the value is the number of days to retain backups.

    *)
  2. value : BackupRetentionValue.t option;
    (*

    Use a value between 7 - 379.

    *)
}
Sourceval make : ?type_:??? -> ?value:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of BackupRetentionValue.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