class Awspec::Type::RdsDbParameterGroup
Public Instance Methods
id()
click to toggle source
# File lib/awspec/type/rds_db_parameter_group.rb, line 8 def id @id ||= @display_name unless resource_via_client.empty? end
method_missing(name)
click to toggle source
Calls superclass method
# File lib/awspec/type/rds_db_parameter_group.rb, line 12 def method_missing(name) param_name = name.to_s if resource_via_client.include?(param_name) resource_via_client[param_name].to_s else super end end
resource_via_client()
click to toggle source
# File lib/awspec/type/rds_db_parameter_group.rb, line 3 def resource_via_client return @resource_via_client if @resource_via_client @resource_via_client ||= select_all_rds_db_parameters(@display_name) end