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.342.20"
"${LATEST}": "3.342.21"
},
"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/EventBridge/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.

## 1.7.0

### Added
Expand Down
8 changes: 4 additions & 4 deletions src/Service/EventBridge/src/EventBridgeClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@ class EventBridgeClient extends AbstractApi
/**
* Sends custom events to Amazon EventBridge so that they can be matched to rules.
*
* The maximum size for a PutEvents event entry is 256 KB. Entry size is calculated including the event and any
* necessary characters and keys of the JSON representation of the event. To learn more, see Calculating PutEvents event
* entry size [^1] in the **Amazon EventBridge User Guide**
* You can batch multiple event entries into one request for efficiency. However, the total entry size must be less than
* 256KB. You can calculate the entry size before you send the events. For more information, see Calculating PutEvents
* event entry size [^1] in the **Amazon EventBridge User Guide**.
*
* PutEvents accepts the data in JSON format. For the JSON number (integer) data type, the constraints are: a minimum
* value of -9,223,372,036,854,775,808 and a maximum value of 9,223,372,036,854,775,807.
*
* > PutEvents will only process nested JSON up to 1000 levels deep.
*
* [^1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-putevent-size.html
* [^1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-putevents.html#eb-putevent-size
*
* @see https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-events-2015-10-07.html#putevents
Expand Down
Loading