@depup/aws-sdk__client-dynamodb 3.1005.0-depup.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +31 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/endpointResolver.js +27 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1667 -0
- package/dist-cjs/models/DynamoDBServiceException.js +12 -0
- package/dist-cjs/models/errors.js +478 -0
- package/dist-cjs/runtimeConfig.browser.js +41 -0
- package/dist-cjs/runtimeConfig.js +57 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +46 -0
- package/dist-cjs/schemas/schemas_0.js +2390 -0
- package/dist-es/DynamoDB.js +149 -0
- package/dist-es/DynamoDBClient.js +55 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/BatchExecuteStatementCommand.js +16 -0
- package/dist-es/commands/BatchGetItemCommand.js +19 -0
- package/dist-es/commands/BatchWriteItemCommand.js +19 -0
- package/dist-es/commands/CreateBackupCommand.js +19 -0
- package/dist-es/commands/CreateGlobalTableCommand.js +19 -0
- package/dist-es/commands/CreateTableCommand.js +19 -0
- package/dist-es/commands/DeleteBackupCommand.js +19 -0
- package/dist-es/commands/DeleteItemCommand.js +19 -0
- package/dist-es/commands/DeleteResourcePolicyCommand.js +19 -0
- package/dist-es/commands/DeleteTableCommand.js +19 -0
- package/dist-es/commands/DescribeBackupCommand.js +19 -0
- package/dist-es/commands/DescribeContinuousBackupsCommand.js +19 -0
- package/dist-es/commands/DescribeContributorInsightsCommand.js +19 -0
- package/dist-es/commands/DescribeEndpointsCommand.js +16 -0
- package/dist-es/commands/DescribeExportCommand.js +19 -0
- package/dist-es/commands/DescribeGlobalTableCommand.js +19 -0
- package/dist-es/commands/DescribeGlobalTableSettingsCommand.js +19 -0
- package/dist-es/commands/DescribeImportCommand.js +19 -0
- package/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +19 -0
- package/dist-es/commands/DescribeLimitsCommand.js +16 -0
- package/dist-es/commands/DescribeTableCommand.js +19 -0
- package/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +19 -0
- package/dist-es/commands/DescribeTimeToLiveCommand.js +19 -0
- package/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +19 -0
- package/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +19 -0
- package/dist-es/commands/ExecuteStatementCommand.js +16 -0
- package/dist-es/commands/ExecuteTransactionCommand.js +16 -0
- package/dist-es/commands/ExportTableToPointInTimeCommand.js +19 -0
- package/dist-es/commands/GetItemCommand.js +19 -0
- package/dist-es/commands/GetResourcePolicyCommand.js +19 -0
- package/dist-es/commands/ImportTableCommand.js +19 -0
- package/dist-es/commands/ListBackupsCommand.js +19 -0
- package/dist-es/commands/ListContributorInsightsCommand.js +19 -0
- package/dist-es/commands/ListExportsCommand.js +19 -0
- package/dist-es/commands/ListGlobalTablesCommand.js +16 -0
- package/dist-es/commands/ListImportsCommand.js +19 -0
- package/dist-es/commands/ListTablesCommand.js +16 -0
- package/dist-es/commands/ListTagsOfResourceCommand.js +19 -0
- package/dist-es/commands/PutItemCommand.js +19 -0
- package/dist-es/commands/PutResourcePolicyCommand.js +19 -0
- package/dist-es/commands/QueryCommand.js +19 -0
- package/dist-es/commands/RestoreTableFromBackupCommand.js +19 -0
- package/dist-es/commands/RestoreTableToPointInTimeCommand.js +19 -0
- package/dist-es/commands/ScanCommand.js +19 -0
- package/dist-es/commands/TagResourceCommand.js +19 -0
- package/dist-es/commands/TransactGetItemsCommand.js +19 -0
- package/dist-es/commands/TransactWriteItemsCommand.js +19 -0
- package/dist-es/commands/UntagResourceCommand.js +19 -0
- package/dist-es/commands/UpdateContinuousBackupsCommand.js +19 -0
- package/dist-es/commands/UpdateContributorInsightsCommand.js +19 -0
- package/dist-es/commands/UpdateGlobalTableCommand.js +19 -0
- package/dist-es/commands/UpdateGlobalTableSettingsCommand.js +19 -0
- package/dist-es/commands/UpdateItemCommand.js +19 -0
- package/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +19 -0
- package/dist-es/commands/UpdateTableCommand.js +19 -0
- package/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +19 -0
- package/dist-es/commands/UpdateTimeToLiveCommand.js +19 -0
- package/dist-es/commands/index.js +57 -0
- package/dist-es/endpoint/EndpointParameters.js +15 -0
- package/dist-es/endpoint/endpointResolver.js +23 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +10 -0
- package/dist-es/models/DynamoDBServiceException.js +8 -0
- package/dist-es/models/enums.js +245 -0
- package/dist-es/models/errors.js +440 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListContributorInsightsPaginator.js +4 -0
- package/dist-es/pagination/ListExportsPaginator.js +4 -0
- package/dist-es/pagination/ListImportsPaginator.js +4 -0
- package/dist-es/pagination/ListTablesPaginator.js +4 -0
- package/dist-es/pagination/QueryPaginator.js +4 -0
- package/dist-es/pagination/ScanPaginator.js +4 -0
- package/dist-es/pagination/index.js +7 -0
- package/dist-es/runtimeConfig.browser.js +36 -0
- package/dist-es/runtimeConfig.js +52 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +42 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +2381 -0
- package/dist-es/waiters/index.js +6 -0
- package/dist-es/waiters/waitForContributorInsightsEnabled.js +40 -0
- package/dist-es/waiters/waitForExportCompleted.js +40 -0
- package/dist-es/waiters/waitForImportCompleted.js +49 -0
- package/dist-es/waiters/waitForKinesisStreamingDestinationActive.js +49 -0
- package/dist-es/waiters/waitForTableExists.js +34 -0
- package/dist-es/waiters/waitForTableNotExists.js +25 -0
- package/dist-types/DynamoDB.d.ts +512 -0
- package/dist-types/DynamoDBClient.d.ts +272 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/BatchExecuteStatementCommand.d.ts +234 -0
- package/dist-types/commands/BatchGetItemCommand.d.ts +366 -0
- package/dist-types/commands/BatchWriteItemCommand.d.ts +414 -0
- package/dist-types/commands/CreateBackupCommand.d.ts +151 -0
- package/dist-types/commands/CreateGlobalTableCommand.d.ts +211 -0
- package/dist-types/commands/CreateTableCommand.d.ts +394 -0
- package/dist-types/commands/DeleteBackupCommand.d.ts +197 -0
- package/dist-types/commands/DeleteItemCommand.d.ts +296 -0
- package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +145 -0
- package/dist-types/commands/DeleteTableCommand.d.ts +338 -0
- package/dist-types/commands/DescribeBackupCommand.d.ts +175 -0
- package/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +104 -0
- package/dist-types/commands/DescribeContributorInsightsCommand.d.ts +94 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +78 -0
- package/dist-types/commands/DescribeExportCommand.d.ts +124 -0
- package/dist-types/commands/DescribeGlobalTableCommand.d.ts +133 -0
- package/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +178 -0
- package/dist-types/commands/DescribeImportCommand.d.ts +165 -0
- package/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +91 -0
- package/dist-types/commands/DescribeLimitsCommand.d.ts +165 -0
- package/dist-types/commands/DescribeTableCommand.d.ts +269 -0
- package/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +164 -0
- package/dist-types/commands/DescribeTimeToLiveCommand.d.ts +86 -0
- package/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +128 -0
- package/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +130 -0
- package/dist-types/commands/ExecuteStatementCommand.d.ts +251 -0
- package/dist-types/commands/ExecuteTransactionCommand.d.ts +534 -0
- package/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +152 -0
- package/dist-types/commands/GetItemCommand.d.ts +264 -0
- package/dist-types/commands/GetResourcePolicyCommand.d.ts +124 -0
- package/dist-types/commands/ImportTableCommand.d.ts +275 -0
- package/dist-types/commands/ListBackupsCommand.d.ts +109 -0
- package/dist-types/commands/ListContributorInsightsCommand.d.ts +92 -0
- package/dist-types/commands/ListExportsCommand.d.ts +104 -0
- package/dist-types/commands/ListGlobalTablesCommand.d.ts +95 -0
- package/dist-types/commands/ListImportsCommand.d.ts +110 -0
- package/dist-types/commands/ListTablesCommand.d.ts +103 -0
- package/dist-types/commands/ListTagsOfResourceCommand.d.ts +93 -0
- package/dist-types/commands/PutItemCommand.d.ts +315 -0
- package/dist-types/commands/PutResourcePolicyCommand.d.ts +147 -0
- package/dist-types/commands/QueryCommand.d.ts +338 -0
- package/dist-types/commands/RestoreTableFromBackupCommand.d.ts +373 -0
- package/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +407 -0
- package/dist-types/commands/ScanCommand.d.ts +337 -0
- package/dist-types/commands/TagResourceCommand.d.ts +145 -0
- package/dist-types/commands/TransactGetItemsCommand.d.ts +496 -0
- package/dist-types/commands/TransactWriteItemsCommand.d.ts +659 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +140 -0
- package/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +111 -0
- package/dist-types/commands/UpdateContributorInsightsCommand.d.ts +93 -0
- package/dist-types/commands/UpdateGlobalTableCommand.d.ts +179 -0
- package/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +286 -0
- package/dist-types/commands/UpdateItemCommand.d.ts +323 -0
- package/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +127 -0
- package/dist-types/commands/UpdateTableCommand.d.ts +458 -0
- package/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +246 -0
- package/dist-types/commands/UpdateTimeToLiveCommand.d.ts +149 -0
- package/dist-types/commands/index.d.ts +57 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +64 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +34 -0
- package/dist-types/models/DynamoDBServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +589 -0
- package/dist-types/models/errors.d.ts +803 -0
- package/dist-types/models/models_0.d.ts +10010 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListContributorInsightsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListImportsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
- package/dist-types/pagination/QueryPaginator.d.ts +7 -0
- package/dist-types/pagination/ScanPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +7 -0
- package/dist-types/runtimeConfig.browser.d.ts +60 -0
- package/dist-types/runtimeConfig.d.ts +60 -0
- package/dist-types/runtimeConfig.native.d.ts +59 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +325 -0
- package/dist-types/ts3.4/DynamoDB.d.ts +1102 -0
- package/dist-types/ts3.4/DynamoDBClient.d.ts +472 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetItemCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ImportTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListImportsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutItemCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/QueryCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ScanCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateKinesisStreamingDestinationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +57 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +65 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +13 -0
- package/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +313 -0
- package/dist-types/ts3.4/models/errors.d.ts +286 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1557 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListContributorInsightsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -0
- package/dist-types/ts3.4/pagination/index.d.ts +7 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +114 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +111 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +118 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +325 -0
- package/dist-types/ts3.4/waiters/index.d.ts +6 -0
- package/dist-types/ts3.4/waiters/waitForContributorInsightsEnabled.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForExportCompleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForImportCompleted.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForKinesisStreamingDestinationActive.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForTableExists.d.ts +11 -0
- package/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +6 -0
- package/dist-types/waiters/waitForContributorInsightsEnabled.d.ts +14 -0
- package/dist-types/waiters/waitForExportCompleted.d.ts +14 -0
- package/dist-types/waiters/waitForImportCompleted.d.ts +14 -0
- package/dist-types/waiters/waitForKinesisStreamingDestinationActive.d.ts +14 -0
- package/dist-types/waiters/waitForTableExists.d.ts +14 -0
- package/dist-types/waiters/waitForTableNotExists.d.ts +14 -0
- package/package.json +130 -0
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { DynamoDBServiceException as __BaseException } from "./DynamoDBServiceException";
|
|
3
|
+
import {
|
|
4
|
+
AttributeValue,
|
|
5
|
+
CancellationReason,
|
|
6
|
+
ThrottlingReason,
|
|
7
|
+
} from "./models_0";
|
|
8
|
+
export declare class BackupInUseException extends __BaseException {
|
|
9
|
+
readonly name: "BackupInUseException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
constructor(
|
|
12
|
+
opts: __ExceptionOptionType<BackupInUseException, __BaseException>
|
|
13
|
+
);
|
|
14
|
+
}
|
|
15
|
+
export declare class BackupNotFoundException extends __BaseException {
|
|
16
|
+
readonly name: "BackupNotFoundException";
|
|
17
|
+
readonly $fault: "client";
|
|
18
|
+
constructor(
|
|
19
|
+
opts: __ExceptionOptionType<BackupNotFoundException, __BaseException>
|
|
20
|
+
);
|
|
21
|
+
}
|
|
22
|
+
export declare class InternalServerError extends __BaseException {
|
|
23
|
+
readonly name: "InternalServerError";
|
|
24
|
+
readonly $fault: "server";
|
|
25
|
+
constructor(
|
|
26
|
+
opts: __ExceptionOptionType<InternalServerError, __BaseException>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
export declare class RequestLimitExceeded extends __BaseException {
|
|
30
|
+
readonly name: "RequestLimitExceeded";
|
|
31
|
+
readonly $fault: "client";
|
|
32
|
+
ThrottlingReasons?: ThrottlingReason[] | undefined;
|
|
33
|
+
constructor(
|
|
34
|
+
opts: __ExceptionOptionType<RequestLimitExceeded, __BaseException>
|
|
35
|
+
);
|
|
36
|
+
}
|
|
37
|
+
export declare class ThrottlingException extends __BaseException {
|
|
38
|
+
readonly name: "ThrottlingException";
|
|
39
|
+
readonly $fault: "client";
|
|
40
|
+
throttlingReasons?: ThrottlingReason[] | undefined;
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
45
|
+
export declare class InvalidEndpointException extends __BaseException {
|
|
46
|
+
readonly name: "InvalidEndpointException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
Message?: string | undefined;
|
|
49
|
+
constructor(
|
|
50
|
+
opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>
|
|
51
|
+
);
|
|
52
|
+
}
|
|
53
|
+
export declare class ProvisionedThroughputExceededException extends __BaseException {
|
|
54
|
+
readonly name: "ProvisionedThroughputExceededException";
|
|
55
|
+
readonly $fault: "client";
|
|
56
|
+
ThrottlingReasons?: ThrottlingReason[] | undefined;
|
|
57
|
+
constructor(
|
|
58
|
+
opts: __ExceptionOptionType<
|
|
59
|
+
ProvisionedThroughputExceededException,
|
|
60
|
+
__BaseException
|
|
61
|
+
>
|
|
62
|
+
);
|
|
63
|
+
}
|
|
64
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
65
|
+
readonly name: "ResourceNotFoundException";
|
|
66
|
+
readonly $fault: "client";
|
|
67
|
+
constructor(
|
|
68
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
69
|
+
);
|
|
70
|
+
}
|
|
71
|
+
export declare class ItemCollectionSizeLimitExceededException extends __BaseException {
|
|
72
|
+
readonly name: "ItemCollectionSizeLimitExceededException";
|
|
73
|
+
readonly $fault: "client";
|
|
74
|
+
constructor(
|
|
75
|
+
opts: __ExceptionOptionType<
|
|
76
|
+
ItemCollectionSizeLimitExceededException,
|
|
77
|
+
__BaseException
|
|
78
|
+
>
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
export declare class ReplicatedWriteConflictException extends __BaseException {
|
|
82
|
+
readonly name: "ReplicatedWriteConflictException";
|
|
83
|
+
readonly $fault: "client";
|
|
84
|
+
$retryable: {};
|
|
85
|
+
constructor(
|
|
86
|
+
opts: __ExceptionOptionType<
|
|
87
|
+
ReplicatedWriteConflictException,
|
|
88
|
+
__BaseException
|
|
89
|
+
>
|
|
90
|
+
);
|
|
91
|
+
}
|
|
92
|
+
export declare class ContinuousBackupsUnavailableException extends __BaseException {
|
|
93
|
+
readonly name: "ContinuousBackupsUnavailableException";
|
|
94
|
+
readonly $fault: "client";
|
|
95
|
+
constructor(
|
|
96
|
+
opts: __ExceptionOptionType<
|
|
97
|
+
ContinuousBackupsUnavailableException,
|
|
98
|
+
__BaseException
|
|
99
|
+
>
|
|
100
|
+
);
|
|
101
|
+
}
|
|
102
|
+
export declare class LimitExceededException extends __BaseException {
|
|
103
|
+
readonly name: "LimitExceededException";
|
|
104
|
+
readonly $fault: "client";
|
|
105
|
+
constructor(
|
|
106
|
+
opts: __ExceptionOptionType<LimitExceededException, __BaseException>
|
|
107
|
+
);
|
|
108
|
+
}
|
|
109
|
+
export declare class TableInUseException extends __BaseException {
|
|
110
|
+
readonly name: "TableInUseException";
|
|
111
|
+
readonly $fault: "client";
|
|
112
|
+
constructor(
|
|
113
|
+
opts: __ExceptionOptionType<TableInUseException, __BaseException>
|
|
114
|
+
);
|
|
115
|
+
}
|
|
116
|
+
export declare class TableNotFoundException extends __BaseException {
|
|
117
|
+
readonly name: "TableNotFoundException";
|
|
118
|
+
readonly $fault: "client";
|
|
119
|
+
constructor(
|
|
120
|
+
opts: __ExceptionOptionType<TableNotFoundException, __BaseException>
|
|
121
|
+
);
|
|
122
|
+
}
|
|
123
|
+
export declare class GlobalTableAlreadyExistsException extends __BaseException {
|
|
124
|
+
readonly name: "GlobalTableAlreadyExistsException";
|
|
125
|
+
readonly $fault: "client";
|
|
126
|
+
constructor(
|
|
127
|
+
opts: __ExceptionOptionType<
|
|
128
|
+
GlobalTableAlreadyExistsException,
|
|
129
|
+
__BaseException
|
|
130
|
+
>
|
|
131
|
+
);
|
|
132
|
+
}
|
|
133
|
+
export declare class ResourceInUseException extends __BaseException {
|
|
134
|
+
readonly name: "ResourceInUseException";
|
|
135
|
+
readonly $fault: "client";
|
|
136
|
+
constructor(
|
|
137
|
+
opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
|
|
138
|
+
);
|
|
139
|
+
}
|
|
140
|
+
export declare class TransactionConflictException extends __BaseException {
|
|
141
|
+
readonly name: "TransactionConflictException";
|
|
142
|
+
readonly $fault: "client";
|
|
143
|
+
constructor(
|
|
144
|
+
opts: __ExceptionOptionType<TransactionConflictException, __BaseException>
|
|
145
|
+
);
|
|
146
|
+
}
|
|
147
|
+
export declare class PolicyNotFoundException extends __BaseException {
|
|
148
|
+
readonly name: "PolicyNotFoundException";
|
|
149
|
+
readonly $fault: "client";
|
|
150
|
+
constructor(
|
|
151
|
+
opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>
|
|
152
|
+
);
|
|
153
|
+
}
|
|
154
|
+
export declare class ExportNotFoundException extends __BaseException {
|
|
155
|
+
readonly name: "ExportNotFoundException";
|
|
156
|
+
readonly $fault: "client";
|
|
157
|
+
constructor(
|
|
158
|
+
opts: __ExceptionOptionType<ExportNotFoundException, __BaseException>
|
|
159
|
+
);
|
|
160
|
+
}
|
|
161
|
+
export declare class GlobalTableNotFoundException extends __BaseException {
|
|
162
|
+
readonly name: "GlobalTableNotFoundException";
|
|
163
|
+
readonly $fault: "client";
|
|
164
|
+
constructor(
|
|
165
|
+
opts: __ExceptionOptionType<GlobalTableNotFoundException, __BaseException>
|
|
166
|
+
);
|
|
167
|
+
}
|
|
168
|
+
export declare class ImportNotFoundException extends __BaseException {
|
|
169
|
+
readonly name: "ImportNotFoundException";
|
|
170
|
+
readonly $fault: "client";
|
|
171
|
+
constructor(
|
|
172
|
+
opts: __ExceptionOptionType<ImportNotFoundException, __BaseException>
|
|
173
|
+
);
|
|
174
|
+
}
|
|
175
|
+
export declare class DuplicateItemException extends __BaseException {
|
|
176
|
+
readonly name: "DuplicateItemException";
|
|
177
|
+
readonly $fault: "client";
|
|
178
|
+
constructor(
|
|
179
|
+
opts: __ExceptionOptionType<DuplicateItemException, __BaseException>
|
|
180
|
+
);
|
|
181
|
+
}
|
|
182
|
+
export declare class IdempotentParameterMismatchException extends __BaseException {
|
|
183
|
+
readonly name: "IdempotentParameterMismatchException";
|
|
184
|
+
readonly $fault: "client";
|
|
185
|
+
Message?: string | undefined;
|
|
186
|
+
constructor(
|
|
187
|
+
opts: __ExceptionOptionType<
|
|
188
|
+
IdempotentParameterMismatchException,
|
|
189
|
+
__BaseException
|
|
190
|
+
>
|
|
191
|
+
);
|
|
192
|
+
}
|
|
193
|
+
export declare class TransactionInProgressException extends __BaseException {
|
|
194
|
+
readonly name: "TransactionInProgressException";
|
|
195
|
+
readonly $fault: "client";
|
|
196
|
+
Message?: string | undefined;
|
|
197
|
+
constructor(
|
|
198
|
+
opts: __ExceptionOptionType<TransactionInProgressException, __BaseException>
|
|
199
|
+
);
|
|
200
|
+
}
|
|
201
|
+
export declare class ExportConflictException extends __BaseException {
|
|
202
|
+
readonly name: "ExportConflictException";
|
|
203
|
+
readonly $fault: "client";
|
|
204
|
+
constructor(
|
|
205
|
+
opts: __ExceptionOptionType<ExportConflictException, __BaseException>
|
|
206
|
+
);
|
|
207
|
+
}
|
|
208
|
+
export declare class InvalidExportTimeException extends __BaseException {
|
|
209
|
+
readonly name: "InvalidExportTimeException";
|
|
210
|
+
readonly $fault: "client";
|
|
211
|
+
constructor(
|
|
212
|
+
opts: __ExceptionOptionType<InvalidExportTimeException, __BaseException>
|
|
213
|
+
);
|
|
214
|
+
}
|
|
215
|
+
export declare class PointInTimeRecoveryUnavailableException extends __BaseException {
|
|
216
|
+
readonly name: "PointInTimeRecoveryUnavailableException";
|
|
217
|
+
readonly $fault: "client";
|
|
218
|
+
constructor(
|
|
219
|
+
opts: __ExceptionOptionType<
|
|
220
|
+
PointInTimeRecoveryUnavailableException,
|
|
221
|
+
__BaseException
|
|
222
|
+
>
|
|
223
|
+
);
|
|
224
|
+
}
|
|
225
|
+
export declare class ImportConflictException extends __BaseException {
|
|
226
|
+
readonly name: "ImportConflictException";
|
|
227
|
+
readonly $fault: "client";
|
|
228
|
+
constructor(
|
|
229
|
+
opts: __ExceptionOptionType<ImportConflictException, __BaseException>
|
|
230
|
+
);
|
|
231
|
+
}
|
|
232
|
+
export declare class TableAlreadyExistsException extends __BaseException {
|
|
233
|
+
readonly name: "TableAlreadyExistsException";
|
|
234
|
+
readonly $fault: "client";
|
|
235
|
+
constructor(
|
|
236
|
+
opts: __ExceptionOptionType<TableAlreadyExistsException, __BaseException>
|
|
237
|
+
);
|
|
238
|
+
}
|
|
239
|
+
export declare class InvalidRestoreTimeException extends __BaseException {
|
|
240
|
+
readonly name: "InvalidRestoreTimeException";
|
|
241
|
+
readonly $fault: "client";
|
|
242
|
+
constructor(
|
|
243
|
+
opts: __ExceptionOptionType<InvalidRestoreTimeException, __BaseException>
|
|
244
|
+
);
|
|
245
|
+
}
|
|
246
|
+
export declare class ReplicaAlreadyExistsException extends __BaseException {
|
|
247
|
+
readonly name: "ReplicaAlreadyExistsException";
|
|
248
|
+
readonly $fault: "client";
|
|
249
|
+
constructor(
|
|
250
|
+
opts: __ExceptionOptionType<ReplicaAlreadyExistsException, __BaseException>
|
|
251
|
+
);
|
|
252
|
+
}
|
|
253
|
+
export declare class ReplicaNotFoundException extends __BaseException {
|
|
254
|
+
readonly name: "ReplicaNotFoundException";
|
|
255
|
+
readonly $fault: "client";
|
|
256
|
+
constructor(
|
|
257
|
+
opts: __ExceptionOptionType<ReplicaNotFoundException, __BaseException>
|
|
258
|
+
);
|
|
259
|
+
}
|
|
260
|
+
export declare class IndexNotFoundException extends __BaseException {
|
|
261
|
+
readonly name: "IndexNotFoundException";
|
|
262
|
+
readonly $fault: "client";
|
|
263
|
+
constructor(
|
|
264
|
+
opts: __ExceptionOptionType<IndexNotFoundException, __BaseException>
|
|
265
|
+
);
|
|
266
|
+
}
|
|
267
|
+
export declare class ConditionalCheckFailedException extends __BaseException {
|
|
268
|
+
readonly name: "ConditionalCheckFailedException";
|
|
269
|
+
readonly $fault: "client";
|
|
270
|
+
Item?: Record<string, AttributeValue> | undefined;
|
|
271
|
+
constructor(
|
|
272
|
+
opts: __ExceptionOptionType<
|
|
273
|
+
ConditionalCheckFailedException,
|
|
274
|
+
__BaseException
|
|
275
|
+
>
|
|
276
|
+
);
|
|
277
|
+
}
|
|
278
|
+
export declare class TransactionCanceledException extends __BaseException {
|
|
279
|
+
readonly name: "TransactionCanceledException";
|
|
280
|
+
readonly $fault: "client";
|
|
281
|
+
Message?: string | undefined;
|
|
282
|
+
CancellationReasons?: CancellationReason[] | undefined;
|
|
283
|
+
constructor(
|
|
284
|
+
opts: __ExceptionOptionType<TransactionCanceledException, __BaseException>
|
|
285
|
+
);
|
|
286
|
+
}
|