Module Values.PointInTimeRecoverySpecificationSource

Represents the settings used to enable point in time recovery.

Sourcetype nonrec t = {
  1. pointInTimeRecoveryEnabled : BooleanObject.t;
    (*

    Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.

    *)
  2. recoveryPeriodInDays : RecoveryPeriodInDays.t option;
    (*

    The number of preceding days for which continuous backups are taken and maintained. Your table data is only recoverable to any point-in-time from within the configured recovery period. This parameter is optional. If no value is provided, the value will default to 35.

    *)
}
Sourceval context_ : string
Sourceval make : ?recoveryPeriodInDays:??? -> pointInTimeRecoveryEnabled:BooleanObject.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanObject.t | `Integer of RecoveryPeriodInDays.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