From 00005df06683a23599aa40ddfdfb3368b96668e2 Mon Sep 17 00:00:00 2001 From: Setu Shah Date: Wed, 26 Jan 2022 00:18:37 -0800 Subject: [PATCH] docs: add note about token --- packages/@aws-cdk/aws-lambda-python/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/@aws-cdk/aws-lambda-python/README.md b/packages/@aws-cdk/aws-lambda-python/README.md index af19fd7ca037f..6add43f02d141 100644 --- a/packages/@aws-cdk/aws-lambda-python/README.md +++ b/packages/@aws-cdk/aws-lambda-python/README.md @@ -172,6 +172,8 @@ new lambda.PythonFunction(this, 'function', { }); ``` +The index URL or the token are only used during bundling and thus not included in the final asset. + If you also want to use the Code Artifact repo for initializing the Docker image for bundling, use `buildArgs`: ```ts