Method: Jets::Resource::Lambda::Function#full_handler

Defined in:
lib/jets/resource/lambda/function.rb

#full_handler(props) ⇒ Object

Ensure that the handler path is normalized.



174
175
176
177
178
179
180
# File 'lib/jets/resource/lambda/function.rb', line 174

def full_handler(props)
  if props[:handler]
    handler_value(props[:handler])
  else
    default_handler
  end
end