Module Values.TotalLocalStorageGBRequestSource

The minimum and maximum total local storage in gigabytes (GB) for instance types with local storage. This is useful for workloads that require local storage for temporary data or caching.

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

    The minimum total local storage in GB. Instance types with less local storage are excluded from selection.

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

    The maximum total local storage in GB. Instance types with more local storage 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