Module Values.ContinuousBackupsDescriptionSource

Represents the continuous backups and point in time recovery settings on the table.

Sourcetype nonrec t = {
  1. continuousBackupsStatus : ContinuousBackupsStatus.t option;
    (*

    ContinuousBackupsStatus can be one of the following states: ENABLED, DISABLED

    *)
  2. pointInTimeRecoveryDescription : PointInTimeRecoveryDescription.t option;
    (*

    The description of the point in time recovery settings applied to the table.

    *)
}
Sourceval make : ?continuousBackupsStatus:??? -> ?pointInTimeRecoveryDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `Integer of RecoveryPeriodInDays.t | `Timestamp of Date.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