Sha256: 4a782f0f0eb869f44e3dc97261c4a07880b53cef06f402333cbf20fe1b762538

Contents?: true

Size: 908 Bytes

Versions: 22

Compression:

Stored size: 908 Bytes

Contents

module Awspec::Helper
  module Finder
    module Lambda
      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
          (res.next_page? && res = res.next_page) || break
        end

        selected.single_resource(id)
      end

      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

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

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
awspec-1.12.1 lib/awspec/helper/finder/lambda.rb
awspec-1.12.0 lib/awspec/helper/finder/lambda.rb