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

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#nameString

The environment variable name.

Returns:

  • (String)


983
984
985
986
987
988
# File 'lib/aws-sdk-gamelift/types.rb', line 983

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

#valueString

The environment variable value.

Returns:

  • (String)


983
984
985
986
987
988
# File 'lib/aws-sdk-gamelift/types.rb', line 983

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