Module Values.JobCapacityUsageSummarySource

The capacity usage for a job, including the unit of measure and quantity of resources being used.

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

    The unit of measure for the capacity usage. This is VCPU for Amazon EC2 and cpu for Amazon EKS.

    *)
  2. quantity : Double.t option;
    (*

    The quantity of capacity being used by the job, measured in the units specified by capacityUnit.

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