Skip to content

Commit b71497a

Browse files
Update generated code (#2008)
* update generated code * Fix tests * Remove ResultWrapper for JSON * Update src/Service/CloudWatch/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 3405dcb commit b71497a

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
- AWS api-change: Launching Lambda Managed Instances - a new feature to run Lambda on EC2.
1414
- AWS api-change: Add DisallowedByVpcEncryptionControl to the LastUpdateStatusReasonCode and StateReasonCode enums to represent failures caused by VPC Encryption Controls.
1515
- AWS api-change: Added `eusc-de-east-1` region
16+
- AWS api-change: Add Dotnet 10 (dotnet10) support to AWS Lambda.
1617

1718
### Dependency bumped
1819

src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ final class Runtime
88
public const DOTNETCORE_2_0 = 'dotnetcore2.0';
99
public const DOTNETCORE_2_1 = 'dotnetcore2.1';
1010
public const DOTNETCORE_3_1 = 'dotnetcore3.1';
11+
public const DOTNET_10 = 'dotnet10';
1112
public const DOTNET_6 = 'dotnet6';
1213
public const DOTNET_8 = 'dotnet8';
1314
public const GO_1_X = 'go1.x';
@@ -56,6 +57,7 @@ public static function exists(string $value): bool
5657
self::DOTNETCORE_2_0 => true,
5758
self::DOTNETCORE_2_1 => true,
5859
self::DOTNETCORE_3_1 => true,
60+
self::DOTNET_10 => true,
5961
self::DOTNET_6 => true,
6062
self::DOTNET_8 => true,
6163
self::GO_1_X => true,

0 commit comments

Comments
 (0)