Skip to content

Commit 2765079

Browse files
Update generated code (#1064)
* update generated code * Apply suggestions from code review Co-authored-by: Jérémy Derussé <jeremy@derusse.com>
1 parent 1e1484c commit 2765079

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
- AWS enhancement: Documentation updates for Amazon Lambda.
1212

13+
### Added
14+
15+
- AWS api-change: Lambda Python 3.9 runtime launch
16+
1317
## 1.4.0
1418

1519
### Added

src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ final class Runtime
2929
public const PYTHON_3_6 = 'python3.6';
3030
public const PYTHON_3_7 = 'python3.7';
3131
public const PYTHON_3_8 = 'python3.8';
32+
public const PYTHON_3_9 = 'python3.9';
3233
public const RUBY_2_5 = 'ruby2.5';
3334
public const RUBY_2_7 = 'ruby2.7';
3435

@@ -57,6 +58,7 @@ public static function exists(string $value): bool
5758
self::PYTHON_3_6 => true,
5859
self::PYTHON_3_7 => true,
5960
self::PYTHON_3_8 => true,
61+
self::PYTHON_3_9 => true,
6062
self::RUBY_2_5 => true,
6163
self::RUBY_2_7 => true,
6264
][$value]);

src/Input/ListFunctionsRequest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
final class ListFunctionsRequest extends Input
1212
{
1313
/**
14-
* For Lambda@Edge functions, the Region of the master function. For example, `us-east-1` filters the list of functions
15-
* to only include Lambda@Edge functions replicated from a master function in US East (N. Virginia). If specified, you
16-
* must set `FunctionVersion` to `ALL`.
14+
* For Lambda@Edge functions, the Amazon Web Services Region of the master function. For example, `us-east-1` filters
15+
* the list of functions to only include Lambda@Edge functions replicated from a master function in US East (N.
16+
* Virginia). If specified, you must set `FunctionVersion` to `ALL`.
1717
*
1818
* @var string|null
1919
*/

0 commit comments

Comments
 (0)