class Aws::Plugins::S3Redirects

@seahorse.client.option [Boolean] :follow_redirects (true)

When `true`, this client will follow 307 redirects returned
by Amazon S3.

Public Instance Methods

add_handlers(handlers, config) click to toggle source
# File lib/aws-sdk-core/plugins/s3_redirects.rb, line 28
def add_handlers(handlers, config)
  if config.follow_redirects
    # we want to re-trigger request signing
    handlers.add(Handler, step: :sign, priority: 90)
  end
end