@lambda-kata/cdk 0.1.3-rc.54 → 0.1.3-rc.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/dist/index.js +38 -38
- package/out/tsc/src/types.d.ts +5 -0
- package/package.json +1 -1
package/out/tsc/src/types.d.ts
CHANGED
|
@@ -76,6 +76,11 @@ export interface TransformationConfig {
|
|
|
76
76
|
* This will be stored in the config layer.
|
|
77
77
|
*/
|
|
78
78
|
originalHandler: string;
|
|
79
|
+
/**
|
|
80
|
+
* The original Node.js runtime (e.g., "nodejs20.x").
|
|
81
|
+
* Used to create the appropriate Node.js runtime layer.
|
|
82
|
+
*/
|
|
83
|
+
originalRuntime?: string;
|
|
79
84
|
/**
|
|
80
85
|
* The target runtime for the transformed Lambda.
|
|
81
86
|
* Always Runtime.PYTHON_3_12 for Lambda Kata.
|
package/package.json
CHANGED