From fed03ffd94409557fdabc69dcf68cbf59d86fca3 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Wed, 1 Aug 2018 12:08:22 +0100 Subject: [PATCH] Update python context docs for null -> None Python has `None` not `null`. --- doc_source/python-context-object.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc_source/python-context-object.md b/doc_source/python-context-object.md index ad83107c..b6fb75c3 100644 --- a/doc_source/python-context-object.md +++ b/doc_source/python-context-object.md @@ -75,15 +75,15 @@ The name of the CloudWatch log group where you can find logs written by your Lam **log\_stream\_name** The name of the CloudWatch log stream where you can find logs written by your Lambda function\. The log stream may or may not change for each invocation of the Lambda function\. -The value is null if your Lambda function is unable to create a log stream, which can happen if the execution role that grants necessary permissions to the Lambda function does not include permissions for the CloudWatch Logs actions\. +The value is `None` if your Lambda function is unable to create a log stream, which can happen if the execution role that grants necessary permissions to the Lambda function does not include permissions for the CloudWatch Logs actions\. **identity** -Information about the Amazon Cognito identity provider when invoked through the AWS Mobile SDK\. It can be null\. +Information about the Amazon Cognito identity provider when invoked through the AWS Mobile SDK\. It can be `None`\. + **identity\.cognito\_identity\_id** + **identity\.cognito\_identity\_pool\_id** **client\_context** -Information about the client application and device when invoked through the AWS Mobile SDK\. It can be null\. +Information about the client application and device when invoked through the AWS Mobile SDK\. It can be `None`\. + **client\_context\.client\.installation\_id** + **client\_context\.client\.app\_title** + **client\_context\.client\.app\_version\_name** @@ -96,4 +96,4 @@ Information about the client application and device when invoked through the AWS A `dict` of environment information provided by the AWS Mobile SDK\. -In addition to the options listed above, you can also use the AWS X\-Ray SDK for [Python](python-tracing.md) to identify critical code paths, trace their performance and capture the data for analysis\. \ No newline at end of file +In addition to the options listed above, you can also use the AWS X\-Ray SDK for [Python](python-tracing.md) to identify critical code paths, trace their performance and capture the data for analysis\.