Class: Aws::GameLift::Types::ContainerPortRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ContainerPortRange
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
**This data type is used with the Amazon GameLift containers feature, which is currently in public preview.**
A set of one or more port numbers that can be opened on the container.
**Part of:** ContainerPortConfiguration
Constant Summary collapse
- SENSITIVE =
[:from_port, :to_port]
Instance Attribute Summary collapse
-
#from_port ⇒ Integer
A starting value for the range of allowed port numbers.
-
#protocol ⇒ String
The network protocol that these ports support.
-
#to_port ⇒ Integer
An ending value for the range of allowed port numbers.
Instance Attribute Details
#from_port ⇒ Integer
A starting value for the range of allowed port numbers.
1539 1540 1541 1542 1543 1544 1545 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1539 class ContainerPortRange < Struct.new( :from_port, :to_port, :protocol) SENSITIVE = [:from_port, :to_port] include Aws::Structure end |
#protocol ⇒ String
The network protocol that these ports support.
1539 1540 1541 1542 1543 1544 1545 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1539 class ContainerPortRange < Struct.new( :from_port, :to_port, :protocol) SENSITIVE = [:from_port, :to_port] include Aws::Structure end |
#to_port ⇒ Integer
An ending value for the range of allowed port numbers. Port numbers are end-inclusive. This value must be equal to or greater than ‘FromPort`.
1539 1540 1541 1542 1543 1544 1545 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1539 class ContainerPortRange < Struct.new( :from_port, :to_port, :protocol) SENSITIVE = [:from_port, :to_port] include Aws::Structure end |