Sha256: 323dda082cd5c1a3c2161d7db38ed0b229cf051582f1460a85d362a6a2ed6ab4

Contents?: true

Size: 908 Bytes

Versions: 125

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 |responce|
          responce.functions
        end.flatten
      end
    end
  end
end

Version data entries

125 entries across 125 versions & 2 rubygems

Version Path
awspec-0.62.0 lib/awspec/helper/finder/lambda.rb
awspec-0.61.1 lib/awspec/helper/finder/lambda.rb
awspec-0.61.0 lib/awspec/helper/finder/lambda.rb
awspec-0.60.1 lib/awspec/helper/finder/lambda.rb
awspec-0.60.0 lib/awspec/helper/finder/lambda.rb
awspec-0.59.0 lib/awspec/helper/finder/lambda.rb
awspec-0.58.0 lib/awspec/helper/finder/lambda.rb
awspec-0.57.1 lib/awspec/helper/finder/lambda.rb
awspec-0.57.0 lib/awspec/helper/finder/lambda.rb
awspec-0.56.1 lib/awspec/helper/finder/lambda.rb
awspec-0.56.0 lib/awspec/helper/finder/lambda.rb
awspec-0.55.0 lib/awspec/helper/finder/lambda.rb
awspec-0.54.0 lib/awspec/helper/finder/lambda.rb
awspec-0.52.4 lib/awspec/helper/finder/lambda.rb
awspec-0.52.3 lib/awspec/helper/finder/lambda.rb
awspec-0.52.2 lib/awspec/helper/finder/lambda.rb
awspec-0.52.1 lib/awspec/helper/finder/lambda.rb
awspec-0.52.0 lib/awspec/helper/finder/lambda.rb
awspec-0.51.0 lib/awspec/helper/finder/lambda.rb
awspec-0.50.0 lib/awspec/helper/finder/lambda.rb