From 669d1ede44df1172a7503fe8eeb09884dac1b103 Mon Sep 17 00:00:00 2001 From: Christos Arvanitis Date: Tue, 24 Oct 2023 18:42:56 +0300 Subject: [PATCH] fix: Updating Lambda functions available Runtimes (#10055) --- .../configure/FunctionBasicInformation.tsx | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/packages/amazon/src/function/configure/FunctionBasicInformation.tsx b/packages/amazon/src/function/configure/FunctionBasicInformation.tsx index 545eee601e1..f94c106cd1b 100644 --- a/packages/amazon/src/function/configure/FunctionBasicInformation.tsx +++ b/packages/amazon/src/function/configure/FunctionBasicInformation.tsx @@ -20,20 +20,26 @@ import type { IAmazonFunction } from '../../domain'; import type { IAmazonFunctionUpsertCommand } from '../../index'; const availableRuntimes = [ - 'nodejs10.x', 'nodejs12.x', + 'nodejs14.x', + 'nodejs16.x', + 'nodejs18.x', 'java8', + 'java8.al2', 'java11', - 'python2.7', - 'python3.6', + 'java17', 'python3.7', 'python3.8', - 'dotnetcore2.1', + 'python3.9', + 'python3.10', 'dotnetcore3.1', + 'dotnet7', + 'dotnet6', + 'dotnet5.0', 'go1.x', - 'ruby2.5', 'ruby2.7', 'provided', + 'provided.al2', ]; export interface IFunctionProps {