File tree 1 file changed +3
-0
lines changed
packages/aws-cdk-lib/aws-lambda/lib
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -135,6 +135,7 @@ export class Runtime {
135
135
136
136
/**
137
137
* The Python 3.7 runtime (python3.7)
138
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Python runtime.
138
139
*/
139
140
public static readonly PYTHON_3_7 = new Runtime ( 'python3.7' , RuntimeFamily . PYTHON , {
140
141
supportsInlineCode : true ,
@@ -183,6 +184,7 @@ export class Runtime {
183
184
184
185
/**
185
186
* The Java 8 runtime (java8)
187
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Java runtime.
186
188
*/
187
189
public static readonly JAVA_8 = new Runtime ( 'java8' , RuntimeFamily . JAVA , {
188
190
supportsCodeGuruProfiling : true ,
@@ -262,6 +264,7 @@ export class Runtime {
262
264
263
265
/**
264
266
* The Ruby 2.7 runtime (ruby2.7)
267
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Ruby runtime.
265
268
*/
266
269
public static readonly RUBY_2_7 = new Runtime ( 'ruby2.7' , RuntimeFamily . RUBY ) ;
267
270
You can’t perform that action at this time.
0 commit comments