Method: Awspec::Type::RdsDBParameters#method_missing
- Defined in:
- lib/awspec/type/rds_db_parameter_group.rb
permalink #method_missing(name) ⇒ Object
32 33 34 35 36 37 |
# File 'lib/awspec/type/rds_db_parameter_group.rb', line 32 def method_missing(name) param_name = name.to_sym return @params[param_name] if @params.include?(param_name) raise InvalidRdsDBParameter, name end |