From 1bfd195b9c81e375824dac175f5e822f51ceb013 Mon Sep 17 00:00:00 2001 From: Kat Schelonka Date: Thu, 16 Nov 2023 16:42:20 -0800 Subject: [PATCH] chore(lambda): update lambda runtimes --- src/base/ApplicationVersionedLambda.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/base/ApplicationVersionedLambda.ts b/src/base/ApplicationVersionedLambda.ts index 934a0563..af96314b 100644 --- a/src/base/ApplicationVersionedLambda.ts +++ b/src/base/ApplicationVersionedLambda.ts @@ -23,9 +23,13 @@ import { Construct } from 'constructs'; export enum LAMBDA_RUNTIMES { PYTHON38 = 'python3.8', - NODEJS12 = 'nodejs12.x', + PYTHON39 = 'python3.9', + PYTHON310 = 'python3.10', + PYTHON311 = 'python3.11', NODEJS14 = 'nodejs14.x', NODEJS16 = 'nodejs16.x', + NODEJS18 = 'nodejs18.x', + NODEJS20 = 'nodejs20.x', } export interface ApplicationVersionedLambdaProps