Class: Aws::Xml::Parser::MapEntryFrame Private

Inherits:
Frame
  • Object
show all
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

Attributes inherited from Frame

#parent, #ref, #result

Instance Method Summary collapse

Methods inherited from Frame

#consume_child_frame, new, #set_text

Constructor Details

#initialize(*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.



191
192
193
194
195
196
197
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 191

def initialize(*args)
  super
  @key_name = @ref.shape.key.location_name || 'key'
  @key = Frame.new(self, @ref.shape.key)
  @value_name = @ref.shape.value.location_name || 'value'
  @value = Frame.new(self, @ref.shape.value)
end

Instance Attribute Details

#keyStringFrame (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.

Returns:



200
201
202
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 200

def key
  @key
end

#valueFrame (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.

Returns:



203
204
205
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 203

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.



205
206
207
208
209
210
211
212
213
# File 'lib/aws-sdk-core/xml/parser/frame.rb', line 205

def child_frame(xml_name)
  if @key_name == xml_name
    @key
  elsif @value_name == xml_name
    @value
  else
    NullFrame.new(self)
  end
end