Module Values.FrontOfQueueDetailSource

Contains a list of the first 100 RUNNABLE jobs associated to a single job queue.

Sourcetype nonrec t = {
  1. jobs : FrontOfQueueJobSummaryList.t option;
    (*

    The Amazon Resource Names (ARNs) of the first 100 RUNNABLE jobs in a named job queue. For first-in-first-out (FIFO) job queues, jobs are ordered based on their submission time. For fair-share scheduling (FSS) job queues, jobs are ordered based on their job priority and share usage.

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

    The Unix timestamp (in milliseconds) for when each of the first 100 RUNNABLE jobs were last updated.

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