Skip to content

Commit e2cb83b

Browse files
authored
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*
1 parent 7df4a58 commit e2cb83b

File tree

1 file changed

+2
-2
lines changed
  • packages/@aws-cdk/aws-lambda-python/lib

1 file changed

+2
-2
lines changed

packages/@aws-cdk/aws-lambda-python/lib/types.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import { AssetHashType, DockerImage } from '@aws-cdk/core';
66
*/
77
export interface BundlingOptions {
88
/**
9-
* Output path suffix ('python' for a layer, '' otherwise)
9+
* Output path suffix: the suffix for the directory into which the bundled output is written.
1010
*
11-
* @default '''
11+
* @default - 'python' for a layer, empty string otherwise.
1212
*/
1313
readonly outputPathSuffix?: string;
1414

0 commit comments

Comments
 (0)