AWS Lambda is function as service in AWS it means that we define what we want to run on AWS as a function and AWS runs it it does not matter how much RAM, storage it requires. It does not require you to provision any servers. It also runs on demand and you pay for compute time and no of times you run required function. It can scale infinitely. Scaling and pay on compute time makes it a service of choice for many developers.
Benefits
You don't need to manage any servers for your back end service.
It lets you run I million requests and 400 thousand of compute time in free tier so that you can get well versed with it before using it.
Easy pricing you have to pay for compute time and number for request
Language support Node.js, Python, Golang C# etc and all other using many API provided custom API
Very easy to add resources.
Only used as for resources when needed
Next we will do a hands on AWS Lambda
Top comments (2)
Using Serverless framework: medium.datadriveninvestor.com/easy...
Github Action to deploy lambda: github.com/appleboy/lambda-action
If you can tell me more details on how you want to deploy it maybe i can give you a specific answer
You can also upload to s3 and keep changing that file on each deployment too and import from there