Skip to content

Commit

Permalink
Update generated code (#1694)
Browse files Browse the repository at this point in the history
update generated code
  • Loading branch information
async-aws-bot committed Apr 4, 2024
1 parent 462391e commit da0a13e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Added

- AWS api-change: Add Ruby 3.3 (ruby3.3) support to AWS Lambda

### Changed

- AWS enhancement: Documentation updates.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.4-dev"
"dev-master": "2.5-dev"
}
}
}
2 changes: 2 additions & 0 deletions src/Enum/Runtime.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ final class Runtime
public const RUBY_2_5 = 'ruby2.5';
public const RUBY_2_7 = 'ruby2.7';
public const RUBY_3_2 = 'ruby3.2';
public const RUBY_3_3 = 'ruby3.3';

public static function exists(string $value): bool
{
Expand Down Expand Up @@ -82,6 +83,7 @@ public static function exists(string $value): bool
self::RUBY_2_5 => true,
self::RUBY_2_7 => true,
self::RUBY_3_2 => true,
self::RUBY_3_3 => true,
][$value]);
}
}
2 changes: 1 addition & 1 deletion src/Input/UpdateFunctionConfigurationRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ final class UpdateFunctionConfigurationRequest extends Input
/**
* Container image configuration values [^1] that override the values in the container image Docker file.
*
* [^1]: https://docs.aws.amazon.com/lambda/latest/dg/images-parms.html
* [^1]: https://docs.aws.amazon.com/lambda/latest/dg/images-create.html#images-parms
*
* @var ImageConfig|null
*/
Expand Down

0 comments on commit da0a13e

Please sign in to comment.