Class: SecurityHub

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

Overview

Collect Security Hub 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.



10
11
12
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/securityhub.rb', line 10

def collect
  resources = []

  #
  # describe_hub
  #
  begin
    @client.describe_hub.each do |response|
      log(response.context.operation_name)

      struct = OpenStruct.new(response.to_h)
      struct.type = 'hub'
      struct.arn = response.hub_arn

      resources.push(struct.to_h)
    end
  rescue Aws::SecurityHub::Errors::ServiceError => e
    log_error(e.code)

    raise e unless suppressed_errors.include?(e.code) && !@options.quit_on_exception
  end

  resources
end