DEV Community

Cover image for When do you use Lambda?
Vivekanand Gujjeti
Vivekanand Gujjeti

Posted on

When do you use Lambda?

● When using AWS Lambda, you are only responsible for your code.
● AWS Lambda manages the memory, CPU, Network, and other resources.
● It means you cannot log in to the compute instances or customize the
operating system.
● If you want to manage your own compute resources, you can use other
compute services such as EC2, Elastic Beanstalk.
● There will be a level of abstraction which means you cannot log in to the
server or customize the runtime.

Top comments (0)