Top Level Namespace

Defined Under Namespace

Modules: RubyLambda

Instance Method Summary collapse

Instance Method Details

#handler(event:, context:) ⇒ Object



3
4
5
6
# 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