Class: Aws::ParamValidator Private

Inherits:
Object
  • Object
show all
Includes:
Seahorse::Model::Shapes
Defined in:
lib/aws-sdk-core/param_validator.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(rules, options = {}) ⇒ ParamValidator

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of ParamValidator.

Parameters:

Options Hash (options):

  • :validate_required (Boolean) — default: true


16
17
18
19
# File 'lib/aws-sdk-core/param_validator.rb', line 16

def initialize(rules, options = {})
  @rules = rules
  @validate_required = options[:validate_required] != false
end

Class Method Details

.validate!(rules, params) ⇒ void

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.

Parameters:



10
11
12
# File 'lib/aws-sdk-core/param_validator.rb', line 10

def self.validate!(rules, params)
  new(rules).validate!(params)
end

Instance Method Details

#validate!(params) ⇒ void

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

This method returns an undefined value.

Parameters:

  • params (Hash)

Raises:

  • (ArgumentError)


23
24
25
26
27
# File 'lib/aws-sdk-core/param_validator.rb', line 23

def validate!(params)
  errors = []
  structure(@rules, params, errors, 'params') if @rules
  raise ArgumentError, error_messages(errors) unless errors.empty?
end