Class: Aws::Xml::Parser::MapEntryFrame Private
- Defined in:
- lib/aws-sdk-core/xml/parser/frame.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #key ⇒ StringFrame readonly private
- #value ⇒ Frame readonly private
Attributes inherited from Frame
Instance Method Summary collapse
- #child_frame(xml_name) ⇒ Object private
-
#initialize(xml_name, *args) ⇒ MapEntryFrame
constructor
private
A new instance of MapEntryFrame.
Methods inherited from Frame
#consume_child_frame, new, #path, #set_text, #yield_unhandled_value
Constructor Details
#initialize(xml_name, *args) ⇒ MapEntryFrame
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of MapEntryFrame.
206 207 208 209 210 211 212 |
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 206 def initialize(xml_name, *args) super @key_name = @ref.shape.key.location_name || 'key' @key = Frame.new(xml_name, self, @ref.shape.key) @value_name = @ref.shape.value.location_name || 'value' @value = Frame.new(xml_name, self, @ref.shape.value) end |
Instance Attribute Details
#key ⇒ StringFrame (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
215 216 217 |
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 215 def key @key end |
#value ⇒ Frame (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
218 219 220 |
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 218 def value @value end |
Instance Method Details
#child_frame(xml_name) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
220 221 222 223 224 225 226 227 228 |
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 220 def child_frame(xml_name) if @key_name == xml_name @key elsif @value_name == xml_name @value else NullFrame.new(xml_name, self) end end |