- Published on
Lambda
- Authors
- Name
- Bowen Y
What is a handler?
In AWS Lambda, a handler is a function within your code that AWS Lambda calls to start execution of your function. When you create a Lambda function, you specify a handler, which AWS Lambda uses to know which function to invoke when the Lambda function is triggered. The handler is the entry point for your Lambda function and is responsible for processing the input event and providing an output.
A handler is defined as file_name.function_name
.