-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Description
Which of the following is NOT a benefit of using AWS Lambda?
The exact answer is not the D. That is a benefit.
Check the Official AWS doc:
https://docs.aws.amazon.com/mobile/sdkforunity/developerguide/lambda.html
"AWS Lambda functions can be called directly from mobile, IoT, and Web apps"
it is the B. AWS Lambda provides resizable compute capacity in the cloud. this is NOT a benefit.
Resizable is a typical concept of Ec2, Lambda is a serverless function that no need manual intervention from the use, it scales automatically in response to an event. Hope it is clear.
There is no charge when Lambda code is not running, so the C is a benefit:
https://docs.aws.amazon.com/whitepapers/latest/big-data-analytics-options/aws-lambda.html
The last one, A, is obviously the main benefit.,as Lambda is Serverless:
AWS Lambda runs code without provisioning or managing servers.