class Aws::S3::Plugins::Accelerate
Provides support for using `Aws::S3::Client` with Amazon S3
Transfer Acceleration.
Go here for more information about transfer acceleration: [docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html](http://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html)
Public Instance Methods
add_handlers(handlers, config)
click to toggle source
# File lib/aws-sdk-s3/plugins/accelerate.rb, line 22 def add_handlers(handlers, config) operations = config.api.operation_names - [ :create_bucket, :list_buckets, :delete_bucket ] # Need 2 handlers so that the context can be set for other plugins # and to remove :use_accelerate_endpoint from the params. handlers.add( OptionHandler, step: :initialize, operations: operations ) handlers.add( AccelerateHandler, step: :build, priority: 11, operations: operations ) end