Skip to content

Commit da0a13e

Browse files
Update generated code (#1694)
update generated code
1 parent 462391e commit da0a13e

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-2
lines changed

CHANGELOG.md

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

33
## NOT RELEASED
44

5+
### Added
6+
7+
- AWS api-change: Add Ruby 3.3 (ruby3.3) support to AWS Lambda
8+
59
### Changed
610

711
- AWS enhancement: Documentation updates.

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"extra": {
3030
"branch-alias": {
31-
"dev-master": "2.4-dev"
31+
"dev-master": "2.5-dev"
3232
}
3333
}
3434
}

src/Enum/Runtime.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ final class Runtime
4141
public const RUBY_2_5 = 'ruby2.5';
4242
public const RUBY_2_7 = 'ruby2.7';
4343
public const RUBY_3_2 = 'ruby3.2';
44+
public const RUBY_3_3 = 'ruby3.3';
4445

4546
public static function exists(string $value): bool
4647
{
@@ -82,6 +83,7 @@ public static function exists(string $value): bool
8283
self::RUBY_2_5 => true,
8384
self::RUBY_2_7 => true,
8485
self::RUBY_3_2 => true,
86+
self::RUBY_3_3 => true,
8587
][$value]);
8688
}
8789
}

src/Input/UpdateFunctionConfigurationRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ final class UpdateFunctionConfigurationRequest extends Input
174174
/**
175175
* Container image configuration values [^1] that override the values in the container image Docker file.
176176
*
177-
* [^1]: https://docs.aws.amazon.com/lambda/latest/dg/images-parms.html
177+
* [^1]: https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms
178178
*
179179
* @var ImageConfig|null
180180
*/

0 commit comments

Comments
 (0)