Sha256: 2f87c8e7382bf52b025d7549ad30d097bfab7904badc05b74561824a78eff8a5
Contents?: true
Size: 483 Bytes
Versions: 44
Compression:
Stored size: 483 Bytes
Contents
module Awspec::Type class RedshiftClusterParameterGroup < ResourceBase def resource_via_client @resource_via_client ||= select_all_redshift_cluster_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
44 entries across 44 versions & 3 rubygems