Class: Aws::Batch::Types::KeyValuePair

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

Overview

A key-value pair object.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of the key-value pair. For environment variables, this is the name of the environment variable.

Returns:

  • (String)


5208
5209
5210
5211
5212
5213
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5208

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

#valueString

The value of the key-value pair. For environment variables, this is the value of the environment variable.

Returns:

  • (String)


5208
5209
5210
5211
5212
5213
# File 'gems/aws-sdk-batch/lib/aws-sdk-batch/types.rb', line 5208

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