Sha256: 9e77334f0f50481b5194199007dc381f2965f1a019dddaa222e4f1bb7baba325
Contents?: true
Size: 850 Bytes
Versions: 54
Compression:
Stored size: 850 Bytes
Contents
# frozen_string_literal: true # # Collect CloudWatch resources # class CloudWatch < Mapper # # Returns an array of resources. # def collect resources = [] # # describe_alarms # @client.describe_alarms.each_with_index do |response, page| log(response.context.operation_name, page) response.composite_alarms.each do |alarm| struct = OpenStruct.new(alarm.to_h) struct.type = 'composite_alarm' struct.arn = alarm.alarm_arn resources.push(struct.to_h) end response.metric_alarms.each do |alarm| struct = OpenStruct.new(alarm.to_h) struct.type = 'metric_alarm' struct.arn = alarm.alarm_arn struct.state_reason_data = alarm.state_reason_data&.parse_policy resources.push(struct.to_h) end end resources end end
Version data entries
54 entries across 54 versions & 1 rubygems