Module Values.RecoverySnapshotSource

A snapshot of a Source Server used during recovery.

Sourcetype nonrec t = {
  1. snapshotID : RecoverySnapshotID.t option;
    (*

    The ID of the Recovery Snapshot.

    *)
  2. sourceServerID : SourceServerID.t option;
    (*

    The ID of the Source Server that the snapshot was taken for.

    *)
  3. expectedTimestamp : ISO8601DatetimeString.t option;
    (*

    The timestamp of when we expect the snapshot to be taken.

    *)
  4. timestamp : ISO8601DatetimeString.t option;
    (*

    The actual timestamp that the snapshot was taken.

    *)
  5. ebsSnapshots : EbsSnapshotsList.t option;
    (*

    A list of EBS snapshots.

    *)
}
Sourceval make : ?snapshotID:??? -> ?sourceServerID:??? -> ?expectedTimestamp:??? -> ?timestamp:??? -> ?ebsSnapshots:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of EbsSnapshot.t ] list | `String of RecoverySnapshotID.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