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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-gamelift/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

Instance Attribute Details

#nameString

The environment variable name.

Returns:

  • (String)


685
686
687
688
689
690
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 685

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

#valueString

The environment variable value.

Returns:

  • (String)


685
686
687
688
689
690
# File 'gems/aws-sdk-gamelift/lib/aws-sdk-gamelift/types.rb', line 685

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