class Aws::Plugins::S3Accelerate

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)

@seahorse.client.option [Boolean] :use_accelerate_endpoint (false)

When set to `true`, accelerated bucket endpoints will be used
for all object operations. You must first enable
accelerate for each bucket. [Go here for more information](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-core/plugins/s3_accelerate.rb, line 20
def add_handlers(handlers, config)
  operations = config.api.operation_names - [
    :create_bucket, :list_buckets, :delete_bucket,
  ]
  handlers.add(OptionHandler, step: :initialize, operations: operations)
  handlers.add(AccelerateHandler, step: :build, priority: 0, operations: operations)
end