Module Values.ProtectedJobStatisticsSource

Contains statistics about the execution of the protected job.

Sourcetype nonrec t = {
  1. totalDurationInMillis : Long.t option;
    (*

    The duration of the protected job, from creation until job completion, in milliseconds.

    *)
  2. billedResourceUtilization : BilledJobResourceUtilization.t option;
    (*

    The billed resource utilization for the protected job.

    *)
}
Sourceval make : ?totalDurationInMillis:??? -> ?billedResourceUtilization:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `Structure of (string * [> `Double of Double.t ]) 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