Module Values.ConnectionPortRangeSource

The set of port numbers to open on each instance in a container fleet. Connection ports are used by inbound traffic to connect with processes that are running in containers on the fleet. The port range must not overlap with the Amazon GameLift Servers reserved port range 4092-4191. This range is reserved for internal Amazon GameLift Servers services.

Sourcetype nonrec t = {
  1. fromPort : PortNumber.t;
    (*

    Starting value for the port range.

    *)
  2. toPort : PortNumber.t;
    (*

    Ending value for the port. Port numbers are end-inclusive. This value must be equal to or greater than FromPort.

    *)
}
Sourceval context_ : string
Sourceval make : fromPort:PortNumber.t -> toPort:PortNumber.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PortNumber.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