module Awspec::Helper::Finder::Elasticache
Public Instance Methods
Source
# File lib/awspec/helper/finder/elasticache.rb, line 6 def find_cache_cluster(id) res = elasticache_client.describe_cache_clusters({ cache_cluster_id: id }) res.cache_clusters.single_resource(id) rescue StandardError nil end
Source
# File lib/awspec/helper/finder/elasticache.rb, line 15 def find_cache_subnet_group(group_name) res = elasticache_client.describe_cache_subnet_groups({ cache_subnet_group_name: group_name }) res.cache_subnet_groups.single_resource(group_name) end