Sha256: 3a9bf186dbb0166d16d3de25df12c14bfe0d97db55bcfc147945cb72ff61b2ba
Contents?: true
Size: 521 Bytes
Versions: 70
Compression:
Stored size: 521 Bytes
Contents
module Awspec::Type class RdsDbParameterGroup < ResourceBase def resource_via_client return @resource_via_client if @resource_via_client @resource_via_client ||= select_all_rds_db_parameters(@display_name) end def id @id ||= @display_name unless resource_via_client.empty? end 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 end end
Version data entries
70 entries across 70 versions & 3 rubygems