Module Values.MemoryMiBRequestSource

The minimum and maximum amount of memory in mebibytes (MiB) for instance type selection. This ensures that selected instance types have adequate memory for your workloads.

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

    The minimum amount of memory in MiB. Instance types with less memory than this value are excluded from selection.

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

    The maximum amount of memory in MiB. Instance types with more memory 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