In AWS Lambda, what happens when an event triggers a function?
- The function creates a new virtual machine to process the event
- The function is invoked with the event data passed as input
- The function is stored in S3 for later use
- The function sends the event data to a DynamoDB table
When an event triggers a Lambda function, the service automatically runs the function with the event data as input, without any need for provisioning or managing servers.
Loading...
Related Quiz
- You can create custom CloudWatch Metrics using the __________ API.
- What are the best practices for monitoring and logging custom event sources in AWS Lambda?
- AWS Lambda functions can be written in multiple __________ such as Python, Node.js, and Java.
- How can you perform load testing on AWS Lambda functions?
- The choice of runtime determines the __________ available for development and deployment of Lambda functions.