Module Values.RecoveryLifeCycleSource

An object representing the Source Network recovery Lifecycle.

Sourcetype nonrec t = {
  1. apiCallDateTime : SyntheticTimestamp_date_time.t option;
    (*

    The date and time the last Source Network recovery was initiated.

    *)
  2. jobID : JobID.t option;
    (*

    The ID of the Job that was used to last recover the Source Network.

    *)
  3. lastRecoveryResult : RecoveryResult.t option;
    (*

    The status of the last recovery status of this Source Network.

    *)
}
Sourceval make : ?apiCallDateTime:??? -> ?jobID:??? -> ?lastRecoveryResult:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of JobID.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