Module Values.MemoryGiBPerVCpuRequestSource

The minimum and maximum amount of memory per vCPU in gibibytes (GiB). This helps ensure that instance types have the appropriate memory-to-CPU ratio for your workloads.

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

    The minimum amount of memory per vCPU in GiB. Instance types with a lower memory-to-vCPU ratio are excluded from selection.

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

    The maximum amount of memory per vCPU in GiB. Instance types with a higher memory-to-vCPU ratio are excluded from selection.

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