import path from 'path'; // Lambda configuration is at the same location of the actual handler's code export default { handler:'hello.main', events: [ { httpApi: 'GET /hello'} ] } const main = () => { return 'Hello from lambda' }