Class: Aws::GameLift::Types::ContainerEnvironment

Inherits:
Struct
  • Object
show all
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][1], [GameServerContainerDefinitionInput][2],

SupportContainerDefinition][3], [SupportContainerDefinitionInput][4

[1]: docs.aws.amazon.com/gamelift/latest/apireference/API_GameServerContainerDefinition.html [2]: docs.aws.amazon.com/gamelift/latest/apireference/API_GameServerContainerDefinitionInput.html [3]: docs.aws.amazon.com/gamelift/latest/apireference/API_SupportContainerDefinition.html [4]: docs.aws.amazon.com/gamelift/latest/apireference/API_SupportContainerDefinitionInput.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The environment variable name.

Returns:

  • (String)


692
693
694
695
696
697
# File 'lib/aws-sdk-gamelift/types.rb', line 692

class ContainerEnvironment < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The environment variable value.

Returns:

  • (String)


692
693
694
695
696
697
# File 'lib/aws-sdk-gamelift/types.rb', line 692

class ContainerEnvironment < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end