File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -640,6 +640,7 @@ class AwsProvider {
640
640
'ruby2.7' ,
641
641
'ruby3.2' ,
642
642
'ruby3.3' ,
643
+ 'ruby3.4' ,
643
644
] ,
644
645
} ,
645
646
awsLambdaRuntimeManagement : {
Original file line number Diff line number Diff line change @@ -52,7 +52,9 @@ export type AwsLambdaMemorySize = number;
52
52
export type AwsLambdaRole = string | AwsCfSub | AwsCfImport | AwsCfGetAtt ;
53
53
export type AwsLambdaRuntime =
54
54
| "dotnet6"
55
+ | "dotnet8"
55
56
| "go1.x"
57
+ | "java21"
56
58
| "java17"
57
59
| "java11"
58
60
| "java8"
@@ -61,6 +63,7 @@ export type AwsLambdaRuntime =
61
63
| "nodejs16.x"
62
64
| "nodejs18.x"
63
65
| "nodejs20.x"
66
+ | "nodejs22.x"
64
67
| "provided"
65
68
| "provided.al2"
66
69
| "provided.al2023"
@@ -69,8 +72,12 @@ export type AwsLambdaRuntime =
69
72
| "python3.9"
70
73
| "python3.10"
71
74
| "python3.11"
75
+ | "python3.12"
76
+ | "python3.13"
72
77
| "ruby2.7"
73
- | "ruby3.2" ;
78
+ | "ruby3.2"
79
+ | "ruby3.3"
80
+ | "ruby3.4" ;
74
81
export type AwsLambdaRuntimeManagement =
75
82
| ( "auto" | "onFunctionUpdate" )
76
83
| {
@@ -1532,4 +1539,4 @@ export interface AwsApiGatewayApiKeysProperties {
1532
1539
}
1533
1540
export interface AwsCfImportLocallyResolvable {
1534
1541
"Fn::ImportValue" : string ;
1535
- }
1542
+ }
You can’t perform that action at this time.
0 commit comments