AWS Certified Developer Exam Notes – Lambda

Lambda Serverless. Limited by time – short executions Does not run continuously. Runs on-demand. Pay for the number of requests and compute time. Free tier of 1m Lambda requests Limits Memory: 128MB – 10GB Max execution time: 15 minutes Env variables 4KB Concurrency 1000 executions for all (can be increased with AWS request) Deployment 50MB Read more about AWS Certified Developer Exam Notes – Lambda[…]

AWS Certified Solutions Architect Exam Notes – Lambda

Lambda – Serverless Event-driven computing service. There is no server running. An event comes and the code gets executed. Serverless scales instantly (scales out, not up). If 1 million users hit the same request, 1 million lambdas will run the code. No Servers. No antivirus. No maintenance. No admins. No patching. Supported languages Node.js Java C# Python Read more about AWS Certified Solutions Architect Exam Notes – Lambda[…]