Class: Aws::GameLift::Types::ContainerAttributes
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GameLift::Types::ContainerAttributes
 
 
- 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.**
Describes attributes of containers that are deployed to a fleet with compute type ‘CONTAINER`.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #container_port_mappings  ⇒ Array<Types::ContainerPortMapping> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Describes how container ports map to connection ports on the fleet instance.
 
Instance Attribute Details
#container_port_mappings ⇒ Array<Types::ContainerPortMapping>
Describes how container ports map to connection ports on the fleet instance. Incoming traffic connects to a game via a connection port. A ‘ContainerPortMapping` directs the traffic from a connection port to a port on the container that hosts the game session.
      599 600 601 602 603  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 599 class ContainerAttributes < Struct.new( :container_port_mappings) SENSITIVE = [] include Aws::Structure end  |