From cc02d34e5fa9529f24826a50e77ced22a71fad4e Mon Sep 17 00:00:00 2001 From: AsyncAws Bot Date: Tue, 10 Sep 2024 06:28:01 +0000 Subject: [PATCH] update generated code --- manifest.json | 2 +- .../DynamoDb/src/Exception/ResourceInUseException.php | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 0b7064938..3217ddadb 100644 --- a/manifest.json +++ b/manifest.json @@ -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": { diff --git a/src/Service/DynamoDb/src/Exception/ResourceInUseException.php b/src/Service/DynamoDb/src/Exception/ResourceInUseException.php index 567f2af91..0e68162b3 100644 --- a/src/Service/DynamoDb/src/Exception/ResourceInUseException.php +++ b/src/Service/DynamoDb/src/Exception/ResourceInUseException.php @@ -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 {