From e2cb83b3d882141d341ae09e9e653e5a6420cfae Mon Sep 17 00:00:00 2001 From: Madeline Kusters <80541297+madeline-k@users.noreply.github.com> Date: Thu, 30 Dec 2021 17:37:06 -0800 Subject: [PATCH] docs(lambda-python): Update default value for BundlingOptions.outputPathSuffix (#18231) The current default value of `'''` is incorrect, and also causing the generated python for this module to have incorrect syntax, since `'''` is the mult-line comment delimiter in python. ---- *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-python/lib/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/@aws-cdk/aws-lambda-python/lib/types.ts b/packages/@aws-cdk/aws-lambda-python/lib/types.ts index 129487b9725db..1f2b1e8c7aabf 100644 --- a/packages/@aws-cdk/aws-lambda-python/lib/types.ts +++ b/packages/@aws-cdk/aws-lambda-python/lib/types.ts @@ -6,9 +6,9 @@ import { AssetHashType, DockerImage } from '@aws-cdk/core'; */ export interface BundlingOptions { /** - * Output path suffix ('python' for a layer, '' otherwise) + * Output path suffix: the suffix for the directory into which the bundled output is written. * - * @default ''' + * @default - 'python' for a layer, empty string otherwise. */ readonly outputPathSuffix?: string;