Sha256: d61da406aedccc9c1e5c3b5a348fe9435d2dd9de6c3656614a5eb2cd62948b74
Contents?: true
Size: 836 Bytes
Versions: 190
Compression:
Stored size: 836 Bytes
Contents
# frozen_string_literal: true module Aws module Plugins # @api private class ParamConverter < Seahorse::Client::Plugin option(:convert_params, default: true, doc_type: 'Boolean', docstring: <<-DOCS When `true`, an attempt is made to coerce request parameters into the required types. DOCS ) def add_handlers(handlers, config) handlers.add(Handler, step: :initialize) if config.convert_params end class Handler < Seahorse::Client::Handler def call(context) converter = Aws::ParamConverter.new(context.operation.input) context.params = converter.convert(context.params) @handler.call(context).on_complete do |resp| converter.close_opened_files end end end end end end
Version data entries
190 entries across 190 versions & 1 rubygems