Module Values.LifeCycleLastLaunchInitiatedSource

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

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

    The date and time the last Source Server launch was initiated.

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

    The ID of the Job that was used to last launch the Source Server.

    *)
  3. type_ : LastLaunchType.t option;
    (*

    The Job type that was used to last launch the Source Server.

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