Module Values.AcceleratorCountRequestSource

The minimum and maximum number of accelerators (such as GPUs) for instance type selection. This is used for workloads that require specific numbers of accelerators.

Sourcetype nonrec t = {
  1. min : BoxedInteger.t option;
    (*

    The minimum number of accelerators. Instance types with fewer accelerators are excluded from selection.

    *)
  2. max : BoxedInteger.t option;
    (*

    The maximum number of accelerators. Instance types with more accelerators are excluded from selection.

    *)
}
Sourceval make : ?min:??? -> ?max:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of BoxedInteger.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