Class: Aws::Batch::Types::EksContainerEnvironmentVariable

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-batch/types.rb

Overview

An environment variable.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the environment variable.

Returns:

  • (String)


3680
3681
3682
3683
3684
3685
# File 'lib/aws-sdk-batch/types.rb', line 3680

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

#valueString

The value of the environment variable.

Returns:

  • (String)


3680
3681
3682
3683
3684
3685
# File 'lib/aws-sdk-batch/types.rb', line 3680

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