class Aws::Xml::DocBuilder

def initialize(options = {})

Options Hash: (**options)
  • :indent (String) --
  • :pad (String) --
  • :target (#<<) --
def initialize(options = {})
  @target = options[:target] || (
    # The String has to be mutable
    # because @target implements `<<` method.
    String.new
  )
  @indent = options[:indent] || ''
  @pad = options[:pad] || ''
  @end_of_line = @indent == '' ? '' : "\n"
end