Class: Firehose

Inherits:
Mapper show all
Defined in:
lib/aws_recon/collectors/firehose.rb

Overview

Collect Firehose resources

Constant Summary

Constants inherited from Mapper

Mapper::SINGLE_REGION_SERVICES

Instance Method Summary collapse

Methods inherited from Mapper

#initialize

Constructor Details

This class inherits a constructor from Mapper

Instance Method Details

#collectObject

Returns an array of resources.

TODO: test live TODO: confirm paging behavior



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# File 'lib/aws_recon/collectors/firehose.rb', line 13

def collect
  resources = []

  #
  # list_delivery_streams
  #
  @client.list_delivery_streams.each_with_index do |response, page|
    log(response.context.operation_name, page)

    # describe_delivery_stream
    response.delivery_stream_names.each do |stream|
      struct = OpenStruct.new(@client.describe_delivery_stream({ delivery_stream_name: stream }).delivery_stream_description.to_h)
      struct.type = 'stream'
      struct.arn = struct.delivery_stream_arn

      resources.push(struct.to_h)
    end
  end

  resources
end