Class: Aws::Xml::Builder Private

Inherits:
Object
  • Object
show all
Includes:
Seahorse::Model::Shapes
Defined in:
lib/aws-sdk-core/xml/builder.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 Method Summary collapse

Constructor Details

#initialize(rules, options = {}) ⇒ Builder

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 Builder.



9
10
11
12
13
14
15
# File 'lib/aws-sdk-core/xml/builder.rb', line 9

def initialize(rules, options = {})
  @rules = rules
  @xml = options[:target] || []
  indent = options[:indent] || '  '
  pad = options[:pad] || ''
  @builder = DocBuilder.new(target:@xml, indent:indent, pad:pad)
end

Instance Method Details

#to_xml(params) ⇒ Object Also known as: serialize

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.



17
18
19
20
# File 'lib/aws-sdk-core/xml/builder.rb', line 17

def to_xml(params)
  structure(@rules.location_name, @rules, params)
  @xml.join
end