Skip to content

Commit a371aa0

Browse files
Update generated code (#1332)
* update generated code * Apply suggestions from code review Co-authored-by: Jérémy Derussé <[email protected]>
1 parent 3686750 commit a371aa0

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

src/Enum/TableStatus.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
* The current state of the table:.
77
*
88
* - `CREATING` - The table is being created.
9-
* - `UPDATING` - The table is being updated.
9+
* - `UPDATING` - The table/index configuration is being updated. The table/index remains available for data operations
10+
* when `UPDATING`.
1011
* - `DELETING` - The table is being deleted.
1112
* - `ACTIVE` - The table is ready for use.
1213
* - `INACCESSIBLE_ENCRYPTION_CREDENTIALS` - The KMS key used to encrypt the table in inaccessible. Table operations may

src/Exception/LimitExceededException.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@
77

88
/**
99
* There is no limit to the number of daily on-demand backups that can be taken.
10-
* Up to 500 simultaneous table operations are allowed per account. These operations include `CreateTable`,
11-
* `UpdateTable`, `DeleteTable`,`UpdateTimeToLive`, `RestoreTableFromBackup`, and `RestoreTableToPointInTime`.
12-
* The only exception is when you are creating a table with one or more secondary indexes. You can have up to 250 such
13-
* requests running at a time; however, if the table or index specifications are complex, DynamoDB might temporarily
14-
* reduce the number of concurrent operations.
10+
* For most purposes, up to 500 simultaneous table operations are allowed per account. These operations include
11+
* `CreateTable`, `UpdateTable`, `DeleteTable`,`UpdateTimeToLive`, `RestoreTableFromBackup`, and
12+
* `RestoreTableToPointInTime`.
13+
* When you are creating a table with one or more secondary indexes, you can have up to 250 such requests running at a
14+
* time. However, if the table or index specifications are complex, then DynamoDB might temporarily reduce the number of
15+
* concurrent operations.
16+
* When importing into DynamoDB, up to 50 simultaneous import table operations are allowed per account.
1517
* There is a soft account quota of 2,500 tables.
1618
*/
1719
final class LimitExceededException extends ClientException

src/Result/BatchWriteItemOutput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class BatchWriteItemOutput extends Result
1919
{
2020
/**
2121
* A map of tables and requests against those tables that were not processed. The `UnprocessedItems` value is in the
22-
* same form as `RequestItems`, so you can provide this value directly to a subsequent `BatchGetItem` operation. For
22+
* same form as `RequestItems`, so you can provide this value directly to a subsequent `BatchWriteItem` operation. For
2323
* more information, see `RequestItems` in the Request Parameters section.
2424
*/
2525
private $unprocessedItems;

0 commit comments

Comments
 (0)