How to Convert Lambda@Edge Functions Using Callbacks to Async/Await
AWS Lambda is deprecating the Node.js 20 runtime in favor of Node.js 24. The problem is that Node.js 24 drops support for callbacks in favor of the Async/Await feature introduced in ES2017. How hard could it be to convert them?
more ...