Module Values.PointInTimeRecoverySummarySource

The point-in-time recovery status of the specified table.

Sourcetype nonrec t = {
  1. status : PointInTimeRecoveryStatus.t option;
    (*

    Shows if point-in-time recovery is enabled or disabled for the specified table.

    *)
  2. earliestRestorableTimestamp : Timestamp.t option;
    (*

    Specifies the earliest possible restore point of the table in ISO 8601 format.

    *)
}
Sourceval make : ?status:??? -> ?earliestRestorableTimestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Timestamp of Timestamp.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