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

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

Overview

A key-value pair.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyString

The unique identifier of a key-value pair.

Returns:

  • (String)


3828
3829
3830
3831
3832
3833
# File 'lib/aws-sdk-emr/types.rb', line 3828

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

#valueString

The value part of the identified key.

Returns:

  • (String)


3828
3829
3830
3831
3832
3833
# File 'lib/aws-sdk-emr/types.rb', line 3828

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