Method: Aws::GameLift::Types::GameServerContainerDefinition#port_configuration

Defined in:
lib/aws-sdk-gamelift/types.rb

#port_configurationTypes::ContainerPortConfiguration

The set of ports that are available to bind to processes in the container. For example, a game server process requires a container port to allow game clients to connect to it. Container ports aren’t directly accessed by inbound traffic. Amazon GameLift Servers maps these container ports to externally accessible connection ports, which are assigned as needed from the container fleet’s ‘ConnectionPortRange`.



6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
# File 'lib/aws-sdk-gamelift/types.rb', line 6155

class GameServerContainerDefinition < Struct.new(
  :container_name,
  :depends_on,
  :mount_points,
  :environment_override,
  :image_uri,
  :port_configuration,
  :resolved_image_digest,
  :server_sdk_version)
  SENSITIVE = []
  include Aws::Structure
end