Skip to content

Commit 2bc1da0

Browse files
Update generated code (#1396)
* update generated code * Apply suggestions from code review --------- Co-authored-by: Jérémy Derussé <jeremy@derusse.com>
1 parent 2c5797c commit 2bc1da0

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
- AWS api-change: Release Lambda RuntimeManagementConfig, enabling customers to better manage runtime updates to their Lambda functions. This release adds two new APIs, GetRuntimeManagementConfig and PutRuntimeManagementConfig, as well as support on existing Create/Get/Update function APIs.
99
- AWS api-change: Added `ap-southeast-4` region.
1010
- AWS api-change: Add Python 3.10 (python3.10) support to AWS Lambda
11-
11+
- AWS api-change: Add Java 17 (java17) support to AWS Lambda
1212
## 1.8.0
1313

1414
### Added

src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ final class Runtime
1818
public const DOTNET_6 = 'dotnet6';
1919
public const GO_1_X = 'go1.x';
2020
public const JAVA_11 = 'java11';
21+
public const JAVA_17 = 'java17';
2122
public const JAVA_8 = 'java8';
2223
public const JAVA_8_AL_2 = 'java8.al2';
2324
public const NODEJS = 'nodejs';
@@ -51,6 +52,7 @@ public static function exists(string $value): bool
5152
self::DOTNET_6 => true,
5253
self::GO_1_X => true,
5354
self::JAVA_11 => true,
55+
self::JAVA_17 => true,
5456
self::JAVA_8 => true,
5557
self::JAVA_8_AL_2 => true,
5658
self::NODEJS => true,

0 commit comments

Comments
 (0)