module AWS::S3::Client::XML::HasCommonPrefixes

Public Class Methods

included(mod) click to toggle source
# File lib/aws/s3/client/xml.rb, line 25
def self.included(mod)
  mod.module_eval do
    element "CommonPrefixes" do
      collect_values
      format_value {|value| value.prefix }
    end
  end
end