fog--fog/lib/fog/aws/parsers/s3/get_bucket_location.rb

21 lines
317 B
Ruby

module Fog
module Parsers
module AWS
module S3
class GetBucketLocation < Fog::Parsers::Base
def end_element(name)
case name
when 'LocationConstraint'
@response[name] = @value
end
end
end
end
end
end
end