File tree 4 files changed +10
-0
lines changed 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
32
32
- Java 17
33
33
- Java 11
34
34
- Java 8
35
+ - .NET 8
35
36
- .NET 7
36
37
- .NET 6
38
+ - Ruby 3.3
37
39
- Ruby 3.2
38
40
- OS-only runtime (Amazon Linux 2023)
39
41
- 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
19
19
- Java 17: ` java17 `
20
20
- Java 11: ` java11 `
21
21
- Java 8: ` java8.al2 `
22
+ - .NET 8: ` dotnet8 `
22
23
- .NET 7: ` dotnet7 `
23
24
- .NET 6: ` dotnet6 `
25
+ - Ruby 3.3: ` ruby3.3 `
24
26
- Ruby 3.2: ` ruby3.2 `
25
27
- OS-only runtime (Amazon Linux 2023): ` provided.al2023 `
26
28
- 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
19
19
- Java 17
20
20
- Java 11
21
21
- Java 8
22
+ - .NET 8
22
23
- .NET 7
23
24
- .NET 6
25
+ - Ruby 3.3
24
26
- Ruby 3.2
25
27
- OS-only runtime (Amazon Linux 2023)
26
28
- OS-only runtime (Amazon Linux 2)
Original file line number Diff line number Diff line change @@ -37,10 +37,14 @@ abstract class Runtime
37
37
/** @deprecated */
38
38
public const JAVA_8 = 'java8 ' ;
39
39
40
+ public const DOT_NET_8 = 'dotnet8 ' ;
41
+
40
42
public const DOT_NET_7 = 'dotnet7 ' ;
41
43
42
44
public const DOT_NET_6 = 'dotnet6 ' ;
43
45
46
+ public const RUBY_33 = 'ruby3.3 ' ;
47
+
44
48
public const RUBY_32 = 'ruby3.2 ' ;
45
49
46
50
/** @deprecated */
You can’t perform that action at this time.
0 commit comments