At the time you create a Lambda function, you specify a handler, which is a function in your code, that AWS Lambda can invoke when the service executes your code. Use the following general syntax structure when creating a handler function in Python.
def handler_name(event, context):
...
return some_value
In the syntax, note the following:
-
event
– AWS Lambda uses this parameter to pass in event data to the handler. This parameter is usually of the Pythondict
type. It can also belist
,str
,int
,float
, orNoneType
type.When you invoke your function, you determine the content and structure of the event. When an AWS service invokes your function, the event structure varies by service. For details, see Using AWS Lambda with other services.
-
context
– AWS Lambda uses this parameter to provide runtime information to your handler. For details, see AWS Lambda context object in Python. -
Optionally, the handler can return a value. What happens to the returned value depends on the invocation type you use when invoking the Lambda function:
- If you use the
RequestResponse
invocation type (synchronous execution), AWS Lambda returns the result of the Python function call to the client invoking the Lambda function (in the HTTP response to the invocation request, serialized into JSON). For example, AWS Lambda console uses theRequestResponse
invocation type, so when you invoke the function using the console, the console will display the returned value. - If the handler returns objects that can't be serialized by
json.dumps
, the runtime returns an error. - If the handler returns
None
, as Python functions without areturn
statement implicitly do, the runtime returnsnull
. - If you use the
Event
invocation type (asynchronous execution), the value is discarded.
- If you use the
For example, consider the following Python example code.
def my_handler(event, context):
message = 'Hello {} {}!'.format(event['first_name'],
event['last_name'])
return {
'message' : message
}
This example has one function called my_handler
. The function returns a message containing data from the event it received as input.