Module: Awspec::Helper::Finder::Lambda

Included in:
Awspec::Helper::Finder
Defined in:
lib/awspec/helper/finder/lambda.rb

Instance Method Summary collapse

Instance Method Details

#find_lambda(id) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/awspec/helper/finder/lambda.rb', line 6

def find_lambda(id)
  selected = []
  res = lambda_client.list_functions

  loop do
    selected += res.functions.select do |function|
      function.function_name == id || function.function_arn == id
    end
    break if res.next_marker.nil?

    res = lambda_client.list_functions({
                                         marker: res.next_marker
                                       })
  end

  selected.single_resource(id)
end

#select_all_lambda_functionsObject



31
32
33
34
35
# File 'lib/awspec/helper/finder/lambda.rb', line 31

def select_all_lambda_functions
  lambda_client.list_functions.map do |response|
    response.functions
  end.flatten
end

#select_event_source_by_function_arn(function_arn) ⇒ Object



24
25
26
27
28
29
# File 'lib/awspec/helper/finder/lambda.rb', line 24

def select_event_source_by_function_arn(function_arn)
  res = lambda_client.list_event_source_mappings({
                                                   function_name: function_arn
                                                 })
  res.event_source_mappings
end