You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc_source/python-programming-model-handler-types.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,11 @@ In the syntax, note the following:
12
12
+`event` – AWS Lambda uses this parameter to pass in event data to the handler\. This parameter is usually of the Python `dict` type\. It can also be `list`, `str`, `int`, `float`, or `NoneType` type\.
13
13
+`context` – AWS Lambda uses this parameter to provide runtime information to your handler\. This parameter is of the `LambdaContext` type\.
14
14
+ 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:
15
-
+ 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 the `RequestResponse` invocation type, so when you invoke the function using the console, the console will display the returned value\.
15
+
+ 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 with `json.dumps`\)\. For example, AWS Lambda console uses the `RequestResponse` invocation type, so when you invoke the function using the console, the console will display the returned value\.
16
16
17
-
If the handler returns `NONE`, AWS Lambda returns null\.
17
+
If the handler returns objects that can't be serialized by `json.dumps`, the runtime returns an error.
18
+
19
+
If the handler returns `None`, as Python functions with a `return` statement implicitly do, this gets serializes this as JSON `null`\.
18
20
+ If you use the `Event` invocation type \(asynchronous execution\), the value is discarded\.
19
21
20
22
For example, consider the following Python example code\.
@@ -28,4 +30,4 @@ def my_handler(event, context):
28
30
}
29
31
```
30
32
31
-
This example has one function called `my_handler`\. The function returns a message containing data from the event it received as input\.
33
+
This example has one function called `my_handler`\. The function returns a message containing data from the event it received as input\.
0 commit comments