Skip to content

Commit 8a6983e

Browse files
update generated code (#1178)
1 parent 4096275 commit 8a6983e

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-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 enhancement: Documentation updates.
8+
59
## 1.2.0
610

711
### Added

src/DynamoDbClient.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,12 @@ public function batchGetItem($input): BatchGetItemOutput
105105

106106
/**
107107
* The `BatchWriteItem` operation puts or deletes multiple items in one or more tables. A single call to
108-
* `BatchWriteItem` can write up to 16 MB of data, which can comprise as many as 25 put or delete requests. Individual
109-
* items to be written can be as large as 400 KB.
108+
* `BatchWriteItem` can transmit up to 16MB of data over the network, consisting of up to 25 item put or delete
109+
* operations. While individual items can be up to 400 KB once stored, it's important to note that an item's
110+
* representation might be greater than 400KB while being sent in DynamoDB's JSON format for the API call. For more
111+
* details on this distinction, see Naming Rules and Data Types.
110112
*
113+
* @see https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html
111114
* @see https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_BatchWriteItem.html
112115
* @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-dynamodb-2012-08-10.html#batchwriteitem
113116
*

0 commit comments

Comments
 (0)