Module Values.ServiceJobAttemptDetailSource

Detailed information about an attempt to run a service job.

Sourcetype nonrec t = {
  1. serviceResourceId : ServiceResourceId.t option;
    (*

    The service resource identifier associated with the service job attempt.

    *)
  2. startedAt : Long.t option;
    (*

    The Unix timestamp (in milliseconds) for when the service job attempt was started.

    *)
  3. stoppedAt : Long.t option;
    (*

    The Unix timestamp (in milliseconds) for when the service job attempt stopped running.

    *)
  4. statusReason : String_.t option;
    (*

    A string that provides additional details for the current status of the service job attempt.

    *)
}
Sourceval make : ?serviceResourceId:??? -> ?startedAt:??? -> ?stoppedAt:??? -> ?statusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.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