@@ -214,6 +214,8 @@ public function batchGetItem($input): BatchGetItemOutput
214214 * - There are more than 25 requests in the batch.
215215 * - Any individual item in a batch exceeds 400 KB.
216216 * - The total request size exceeds 16 MB.
217+ * - Any individual items with keys exceeding the key length limits. For a partition key, the limit is 2048 bytes and
218+ * for a sort key, the limit is 1024 bytes.
217219 *
218220 * [^1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/HowItWorks.NamingRulesDataTypes.html
219221 * [^2]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/ErrorHandling.html#Programming.Errors.BatchOperations
@@ -362,7 +364,7 @@ public function deleteItem($input): DeleteItemOutput
362364 * specified table does not exist, DynamoDB returns a `ResourceNotFoundException`. If table is already in the `DELETING`
363365 * state, no error is returned.
364366 *
365- * ! This operation only applies to Version 2019.11.21 (Current) [^1] of global tables .
367+ * ! For global tables, this operation only applies to global tables using Version 2019.11.21 (Current version) .
366368 *
367369 * > DynamoDB might continue to accept data read and write operations, such as `GetItem` and `PutItem`, on a table in
368370 * > the `DELETING` state until the table deletion is complete.
@@ -374,8 +376,6 @@ public function deleteItem($input): DeleteItemOutput
374376 *
375377 * Use the `DescribeTable` action to check the status of the table.
376378 *
377- * [^1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
378- *
379379 * @see https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_DeleteTable.html
380380 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-dynamodb-2012-08-10.html#deletetable
381381 *
@@ -427,15 +427,13 @@ public function describeEndpoints($input = []): DescribeEndpointsResponse
427427 * Returns information about the table, including the current status of the table, when it was created, the primary key
428428 * schema, and any indexes on the table.
429429 *
430- * ! This operation only applies to Version 2019.11.21 (Current) [^1] of global tables .
430+ * ! For global tables, this operation only applies to global tables using Version 2019.11.21 (Current version) .
431431 *
432432 * > If you issue a `DescribeTable` request immediately after a `CreateTable` request, DynamoDB might return a
433433 * > `ResourceNotFoundException`. This is because `DescribeTable` uses an eventually consistent query, and the metadata
434434 * > for your table might not be available at that moment. Wait for a few seconds, and then try the `DescribeTable`
435435 * > request again.
436436 *
437- * [^1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
438- *
439437 * @see https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_DescribeTable.html
440438 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-dynamodb-2012-08-10.html#describetable
441439 *
@@ -969,7 +967,7 @@ public function updateItem($input): UpdateItemOutput
969967 * Modifies the provisioned throughput settings, global secondary indexes, or DynamoDB Streams settings for a given
970968 * table.
971969 *
972- * ! This operation only applies to Version 2019.11.21 (Current) [^1] of global tables .
970+ * ! For global tables, this operation only applies to global tables using Version 2019.11.21 (Current version) .
973971 *
974972 * You can only perform one of the following operations at once:
975973 *
@@ -982,8 +980,6 @@ public function updateItem($input): UpdateItemOutput
982980 * `UPDATING`. While it's `UPDATING`, you can't issue another `UpdateTable` request. When the table returns to the
983981 * `ACTIVE` state, the `UpdateTable` operation is complete.
984982 *
985- * [^1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.V2.html
986- *
987983 * @see https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html
988984 * @see https://docs.aws.amazon.com/aws-sdk-php/v3/api/api-dynamodb-2012-08-10.html#updatetable
989985 *
0 commit comments