Class: Aws::EMR::Types::KeyValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::KeyValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-emr/types.rb
Overview
A key-value pair.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key ⇒ String
The unique identifier of a key-value pair.
-
#value ⇒ String
The value part of the identified key.
Instance Attribute Details
#key ⇒ String
The unique identifier of a key-value pair.
3870 3871 3872 3873 3874 3875 |
# File 'lib/aws-sdk-emr/types.rb', line 3870 class KeyValue < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The value part of the identified key.
3870 3871 3872 3873 3874 3875 |
# File 'lib/aws-sdk-emr/types.rb', line 3870 class KeyValue < Struct.new( :key, :value) SENSITIVE = [] include Aws::Structure end |