Class: Aws::GameLift::Types::ContainerEnvironment
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GameLift::Types::ContainerEnvironment
 
 
- 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.**
An environment variable to set inside a container, in the form of a key-value pair.
Related data type: ContainerDefinition$Environment
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The environment variable name.
 - 
  
    
      #value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The environment variable value.
 
Instance Attribute Details
#name ⇒ String
The environment variable name.
      1011 1012 1013 1014 1015 1016  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 1011 class ContainerEnvironment < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end  | 
  
#value ⇒ String
The environment variable value.
      1011 1012 1013 1014 1015 1016  | 
    
      # File 'lib/aws-sdk-gamelift/types.rb', line 1011 class ContainerEnvironment < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end  |