Module Values.LifeCycleSource

An object representing the Source Server Lifecycle.

Sourcetype nonrec t = {
  1. addedToServiceDateTime : ISO8601DatetimeString.t option;
    (*

    The date and time of when the Source Server was added to the service.

    *)
  2. firstByteDateTime : ISO8601DatetimeString.t option;
    (*

    The date and time of the first byte that was replicated from the Source Server.

    *)
  3. elapsedReplicationDuration : ISO8601DurationString.t option;
    (*

    The amount of time that the Source Server has been replicating for.

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

    The date and time this Source Server was last seen by the service.

    *)
  5. lastLaunch : LifeCycleLastLaunch.t option;
    (*

    An object containing information regarding the last launch of the Source Server.

    *)
}
Sourceval make : ?addedToServiceDateTime:??? -> ?firstByteDateTime:??? -> ?elapsedReplicationDuration:??? -> ?lastSeenByServiceDateTime:??? -> ?lastLaunch:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ISO8601DatetimeString.t | `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of ISO8601DatetimeString.t ]) list ]) 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