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.321.4"
"${LATEST}": "3.321.7"
},
"endpoints": "https://raw.githubusercontent.com/aws/aws-sdk-php/${LATEST}/src/data/endpoints.json",
"services": {
Expand Down
9 changes: 7 additions & 2 deletions src/Service/DynamoDb/src/Exception/ResourceInUseException.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@
use AsyncAws\Core\Exception\Http\ClientException;

/**
* The operation conflicts with the resource's availability. For example, you attempted to recreate an existing table,
* or tried to delete a table currently in the `CREATING` state.
* The operation conflicts with the resource's availability. For example:
*
* - You attempted to recreate an existing table.
* - You tried to delete a table currently in the `CREATING` state.
* - You tried to update a resource that was already being updated.
*
* When appropriate, wait for the ongoing update to complete and attempt the request again.
*/
final class ResourceInUseException extends ClientException
{
Expand Down
Loading