Nicolas Ocquidant
Nicolas Ocquidant
Hi, is top level await supported? The following code: ```js function sleep(ms: number) { return new Promise((resolve) => { setTimeout(resolve, ms); }); } await sleep(100); export const handle = async...
Hi, I am trying to follow: [JSON logging option in the console](https://aws.amazon.com/fr/blogs/compute/introducing-advanced-logging-controls-for-aws-lambda-functions/) But the following code: `console.log({ data: 12.3, flag: false });` Produces a single string instead of key-value pairs:...
Hi, sometimes I need to attach one of my Lambdas to a VPC to access private ressources like ALB... And then, I have to specify an HTTP proxy to be...