Skip to content

Commit

Permalink
fix(lambda): add @deprecated tag to deprecated runtimes
Browse files Browse the repository at this point in the history
  • Loading branch information
kdnakt committed Feb 12, 2024
1 parent 88decc6 commit 201afdb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/aws-cdk-lib/aws-lambda/lib/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ export class Runtime {

/**
* The Python 3.7 runtime (python3.7)
* @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Python runtime.
*/
public static readonly PYTHON_3_7 = new Runtime('python3.7', RuntimeFamily.PYTHON, {
supportsInlineCode: true,
Expand Down Expand Up @@ -183,6 +184,7 @@ export class Runtime {

/**
* The Java 8 runtime (java8)
* @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Java runtime.
*/
public static readonly JAVA_8 = new Runtime('java8', RuntimeFamily.JAVA, {
supportsCodeGuruProfiling: true,
Expand Down Expand Up @@ -262,6 +264,7 @@ export class Runtime {

/**
* The Ruby 2.7 runtime (ruby2.7)
* @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Ruby runtime.
*/
public static readonly RUBY_2_7 = new Runtime('ruby2.7', RuntimeFamily.RUBY);

Expand Down

0 comments on commit 201afdb

Please sign in to comment.