Skip to content

Commit 9f9458b

Browse files
Update generated code (#1237)
* update generated code * Update src/Service/Lambda/CHANGELOG.md Co-authored-by: Jérémy Derussé <jeremy@derusse.com>
1 parent 050644c commit 9f9458b

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
@@ -5,6 +5,7 @@
55
### Added
66

77
- AWS api-change: Adds support for increased ephemeral storage (/tmp) up to 10GB for Lambda functions. Customers can now provision up to 10 GB of ephemeral storage per function instance, a 20x increase over the previous limit of 512 MB.
8+
- AWS api-change: Added NodeJs 16 managed runtime
89

910
## 1.6.0
1011

src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ final class Runtime
2020
public const NODEJS_10_X = 'nodejs10.x';
2121
public const NODEJS_12_X = 'nodejs12.x';
2222
public const NODEJS_14_X = 'nodejs14.x';
23+
public const NODEJS_16_X = 'nodejs16.x';
2324
public const NODEJS_4_3 = 'nodejs4.3';
2425
public const NODEJS_4_3_EDGE = 'nodejs4.3-edge';
2526
public const NODEJS_6_10 = 'nodejs6.10';
@@ -50,6 +51,7 @@ public static function exists(string $value): bool
5051
self::NODEJS_10_X => true,
5152
self::NODEJS_12_X => true,
5253
self::NODEJS_14_X => true,
54+
self::NODEJS_16_X => true,
5355
self::NODEJS_4_3 => true,
5456
self::NODEJS_4_3_EDGE => true,
5557
self::NODEJS_6_10 => true,

0 commit comments

Comments
 (0)