volume_mute
Match the Lambda function terms to their definitions
publish date: 2024/08/30 02:32:2.393142 UTC
volume_mute- (1)
- An entry point that AWS Lambda calls to initiate your Lambda function.
- (2)
- An object with information about the event that initiated the Lambda function.
- (3)
- This is generated by AWS and provides metadata about the action
Please drag and drop the selected option in the right place or type it instead
Handler method
Context object
Event object
Correct Answer
(1) Handler method
(2) Event object
(3) Context object
Explanation
The handler method is the entry point to your Lambda function and the event object provides information about the event that initiated Lambda. The context object is generated by AWS and provides metadata about the execution, including the getRemainingTimeInMills property, which provides the remaining runtime until the function is terminated.
Reference
AWS Skill Builder