From 384bb04e0eb458e25f90cac8157a2e6c3571bd69 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Thu, 3 Dec 2020 02:49:03 -0800 Subject: [PATCH] docs(lambda): fix link for bundling asset code (#11847) Fixes: https://github.com/aws/aws-cdk/issues/11846 ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/@aws-cdk/aws-lambda/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-lambda/README.md b/packages/@aws-cdk/aws-lambda/README.md index 19eac465349ee..87910c3f9c4de 100644 --- a/packages/@aws-cdk/aws-lambda/README.md +++ b/packages/@aws-cdk/aws-lambda/README.md @@ -35,7 +35,7 @@ runtime code. limited to supported runtimes and the code cannot exceed 4KiB. * `lambda.Code.fromAsset(path)` - specify a directory or a .zip file in the local filesystem which will be zipped and uploaded to S3 before deployment. See also - [bundling asset code](#Bundling-Asset-Code). + [bundling asset code](#bundling-asset-code). The following example shows how to define a Python function and deploy the code from the local directory `my-lambda-handler` to it: