Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -104,6 +104,7 @@ export class Runtime {

/**
* The NodeJS 18.x runtime (nodejs18.x)
* @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS runtime.
*/
public static readonly NODEJS_18_X = new Runtime('nodejs18.x', RuntimeFamily.NODEJS, { supportsInlineCode: true });

Expand Down Expand Up @@ -166,6 +167,7 @@ export class Runtime {

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

/**
* The .NET 6 runtime (dotnet6)
* @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest .NET runtime.
*/
public static readonly DOTNET_6 = new Runtime('dotnet6', RuntimeFamily.DOTNET_CORE);

Expand Down
Loading