Module Values.QuotaShareCapacityLimitSource

Defines the capacity limit for a quota share, or the type and maximum quantity of a particular resource that can be allocated to jobs in the quota share without borrowing.

Sourcetype nonrec t = {
  1. maxCapacity : Integer.t;
    (*

    The maximum capacity available for the quota share. This value represents the maximum quantity of a resource that can be allocated to jobs in the quota share without borrowing.

    *)
  2. capacityUnit : String_.t;
    (*

    The unit of compute capacity for the capacityLimit. For example, ml.m5.large.

    *)
}
Sourceval context_ : string
Sourceval make : maxCapacity:Integer.t -> capacityUnit:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.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