Class: Aws::EMR::Types::KeyValue

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

Overview

Note:

When making an API call, you may pass KeyValue data as a hash:

{
  key: "XmlString",
  value: "XmlString",
}

A key value pair.

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The unique identifier of a key value pair.

Returns:

  • (String)


3296
3297
3298
3299
3300
# File 'lib/aws-sdk-emr/types.rb', line 3296

class KeyValue < Struct.new(
  :key,
  :value)
  include Aws::Structure
end

#valueString

The value part of the identified key.

Returns:

  • (String)


3296
3297
3298
3299
3300
# File 'lib/aws-sdk-emr/types.rb', line 3296

class KeyValue < Struct.new(
  :key,
  :value)
  include Aws::Structure
end