module Awspec::Helper::Finder::Lambda

Public Instance Methods

find_lambda(id) click to toggle source
# 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_functions() click to toggle source
# 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) click to toggle source
# 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