Class: Redshift
Overview
Collect Redshift resources
Constant Summary
Constants inherited from Mapper
Mapper::SINGLE_REGION_SERVICES
Instance Method Summary collapse
-
#collect ⇒ Object
Returns an array of resources.
Methods inherited from Mapper
Constructor Details
This class inherits a constructor from Mapper
Instance Method Details
#collect ⇒ Object
Returns an array of resources.
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/aws_recon/collectors/redshift.rb', line 10 def collect resources = [] # # describe_clusters # @client.describe_clusters.each_with_index do |response, page| log(response.context.operation_name, page) response.clusters.each do |cluster| struct = OpenStruct.new(cluster.to_h) struct.type = 'cluster' struct.arn = cluster.cluster_identifier struct.logging_status = @client.describe_logging_status({ cluster_identifier: cluster.cluster_identifier }).to_h resources.push(struct.to_h) end end # # describe_cluster_subnet_groups # @client.describe_cluster_subnet_groups.each_with_index do |response, page| log(response.context.operation_name, page) response.cluster_subnet_groups.each do |group| struct = OpenStruct.new(group.to_h) struct.type = 'subnet_group' struct.arn = group.cluster_subnet_group_name resources.push(struct.to_h) end end resources end |