Class: Athena

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

Overview

Collect Athena 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
# File 'lib/aws_recon/collectors/athena.rb', line 10

def collect
  resources = []

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

    response.work_groups.each do |workgroup|
      struct = OpenStruct.new(workgroup.to_h)
      struct.type = 'workgroup'
      struct.arn = "arn:aws:athena:#{@region}::workgroup/#{workgroup.name}"

      # get_work_group
      struct.details = @client.get_work_group({ work_group: workgroup.name }).to_h

      resources.push(struct.to_h)
    end
  end

  resources
end