Skip to content

Commit 810ae0e

Browse files
Update generated code (#2108)
* update generated code * Apply suggestion from @jderusse --------- Co-authored-by: Jérémy Derussé <jeremy@derusse.com>
1 parent 02e863e commit 810ae0e

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"variables": {
3-
"${LATEST}": "3.388.0"
3+
"${LATEST}": "3.388.5"
44
},
55
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
66
"services": {

src/Service/Lambda/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: AWS Lambda Durable Functions now supports customer managed KMS keys. This allows customers to configure a KMS key in Durable Config to have all their durable execution data encrypted.
8+
- AWS api-change: Add Java 8, 11 and 17 on AL2023 (java8.al2023, java11.al2023, java17.al2023) support to AWS Lambda.
89

910
## 2.16.0
1011

src/Service/Lambda/src/Enum/Runtime.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,14 @@ final class Runtime
1313
public const DOTNET_8 = 'dotnet8';
1414
public const GO_1_X = 'go1.x';
1515
public const JAVA_11 = 'java11';
16+
public const JAVA_11_AL_2023 = 'java11.al2023';
1617
public const JAVA_17 = 'java17';
18+
public const JAVA_17_AL_2023 = 'java17.al2023';
1719
public const JAVA_21 = 'java21';
1820
public const JAVA_25 = 'java25';
1921
public const JAVA_8 = 'java8';
2022
public const JAVA_8_AL_2 = 'java8.al2';
23+
public const JAVA_8_AL_2023 = 'java8.al2023';
2124
public const NODEJS = 'nodejs';
2225
public const NODEJS_10_X = 'nodejs10.x';
2326
public const NODEJS_12_X = 'nodejs12.x';
@@ -67,11 +70,14 @@ public static function exists(string $value): bool
6770
self::DOTNET_8 => true,
6871
self::GO_1_X => true,
6972
self::JAVA_11 => true,
73+
self::JAVA_11_AL_2023 => true,
7074
self::JAVA_17 => true,
75+
self::JAVA_17_AL_2023 => true,
7176
self::JAVA_21 => true,
7277
self::JAVA_25 => true,
7378
self::JAVA_8 => true,
7479
self::JAVA_8_AL_2 => true,
80+
self::JAVA_8_AL_2023 => true,
7581
self::NODEJS => true,
7682
self::NODEJS_10_X => true,
7783
self::NODEJS_12_X => true,

0 commit comments

Comments
 (0)