Module Values.FairshareCapacityUtilizationSource

The capacity utilization for a specific share in a fairshare scheduling job queue, including the share identifier and its current usage.

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

    The share identifier for the fairshare scheduling job queue.

    *)
  2. capacityUsage : FairshareCapacityUsageList.t option;
    (*

    The capacity usage information for this share, including the unit of measure and quantity being used. This is VCPU for Amazon EC2 and cpu for Amazon EKS.

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