Module Values.BaselineEbsBandwidthMbpsRequestSource

The minimum and maximum baseline Amazon EBS bandwidth in megabits per second (Mbps) for instance type selection. This is important for workloads with high storage I/O requirements.

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

    The minimum baseline Amazon EBS bandwidth in Mbps. Instance types with lower Amazon EBS bandwidth are excluded from selection.

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

    The maximum baseline Amazon EBS bandwidth in Mbps. Instance types with higher Amazon EBS bandwidth are excluded from selection.

    *)
}
Sourceval make : ?min:??? -> ?max:??? -> 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