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)


3665
3666
3667
3668
3669
3670
# File 'lib/aws-sdk-batch/types.rb', line 3665

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

#valueString

The value of the environment variable.

Returns:

  • (String)


3665
3666
3667
3668
3669
3670
# File 'lib/aws-sdk-batch/types.rb', line 3665

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