Class: Aws::GameLift::Types::ContainerEnvironment
- Inherits:
-
Struct
- Object
- Struct
- Aws::GameLift::Types::ContainerEnvironment
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
An environment variable to set inside a container, in the form of a key-value pair.
**Part of:** GameServerContainerDefinition, GameServerContainerDefinitionInput, SupportContainerDefinition, SupportContainerDefinitionInput
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.
661 662 663 664 665 666 |
# File 'lib/aws-sdk-gamelift/types.rb', line 661 class ContainerEnvironment < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The environment variable value.
661 662 663 664 665 666 |
# File 'lib/aws-sdk-gamelift/types.rb', line 661 class ContainerEnvironment < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |