What is a Lambda Function in AWS?

AWS Lambda is a cost-effective compute service offered by Amazon AWS, and is a part of AWS Serverless compute suite.
  • AWS Lambda is a cost-effective compute service offered by Amazon AWS.
  • Lambda functions enable users to run APIs / applications and pay for only the computation hours.
  • Lambda functions run only when a request happens and shut down after a configurable default timeout
  • The default timeout for a Lambda function is 30 secs and can run for up to 15 minutes.
  • These functions can be executed from a variety of trigger sources such as API Gateway, Cloud Watch, Dynamo DB etc.
  • Since Lambda functions boot up only after a request is received, they’re prone to a slight delay which is called as “cold start time”
  • Lambda functions support most popular languages such as Node JS, Python, Java, ASP.NET Core

Buy Me A Coffee

Found this article helpful? Please consider supporting!

Ram
Ram

I'm a full-stack developer and a software enthusiast who likes to play around with cloud and tech stack out of curiosity. You can connect with me on Medium, Twitter or LinkedIn.

Leave a Reply

Your email address will not be published. Required fields are marked *