We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc17ecd commit 99224deCopy full SHA for 99224de
src/DynamoDbClient.php
@@ -3,6 +3,8 @@
3
namespace AsyncAws\DynamoDb;
4
5
use AsyncAws\Core\AbstractApi;
6
+use AsyncAws\Core\AwsError\AwsErrorFactoryInterface;
7
+use AsyncAws\Core\AwsError\JsonRpcAwsErrorFactory;
8
use AsyncAws\Core\Configuration;
9
use AsyncAws\Core\RequestContext;
10
use AsyncAws\DynamoDb\Enum\BillingMode;
@@ -474,6 +476,11 @@ public function updateTimeToLive($input): UpdateTimeToLiveOutput
474
476
return new UpdateTimeToLiveOutput($response);
475
477
}
478
479
+ protected function getAwsErrorFactory(): AwsErrorFactoryInterface
480
+ {
481
+ return new JsonRpcAwsErrorFactory();
482
+ }
483
+
484
protected function getEndpointMetadata(?string $region): array
485
{
486
if (null === $region) {
0 commit comments