Class S33r::S3User
In: lib/s33r/bucket_listing.rb
Parent: Object

Methods

new  

Attributes

display_name  [RW] 
id  [RW] 

Public Class methods

owner_xml_doc: XML::Document instance, representing an <Owner> node from inside a ListBucketResult <Contents> element (see docs.amazonwebservices.com/AmazonS3/2006-03-01/).

[Source]

     # File lib/s33r/bucket_listing.rb, line 145
145:     def initialize(owner_xml_doc)
146:       @id = owner_xml_doc.xget('//ID')
147:       @display_name = owner_xml_doc.xget('//DisplayName')
148:     end

[Validate]