Class: Aws::GameLift::Types::ContainerPortConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ContainerPortConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
A set of port ranges that can be opened on the container. A process that’s running in the container can bind to a port number, making it accessible to inbound traffic. Container ports map to a container fleet’s connection ports.
**Part of:** [GameServerContainerDefinition], [GameServerContainerDefinitionInput],
- SupportContainerDefinition], [SupportContainerDefinitionInput][4
-
[1]: docs.aws.amazon.com/gamelift/latest/apireference/API_GameServerContainerDefinition.html [2]: docs.aws.amazon.com/gamelift/latest/apireference/API_GameServerContainerDefinitionInput.html [3]: docs.aws.amazon.com/gamelift/latest/apireference/API_SupportContainerDefinition.html [4]: docs.aws.amazon.com/gamelift/latest/apireference/API_SupportContainerDefinitionInput.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#container_port_ranges ⇒ Array<Types::ContainerPortRange>
A set of one or more container port number ranges.
Instance Attribute Details
#container_port_ranges ⇒ Array<Types::ContainerPortRange>
A set of one or more container port number ranges. The ranges can’t overlap.
1273 1274 1275 1276 1277 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1273 class ContainerPortConfiguration < Struct.new( :container_port_ranges) SENSITIVE = [] include Aws::Structure end |