Class: Aws::S3::Plugins::GetBucketLocationFix::Handler
- Inherits:
-
Seahorse::Client::Handler
- Object
- Seahorse::Client::Handler
- Aws::S3::Plugins::GetBucketLocationFix::Handler
- Defined in:
- lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb
Instance Method Summary collapse
Instance Method Details
#call(context) ⇒ Object
8 9 10 11 12 13 14 15 |
# File 'lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb', line 8 def call(context) @handler.call(context).on(200) do |response| response.data = S3::Types::GetBucketLocationOutput.new xml = context.http_response.body_contents matches = xml.match(/>(.+?)<\/LocationConstraint>/) response.data[:location_constraint] = matches ? matches[1] : '' end end |