We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47fe5fa commit 0403774Copy full SHA for 0403774
index.d.ts
@@ -57,7 +57,9 @@ export type AwsLambdaMemorySize = number;
57
export type AwsLambdaRole = string | AwsCfSub | AwsCfImport | AwsCfGetAtt;
58
export type AwsLambdaRuntime =
59
| "dotnet6"
60
+ | "dotnet8"
61
| "go1.x"
62
+ | "java21"
63
| "java17"
64
| "java11"
65
| "java8"
@@ -66,6 +68,7 @@ export type AwsLambdaRuntime =
66
68
| "nodejs16.x"
67
69
| "nodejs18.x"
70
| "nodejs20.x"
71
+ | "nodejs22.x"
72
| "provided"
73
| "provided.al2"
74
| "provided.al2023"
@@ -74,8 +77,11 @@ export type AwsLambdaRuntime =
77
| "python3.9"
75
78
| "python3.10"
76
79
| "python3.11"
80
+ | "python3.12"
81
+ | "python3.13"
82
| "ruby2.7"
- | "ruby3.2";
83
+ | "ruby3.2"
84
+ | "ruby3.3";
85
export type AwsLambdaRuntimeManagement =
86
| ("auto" | "onFunctionUpdate")
87
| {
0 commit comments