Skip to content

Lambda in AWS

Posted on:February 16, 2024 at 10:26 PM

If you’re delving into or considering AWS (Amazon Web Services), chances are you’ve encountered Lambdas. Lambdas represent serverless functions that can be triggered in various ways, operating either asynchronously or synchronously, and capable of initiating additional actions as side effects. The essence of lambda functions lies in their singular responsibility, where each function encapsulates concise logic following the “clean function” approach, taking an input and producing an output.

AWS provides Lambdas across multiple programming languages such as Java, Go, PowerShell, Node.js, C#, Python, and Ruby, although personally, I’ve primarily worked with Node.js.

During my experimentation, a few insights emerged:

Stay tuned for further insights in the upcoming article.