Class: Aws::Plugins::S3GetBucketLocationFix::Handler
- Inherits:
-
Seahorse::Client::Handler
- Object
- Seahorse::Client::Handler
- Aws::Plugins::S3GetBucketLocationFix::Handler
- Defined in:
- lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb
Instance Attribute Summary
Attributes inherited from Seahorse::Client::Handler
Instance Method Summary collapse
Methods inherited from Seahorse::Client::Handler
Constructor Details
This class inherits a constructor from Seahorse::Client::Handler
Instance Method Details
#call(context) ⇒ Object
7 8 9 10 11 12 13 14 |
# File 'lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb', line 7 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 |