Values.PointInTimeRecoverySpecificationSourceRepresents the settings used to enable point in time recovery.
type nonrec t = {pointInTimeRecoveryEnabled : BooleanObject.t;Indicates whether point in time recovery is enabled (true) or disabled (false) on the table.
*)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.
*)}val make :
?recoveryPeriodInDays:??? ->
pointInTimeRecoveryEnabled:BooleanObject.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanObject.t | `Integer of RecoveryPeriodInDays.t ])
list ]