module AWS::S3::Tree::Parent

def initialize collection, options = {}

Other tags:
    Api: - private
def initialize collection, options = {}
  options = {
    :prefix => nil,
    :delimiter => '/',
    :append => true,
  }.merge(options)
  @collection = collection
  @prefix = options[:prefix]
  @delimiter = options[:delimiter]
  @append = options[:append]
  super
end