Skip to content

Commit 777fe45

Browse files
update generated code (#1187)
1 parent b3ba059 commit 777fe45

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
@@ -11,6 +11,7 @@
1111
- AWS api-change: Release Lambda event source filtering for SQS, Kinesis Streams, and DynamoDB Streams.
1212
- AWS api-change: Add support for Lambda Function URLs. Customers can use Function URLs to create built-in HTTPS endpoints on their functions.
1313
- AWS api-change: Added support for CLIENT_CERTIFICATE_TLS_AUTH and SERVER_ROOT_CA_CERTIFICATE as SourceAccessType for MSK and Kafka event source mappings.
14+
- AWS api-change: Lambda releases .NET 6 managed runtime to be available in all commercial regions.
1415

1516
## 1.5.0
1617

src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ final class Runtime
1111
public const DOTNETCORE_2_0 = 'dotnetcore2.0';
1212
public const DOTNETCORE_2_1 = 'dotnetcore2.1';
1313
public const DOTNETCORE_3_1 = 'dotnetcore3.1';
14+
public const DOTNET_6 = 'dotnet6';
1415
public const GO_1_X = 'go1.x';
1516
public const JAVA_11 = 'java11';
1617
public const JAVA_8 = 'java8';
@@ -40,6 +41,7 @@ public static function exists(string $value): bool
4041
self::DOTNETCORE_2_0 => true,
4142
self::DOTNETCORE_2_1 => true,
4243
self::DOTNETCORE_3_1 => true,
44+
self::DOTNET_6 => true,
4345
self::GO_1_X => true,
4446
self::JAVA_11 => true,
4547
self::JAVA_8 => true,

0 commit comments

Comments
 (0)