From 201afdb87c3ac33ab540cb8bf95b301995abe9a5 Mon Sep 17 00:00:00 2001 From: kdnakt Date: Mon, 12 Feb 2024 22:54:02 +0900 Subject: [PATCH] fix(lambda): add @deprecated tag to deprecated runtimes --- packages/aws-cdk-lib/aws-lambda/lib/runtime.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/aws-cdk-lib/aws-lambda/lib/runtime.ts b/packages/aws-cdk-lib/aws-lambda/lib/runtime.ts index 69dd0283bc1f8..1c05e74ec7957 100644 --- a/packages/aws-cdk-lib/aws-lambda/lib/runtime.ts +++ b/packages/aws-cdk-lib/aws-lambda/lib/runtime.ts @@ -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, @@ -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, @@ -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);