class Object

Public Instance Methods

handler(event:, context:) click to toggle source
# File lib/ruby_lambda/templates/lambda_function.rb, line 3
def handler(event:, context:)
  # TODO: implement
  { statusCode: 200, body: JSON.generate('Hello from Ruby Lambda') }
end