Skip to content

Commit 2c5797c

Browse files
Update generated code (#1392)
* update generated code * Update src/Service/Lambda/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <jeremy@derusse.com>
1 parent 522e0ad commit 2c5797c

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
@@ -7,6 +7,7 @@
77
- AWS enhancement: Documentation updates.
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.
10+
- AWS api-change: Add Python 3.10 (python3.10) support to AWS Lambda
1011

1112
## 1.8.0
1213

src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ final class Runtime
3333
public const PROVIDED = 'provided';
3434
public const PROVIDED_AL_2 = 'provided.al2';
3535
public const PYTHON_2_7 = 'python2.7';
36+
public const PYTHON_3_10 = 'python3.10';
3637
public const PYTHON_3_6 = 'python3.6';
3738
public const PYTHON_3_7 = 'python3.7';
3839
public const PYTHON_3_8 = 'python3.8';
@@ -65,6 +66,7 @@ public static function exists(string $value): bool
6566
self::PROVIDED => true,
6667
self::PROVIDED_AL_2 => true,
6768
self::PYTHON_2_7 => true,
69+
self::PYTHON_3_10 => true,
6870
self::PYTHON_3_6 => true,
6971
self::PYTHON_3_7 => true,
7072
self::PYTHON_3_8 => true,

0 commit comments

Comments
 (0)