From 05cdb24dedc716567f322b49a96af89498fe02ba Mon Sep 17 00:00:00 2001 From: Madeline Kusters Date: Thu, 30 Dec 2021 16:50:53 -0800 Subject: [PATCH] docs(lambda-python): Update default value for BundlingOptions.outputPathSuffix --- 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;