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.214.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.213.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.212.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.211.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.210.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.209.1 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.209.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.208.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.207.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.206.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.205.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.204.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.203.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.202.2 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.202.1 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.202.0 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.201.5 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.201.4 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.201.3 lib/aws-sdk-core/plugins/param_converter.rb
aws-sdk-core-3.201.2 lib/aws-sdk-core/plugins/param_converter.rb