File tree Expand file tree Collapse file tree 4 files changed +10
-0
lines changed
Expand file tree Collapse file tree 4 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -32,8 +32,10 @@ You can write functions in any of the following runtimes and execute them straig
3232- Java 17
3333- Java 11
3434- Java 8
35+ - .NET 8
3536- .NET 7
3637- .NET 6
38+ - Ruby 3.3
3739- Ruby 3.2
3840- OS-only runtime (Amazon Linux 2023)
3941- OS-only runtime (Amazon Linux 2)
Original file line number Diff line number Diff line change @@ -19,8 +19,10 @@ Lambda supports multiple languages through the use of runtimes. You can choose a
1919- Java 17: ` java17 `
2020- Java 11: ` java11 `
2121- Java 8: ` java8.al2 `
22+ - .NET 8: ` dotnet8 `
2223- .NET 7: ` dotnet7 `
2324- .NET 6: ` dotnet6 `
25+ - Ruby 3.3: ` ruby3.3 `
2426- Ruby 3.2: ` ruby3.2 `
2527- OS-only runtime (Amazon Linux 2023): ` provided.al2023 `
2628- OS-only runtime (Amazon Linux 2): ` provided.al2 `
Original file line number Diff line number Diff line change @@ -19,8 +19,10 @@ You can write functions in any of the following runtimes and execute them straig
1919- Java 17
2020- Java 11
2121- Java 8
22+ - .NET 8
2223- .NET 7
2324- .NET 6
25+ - Ruby 3.3
2426- Ruby 3.2
2527- OS-only runtime (Amazon Linux 2023)
2628- OS-only runtime (Amazon Linux 2)
Original file line number Diff line number Diff line change @@ -37,10 +37,14 @@ abstract class Runtime
3737 /** @deprecated */
3838 public const JAVA_8 = 'java8 ' ;
3939
40+ public const DOT_NET_8 = 'dotnet8 ' ;
41+
4042 public const DOT_NET_7 = 'dotnet7 ' ;
4143
4244 public const DOT_NET_6 = 'dotnet6 ' ;
4345
46+ public const RUBY_33 = 'ruby3.3 ' ;
47+
4448 public const RUBY_32 = 'ruby3.2 ' ;
4549
4650 /** @deprecated */
You can’t perform that action at this time.
0 commit comments