Module Values.PortRangeSource

A list of port ranges that are permitted to allow inbound traffic from all public IP addresses. To specify a single port, use the same value for MinRange and MaxRange.

Sourcetype nonrec t = {
  1. minRange : Port.t;
    (*

    The smallest port number in a specified range of port numbers.

    *)
  2. maxRange : Port.t option;
    (*

    The smallest port number in a specified range of port numbers.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxRange:??? -> minRange:Port.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Port.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