Skip to content

Commit 5194e96

Browse files
Update generated code (#1439)
* update generated code * Update src/Service/Rekognition/CHANGELOG.md --------- Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 0abebb2 commit 5194e96

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

src/DynamoDbClient.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,10 @@ class DynamoDbClient extends AbstractApi
8888
* requested items by primary key.
8989
*
9090
* A single operation can retrieve up to 16 MB of data, which can contain as many as 100 items. `BatchGetItem` returns a
91-
* partial result if the response size limit is exceeded, the table's provisioned throughput is exceeded, or an internal
92-
* processing failure occurs. If a partial result is returned, the operation returns a value for `UnprocessedKeys`. You
93-
* can use this value to retry the operation starting with the next item to get.
91+
* partial result if the response size limit is exceeded, the table's provisioned throughput is exceeded, more than 1MB
92+
* per partition is requested, or an internal processing failure occurs. If a partial result is returned, the operation
93+
* returns a value for `UnprocessedKeys`. You can use this value to retry the operation starting with the next item to
94+
* get.
9495
*
9596
* ! If you request more than 100 items, `BatchGetItem` returns a `ValidationException` with the message "Too many items
9697
* ! requested for the BatchGetItem call."

src/Exception/LimitExceededException.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@
1919
* When importing into DynamoDB, up to 50 simultaneous import table operations are allowed per account.
2020
*
2121
* There is a soft account quota of 2,500 tables.
22+
*
23+
* GetRecords was called with a value of more than 1000 for the limit request parameter.
24+
*
25+
* More than 2 processes are reading from the same streams shard at the same time. Exceeding this limit may result in
26+
* request throttling.
2227
*/
2328
final class LimitExceededException extends ClientException
2429
{

src/ValueObject/ProvisionedThroughput.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ final class ProvisionedThroughput
2121
*
2222
* If read/write capacity mode is `PAY_PER_REQUEST` the value is set to 0.
2323
*
24-
* [^1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#ProvisionedThroughput
24+
* [^1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughput.html
2525
*/
2626
private $readCapacityUnits;
2727

@@ -31,7 +31,7 @@ final class ProvisionedThroughput
3131
*
3232
* If read/write capacity mode is `PAY_PER_REQUEST` the value is set to 0.
3333
*
34-
* [^1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/WorkingWithTables.html#ProvisionedThroughput
34+
* [^1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ProvisionedThroughput.html
3535
*/
3636
private $writeCapacityUnits;
3737

0 commit comments

Comments
 (0)