class Aws::Plugins::ParamValidator
@seahorse.client.option [Boolean] :validate_params (true)
When `true`, request parameters are validated before sending the request.
Public Instance Methods
add_handlers(handlers, config)
click to toggle source
# File lib/aws-sdk-core/plugins/param_validator.rb, line 11 def add_handlers(handlers, config) if config.validate_params handlers.add(Handler, step: :validate, priority: 50) end end