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
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.
1218 1219 1220 1221 1222 |
# File 'lib/aws-sdk-gamelift/types.rb', line 1218 class ContainerPortConfiguration < Struct.new( :container_port_ranges) SENSITIVE = [] include Aws::Structure end |