class Aws::Templates::Exception::ParameterSpecificationIsInvalid

Invalid parameter specification hash

If unknown option is passed in a parameter description block

Attributes

options[R]

Options unknown to Parametrized

parameter[R]

Parameter object faulty options were specified for

Public Class Methods

new(target_parameter, opts) click to toggle source
Calls superclass method
# File lib/aws/templates/exception/parameter_specification_is_invalid.rb, line 17
def initialize(target_parameter, opts)
  @parameter = target_parameter
  @options = opts

  super(
    'Unsupported options are in specification for ' \
    "parameter #{target_parameter.name} in class " \
    "#{target_parameter.klass} : #{opts}"
  )
end