Module Values.NetworkBandwidthGbpsRequestSource

The minimum and maximum network bandwidth in gigabits per second (Gbps) for instance type selection. This is important for network-intensive workloads.

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

    The minimum network bandwidth in Gbps. Instance types with lower network bandwidth are excluded from selection.

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

    The maximum network bandwidth in Gbps. Instance types with higher network bandwidth 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