ContainerFleetIpPermission

data class ContainerFleetIpPermission(val fromPort: Int, val ipRange: String, val protocol: ContainerFleetIpPermissionProtocol, val toPort: Int)

A range of IP addresses and port settings that allow inbound traffic to connect to server processes on an Amazon GameLift hosting resource. New game sessions that are started on the fleet are assigned an IP address/port number combination, which must fall into the fleet's allowed ranges. For fleets created with a custom game server, the ranges reflect the server's game session assignments. For Realtime Servers fleets, Amazon GameLift automatically opens two port ranges, one for TCP messaging and one for UDP, for use by the Realtime servers.

Constructors

Link copied to clipboard
constructor(fromPort: Int, ipRange: String, protocol: ContainerFleetIpPermissionProtocol, toPort: Int)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

A starting value for a range of allowed port numbers.

Link copied to clipboard

A range of allowed IP addresses. This value must be expressed in CIDR notation. Example: "000.000.000.000/subnet mask" or optionally the shortened version "0.0.0.0/subnet mask".

Link copied to clipboard

The network communication protocol used by the fleet.

Link copied to clipboard
val toPort: Int

An ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.