Class: Aws::GameLift::Types::IpPermission
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::IpPermission
- Defined in:
- gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb
Overview
When making an API call, you may pass IpPermission data as a hash:
{
from_port: 1, # required
to_port: 1, # required
ip_range: "NonBlankString", # required
protocol: "TCP", # required, accepts TCP, UDP
}
A range of IP addresses and port settings that allow inbound traffic to connect to server processes on an instance in a fleet. New game sessions are assigned an IP address/port number combination, which must fall into the fleet's allowed ranges. Fleets with custom game builds must have permissions explicitly set. For Realtime Servers fleets, GameLift automatically opens two port ranges, one for TCP messaging and one for UDP.
Related actions
DescribeFleetPortSettings
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#from_port ⇒ Integer
A starting value for a range of allowed port numbers.
-
#ip_range ⇒ String
A range of allowed IP addresses.
-
#protocol ⇒ String
The network communication protocol used by the fleet.
-
#to_port ⇒ Integer
An ending value for a range of allowed port numbers.
Instance Attribute Details
#from_port ⇒ Integer
A starting value for a range of allowed port numbers.
For fleets using Windows and Linux builds, only ports 1026-60000 are valid.
6274 6275 6276 6277 6278 6279 6280 6281 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 6274 class IpPermission < Struct.new( :from_port, :to_port, :ip_range, :protocol) SENSITIVE = [] include Aws::Structure end |
#ip_range ⇒ String
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]
".
6274 6275 6276 6277 6278 6279 6280 6281 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 6274 class IpPermission < Struct.new( :from_port, :to_port, :ip_range, :protocol) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The network communication protocol used by the fleet.
6274 6275 6276 6277 6278 6279 6280 6281 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 6274 class IpPermission < Struct.new( :from_port, :to_port, :ip_range, :protocol) SENSITIVE = [] include Aws::Structure end |
#to_port ⇒ Integer
An ending value for a range of allowed port numbers. Port numbers
are end-inclusive. This value must be higher than FromPort
.
For fleets using Windows and Linux builds, only ports 1026-60000 are valid.
6274 6275 6276 6277 6278 6279 6280 6281 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 6274 class IpPermission < Struct.new( :from_port, :to_port, :ip_range, :protocol) SENSITIVE = [] include Aws::Structure end |