Module Values.FrontOfQueueJobSummarySource

An object that represents summary details for the first 100 RUNNABLE jobs in a job queue.

Sourcetype nonrec t = {
  1. jobArn : String_.t option;
    (*

    The ARN for a job in a named job queue.

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

    The Unix timestamp (in milliseconds) for when the job transitioned to its current position in the job queue.

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