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



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

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



28
29
30
31
32
# File 'lib/awspec/helper/finder/lambda.rb', line 28

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



21
22
23
24
25
26
# File 'lib/awspec/helper/finder/lambda.rb', line 21

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