Module Values.QueueSnapshotCapacityUsageSource

The configured capacity usage for a job queue snapshot, 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. For compute jobs, this is VCPU for Amazon EC2 and cpu for Amazon EKS. For service jobs, this is the instance type.

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

    The quantity of capacity being used in the queue snapshot, 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