class Aws::Plugins::S3Accelerate

def add_handlers(handlers, config)

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