Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"variables": {
"${LATEST}": "3.394.10"
"${LATEST}": "3.394.11"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
4 changes: 4 additions & 0 deletions src/Service/Lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## NOT RELEASED

### Changed

- AWS enhancement: Documentation updates.

## 2.18.0

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@ final class UpdateFunctionConfigurationRequest extends Input
private $description;

/**
* The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds.
* The maximum allowed value is 900 seconds. For more information, see Lambda execution environment [^1].
* The amount of time (in seconds) that Lambda allows a function to run before stopping it. The default is 3 seconds,
* and the maximum allowed value is 900 seconds. For functions using Lambda Managed Instances, asynchronous invocations
* and event source mapping invocations (except Amazon MQ and Amazon DocumentDB) support a maximum allowed value of
* 5,400 seconds (90 minutes). For more information, see Lambda execution environment [^1].
*
* [^1]: https://docs.aws.amazon.com/lambda/latest/dg/runtimes-context.html
*
Expand Down
Loading