AWS Lambda is an event-driven, serverless computing platform provided by Amazon as a part of Amazon Web Services.
It is a computing service that runs code in response to events and automatically manages the computing resources required by that code.
It was introduced on November 13, 2014.
AWS Lambda was designed for use cases such as image or object uploads to Amazon S3, updates to DynamoDB tables, responding to website clicks, or reacting to sensor readings from an IoT connected device.
Unlike Amazon EC2, which is priced by the hour but metered by the second, AWS Lambda is metered by rounding up to the nearest millisecond with no minimum execution time.
AWS Lambda can also be used to automatically provision back-end services triggered by custom HTTP requests, and "spin down" such services when not in use, to save resources.
Since December 2020 Lambda supports Docker containers through ECR up to 10 GB in size.
Official website :- https://aws.amazon.com/lambda
Comments
Post a Comment