Class: Aws::GameLift::Types::ConnectionPortRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ConnectionPortRange
- 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
-
#from_port ⇒ Integer
Starting value for the port range.
-
#to_port ⇒ Integer
Ending value for the port.
Instance Attribute Details
#from_port ⇒ Integer
Starting value for the port range.
577 578 579 580 581 582 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 577 class ConnectionPortRange < Struct.new( :from_port, :to_port) SENSITIVE = [:from_port, :to_port] include Aws::Structure end |
#to_port ⇒ Integer
Ending value for the port. Port numbers are end-inclusive. This
value must be equal to or greater than FromPort
.
577 578 579 580 581 582 |
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 577 class ConnectionPortRange < Struct.new( :from_port, :to_port) SENSITIVE = [:from_port, :to_port] include Aws::Structure end |