Module Values.FastRestoreRuleSource

[Custom snapshot policies only] Specifies a rule for enabling fast snapshot restore for snapshots created by snapshot policies. You can enable fast snapshot restore based on either a count or a time interval.

Sourcetype nonrec t = {
  1. count : Count.t option;
    (*

    The number of snapshots to be enabled with fast snapshot restore.

    *)
  2. interval : Interval.t option;
    (*

    The amount of time to enable fast snapshot restore. The maximum is 100 years. This is equivalent to 1200 months, 5200 weeks, or 36500 days.

    *)
  3. intervalUnit : RetentionIntervalUnitValues.t option;
    (*

    The unit of time for enabling fast snapshot restore.

    *)
  4. availabilityZones : AvailabilityZoneList.t option;
    (*

    The Availability Zones in which to enable fast snapshot restore.

    *)
  5. availabilityZoneIds : AvailabilityZoneIdList.t option;
    (*

    The Availability Zone Ids in which to enable fast snapshot restore.

    *)
}
Sourceval make : ?count:??? -> ?interval:??? -> ?intervalUnit:??? -> ?availabilityZones:??? -> ?availabilityZoneIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Count.t | `List of [> `String of AvailabilityZone.t ] 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