Module Values.LastSuccessfulReplicatedUpdateSource

Contains information about the most recent successful replication update to a destination.

Sourcetype nonrec t = {
  1. metadataLocation : MetadataLocation.t option;
    (*

    The S3 location of the metadata that was successfully replicated.

    *)
  2. timestamp : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp when the replication update completed successfully.

    *)
}
Sourceval make : ?metadataLocation:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MetadataLocation.t | `Timestamp of SyntheticTimestamp_date_time.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