Class: Aws::GameLift::Types::ConnectionPortRange

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

Overview

This operation has been expanded to use with the Amazon GameLift containers feature, which is currently in public preview.

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.

Part of: ContainerGroupsConfiguration, ContainerGroupsAttributes

Constant Summary collapse

SENSITIVE =
[:from_port, :to_port]

Instance Attribute Summary collapse

Instance Attribute Details

#from_portInteger

Starting value for the port range.

Returns:

  • (Integer)


549
550
551
552
553
554
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 549

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

#to_portInteger

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

Returns:

  • (Integer)


549
550
551
552
553
554
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 549

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