Skip to content

Commit

Permalink
feat: update the aws lambda runtime
Browse files Browse the repository at this point in the history
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
  • Loading branch information
RishikeshDarandale committed Dec 10, 2024
1 parent 47fe5fa commit 0403774
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ export type AwsLambdaMemorySize = number;
export type AwsLambdaRole = string | AwsCfSub | AwsCfImport | AwsCfGetAtt;
export type AwsLambdaRuntime =
| "dotnet6"
| "dotnet8"
| "go1.x"
| "java21"
| "java17"
| "java11"
| "java8"
Expand All @@ -66,6 +68,7 @@ export type AwsLambdaRuntime =
| "nodejs16.x"
| "nodejs18.x"
| "nodejs20.x"
| "nodejs22.x"
| "provided"
| "provided.al2"
| "provided.al2023"
Expand All @@ -74,8 +77,11 @@ export type AwsLambdaRuntime =
| "python3.9"
| "python3.10"
| "python3.11"
| "python3.12"
| "python3.13"
| "ruby2.7"
| "ruby3.2";
| "ruby3.2"
| "ruby3.3";
export type AwsLambdaRuntimeManagement =
| ("auto" | "onFunctionUpdate")
| {
Expand Down

0 comments on commit 0403774

Please sign in to comment.