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

Version Path
aws-sdk-core-3.201.1 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.201.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.200.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.199.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.198.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.197.2 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.197.1 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.197.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.194.1 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.194.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.193.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.192.1 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.192.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.191.6 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.191.5 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.191.4 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.191.3 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.191.2 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.191.1 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.191.0 lib/aws-sdk-core/plugins/param_converter.rb