class Dpl::Providers::Lambda::Handler

Constants

SEP

Public Instance Methods

go?() click to toggle source
# File lib/dpl/providers/lambda.rb, line 205
def go?
  runtime.start_with?('go')
end
sep() click to toggle source
# File lib/dpl/providers/lambda.rb, line 200
def sep
  key = SEP.keys.detect { |key| runtime.start_with?(key.to_s) }
  SEP[key || :default]
end
to_s() click to toggle source
# File lib/dpl/providers/lambda.rb, line 196
def to_s
  [go? ? nil : module_name, sep, handler_name].compact.join
end