Module Values.NetworkInterfaceCountRequestSource

The minimum and maximum number of network interfaces for instance type selection. This is useful for workloads that require multiple network interfaces.

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

    The minimum number of network interfaces. Instance types that support fewer network interfaces are excluded from selection.

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

    The maximum number of network interfaces. Instance types that support more network interfaces 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