Skip to content

Commit 0403774

Browse files
feat: update the aws lambda runtime
The aws lambda runtimes are updated to the latest according to the documentation[1]. Resolves: serverless#90 [1]: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
1 parent 47fe5fa commit 0403774

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

index.d.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ export type AwsLambdaMemorySize = number;
5757
export type AwsLambdaRole = string | AwsCfSub | AwsCfImport | AwsCfGetAtt;
5858
export type AwsLambdaRuntime =
5959
| "dotnet6"
60+
| "dotnet8"
6061
| "go1.x"
62+
| "java21"
6163
| "java17"
6264
| "java11"
6365
| "java8"
@@ -66,6 +68,7 @@ export type AwsLambdaRuntime =
6668
| "nodejs16.x"
6769
| "nodejs18.x"
6870
| "nodejs20.x"
71+
| "nodejs22.x"
6972
| "provided"
7073
| "provided.al2"
7174
| "provided.al2023"
@@ -74,8 +77,11 @@ export type AwsLambdaRuntime =
7477
| "python3.9"
7578
| "python3.10"
7679
| "python3.11"
80+
| "python3.12"
81+
| "python3.13"
7782
| "ruby2.7"
78-
| "ruby3.2";
83+
| "ruby3.2"
84+
| "ruby3.3";
7985
export type AwsLambdaRuntimeManagement =
8086
| ("auto" | "onFunctionUpdate")
8187
| {

0 commit comments

Comments
 (0)