Module Values.VCpuCountRangeRequestSource

The minimum and maximum number of vCPUs for instance type selection. This allows you to specify a range of vCPU counts that meet your workload requirements.

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

    The minimum number of vCPUs. Instance types with fewer vCPUs than this value are excluded from selection.

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

    The maximum number of vCPUs. Instance types with more vCPUs than this value are excluded from selection.

    *)
}
Sourceval context_ : string
Sourceval make : ?max:??? -> min:BoxedInteger.t -> 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