Class: Aws::GameLift::Types::IpPermission

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-gamelift/types.rb

Overview

A range of IP addresses and port settings that allow inbound traffic to connect to processes on an instance in a fleet. Processes are assigned an IP address/port number combination, which must fall into the fleet’s allowed ranges.

For Amazon GameLift Servers Realtime fleets, Amazon GameLift Servers automatically opens two port ranges, one for TCP messaging and one for UDP.

Constant Summary collapse

SENSITIVE =
[:from_port, :to_port, :ip_range]

Instance Attribute Summary collapse

Instance Attribute Details

#from_portInteger

A starting value for a range of allowed port numbers.

For fleets using Linux builds, only ports ‘22` and `1026-60000` are valid.

For fleets using Windows builds, only ports ‘1026-60000` are valid.

Returns:

  • (Integer)


7745
7746
7747
7748
7749
7750
7751
7752
# File 'lib/aws-sdk-gamelift/types.rb', line 7745

class IpPermission < Struct.new(
  :from_port,
  :to_port,
  :ip_range,
  :protocol)
  SENSITIVE = [:from_port, :to_port, :ip_range]
  include Aws::Structure
end

#ip_rangeString

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]`”.

Returns:

  • (String)


7745
7746
7747
7748
7749
7750
7751
7752
# File 'lib/aws-sdk-gamelift/types.rb', line 7745

class IpPermission < Struct.new(
  :from_port,
  :to_port,
  :ip_range,
  :protocol)
  SENSITIVE = [:from_port, :to_port, :ip_range]
  include Aws::Structure
end

#protocolString

The network communication protocol used by the fleet.

Returns:

  • (String)


7745
7746
7747
7748
7749
7750
7751
7752
# File 'lib/aws-sdk-gamelift/types.rb', line 7745

class IpPermission < Struct.new(
  :from_port,
  :to_port,
  :ip_range,
  :protocol)
  SENSITIVE = [:from_port, :to_port, :ip_range]
  include Aws::Structure
end

#to_portInteger

An ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be equal to or greater than ‘FromPort`.

For fleets using Linux builds, only ports ‘22` and `1026-60000` are valid.

For fleets using Windows builds, only ports ‘1026-60000` are valid.

Returns:

  • (Integer)


7745
7746
7747
7748
7749
7750
7751
7752
# File 'lib/aws-sdk-gamelift/types.rb', line 7745

class IpPermission < Struct.new(
  :from_port,
  :to_port,
  :ip_range,
  :protocol)
  SENSITIVE = [:from_port, :to_port, :ip_range]
  include Aws::Structure
end