Module Values.ArrayPropertiesDetailSource

An object that represents the array properties of a job.

Sourcetype nonrec t = {
  1. statusSummary : ArrayJobStatusSummary.t option;
    (*

    A summary of the number of array job children in each available job status. This parameter is returned for parent array jobs.

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

    The Unix timestamp (in milliseconds) for when the statusSummary was last updated.

    *)
  3. size : Integer.t option;
    (*

    The size of the array job. This parameter is returned for parent array jobs.

    *)
  4. index : Integer.t option;
    (*

    The job index within the array that's associated with this job. This parameter is returned for array job children.

    *)
}
Sourceval make : ?statusSummary:??? -> ?statusSummaryLastUpdatedAt:??? -> ?size:??? -> ?index:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Long of Long.t | `Map of ([> `String of String_.t ] * [> `Integer of Integer.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