Class: Aws::EMR::Types::KeyValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::KeyValue
- 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
-
#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.
3296 3297 3298 3299 3300 |
# File 'lib/aws-sdk-emr/types.rb', line 3296 class KeyValue < Struct.new( :key, :value) include Aws::Structure end |
#value ⇒ String
The value part of the identified key.
3296 3297 3298 3299 3300 |
# File 'lib/aws-sdk-emr/types.rb', line 3296 class KeyValue < Struct.new( :key, :value) include Aws::Structure end |