@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,140 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient";
|
|
4
|
+
import type { UntagResourceInput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UntagResourceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UntagResourceCommandInput extends UntagResourceInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UntagResourceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UntagResourceCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UntagResourceCommand_base: {
|
|
25
|
+
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Removes the association of tags from an Amazon DynamoDB resource. You can call
|
|
31
|
+
* <code>UntagResource</code> up to five times per second, per account. </p>
|
|
32
|
+
* <ul>
|
|
33
|
+
* <li>
|
|
34
|
+
* <p>
|
|
35
|
+
* <code>UntagResource</code> is an asynchronous operation. If you issue a <a>ListTagsOfResource</a> request immediately after an
|
|
36
|
+
* <code>UntagResource</code> request, DynamoDB might return your
|
|
37
|
+
* previous tag set, if there was one, or an empty tag set. This is because
|
|
38
|
+
* <code>ListTagsOfResource</code> uses an eventually consistent query, and the
|
|
39
|
+
* metadata for your tags or table might not be available at that moment. Wait for
|
|
40
|
+
* a few seconds, and then try the <code>ListTagsOfResource</code> request
|
|
41
|
+
* again.</p>
|
|
42
|
+
* </li>
|
|
43
|
+
* <li>
|
|
44
|
+
* <p>The application or removal of tags using <code>TagResource</code> and
|
|
45
|
+
* <code>UntagResource</code> APIs is eventually consistent.
|
|
46
|
+
* <code>ListTagsOfResource</code> API will only reflect the changes after a
|
|
47
|
+
* few seconds.</p>
|
|
48
|
+
* </li>
|
|
49
|
+
* </ul>
|
|
50
|
+
* <p>For an overview on tagging DynamoDB resources, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Tagging.html">Tagging for DynamoDB</a>
|
|
51
|
+
* in the <i>Amazon DynamoDB Developer Guide</i>.</p>
|
|
52
|
+
* @example
|
|
53
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
54
|
+
* ```javascript
|
|
55
|
+
* import { DynamoDBClient, UntagResourceCommand } from "@aws-sdk/client-dynamodb"; // ES Modules import
|
|
56
|
+
* // const { DynamoDBClient, UntagResourceCommand } = require("@aws-sdk/client-dynamodb"); // CommonJS import
|
|
57
|
+
* // import type { DynamoDBClientConfig } from "@aws-sdk/client-dynamodb";
|
|
58
|
+
* const config = {}; // type is DynamoDBClientConfig
|
|
59
|
+
* const client = new DynamoDBClient(config);
|
|
60
|
+
* const input = { // UntagResourceInput
|
|
61
|
+
* ResourceArn: "STRING_VALUE", // required
|
|
62
|
+
* TagKeys: [ // TagKeyList // required
|
|
63
|
+
* "STRING_VALUE",
|
|
64
|
+
* ],
|
|
65
|
+
* };
|
|
66
|
+
* const command = new UntagResourceCommand(input);
|
|
67
|
+
* const response = await client.send(command);
|
|
68
|
+
* // {};
|
|
69
|
+
*
|
|
70
|
+
* ```
|
|
71
|
+
*
|
|
72
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
73
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
74
|
+
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
75
|
+
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
76
|
+
* @see {@link DynamoDBClientResolvedConfig | config} for DynamoDBClient's `config` shape.
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link InternalServerError} (server fault)
|
|
79
|
+
* <p>An error occurred on the server side.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link LimitExceededException} (client fault)
|
|
84
|
+
* <p>There is no limit to the number of daily on-demand backups that can be taken. </p>
|
|
85
|
+
* <p>For most purposes, up to 500 simultaneous table operations are allowed per account.
|
|
86
|
+
* These operations include <code>CreateTable</code>, <code>UpdateTable</code>,
|
|
87
|
+
* <code>DeleteTable</code>,<code>UpdateTimeToLive</code>,
|
|
88
|
+
* <code>RestoreTableFromBackup</code>, and <code>RestoreTableToPointInTime</code>. </p>
|
|
89
|
+
* <p>When you are creating a table with one or more secondary indexes, you can have up
|
|
90
|
+
* to 250 such requests running at a time. However, if the table or index specifications
|
|
91
|
+
* are complex, then DynamoDB might temporarily reduce the number of concurrent
|
|
92
|
+
* operations.</p>
|
|
93
|
+
* <p>When importing into DynamoDB, up to 50 simultaneous import table operations are
|
|
94
|
+
* allowed per account.</p>
|
|
95
|
+
* <p>There is a soft account quota of 2,500 tables.</p>
|
|
96
|
+
* <p>GetRecords was called with a value of more than 1000 for the limit request
|
|
97
|
+
* parameter.</p>
|
|
98
|
+
* <p>More than 2 processes are reading from the same streams shard at the same time.
|
|
99
|
+
* Exceeding this limit may result in request throttling.</p>
|
|
100
|
+
*
|
|
101
|
+
* @throws {@link ResourceInUseException} (client fault)
|
|
102
|
+
* <p>The operation conflicts with the resource's availability. For example:</p>
|
|
103
|
+
* <ul>
|
|
104
|
+
* <li>
|
|
105
|
+
* <p>You attempted to recreate an existing table.</p>
|
|
106
|
+
* </li>
|
|
107
|
+
* <li>
|
|
108
|
+
* <p>You tried to delete a table currently in the <code>CREATING</code>
|
|
109
|
+
* state.</p>
|
|
110
|
+
* </li>
|
|
111
|
+
* <li>
|
|
112
|
+
* <p>You tried to update a resource that was already being updated.</p>
|
|
113
|
+
* </li>
|
|
114
|
+
* </ul>
|
|
115
|
+
* <p>When appropriate, wait for the ongoing update to complete and attempt the request
|
|
116
|
+
* again.</p>
|
|
117
|
+
*
|
|
118
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
119
|
+
* <p>The operation tried to access a nonexistent table or index. The resource might not
|
|
120
|
+
* be specified correctly, or its status might not be <code>ACTIVE</code>.</p>
|
|
121
|
+
*
|
|
122
|
+
* @throws {@link DynamoDBServiceException}
|
|
123
|
+
* <p>Base exception class for all service exceptions from DynamoDB service.</p>
|
|
124
|
+
*
|
|
125
|
+
*
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
129
|
+
/** @internal type navigation helper, not in runtime. */
|
|
130
|
+
protected static __types: {
|
|
131
|
+
api: {
|
|
132
|
+
input: UntagResourceInput;
|
|
133
|
+
output: {};
|
|
134
|
+
};
|
|
135
|
+
sdk: {
|
|
136
|
+
input: UntagResourceCommandInput;
|
|
137
|
+
output: UntagResourceCommandOutput;
|
|
138
|
+
};
|
|
139
|
+
};
|
|
140
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient";
|
|
4
|
+
import type { UpdateContinuousBackupsInput, UpdateContinuousBackupsOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateContinuousBackupsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateContinuousBackupsCommandInput extends UpdateContinuousBackupsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateContinuousBackupsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateContinuousBackupsCommandOutput extends UpdateContinuousBackupsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateContinuousBackupsCommand_base: {
|
|
25
|
+
new (input: UpdateContinuousBackupsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateContinuousBackupsCommandInput, UpdateContinuousBackupsCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateContinuousBackupsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateContinuousBackupsCommandInput, UpdateContinuousBackupsCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>
|
|
31
|
+
* <code>UpdateContinuousBackups</code> enables or disables point in time recovery for
|
|
32
|
+
* the specified table. A successful <code>UpdateContinuousBackups</code> call returns the
|
|
33
|
+
* current <code>ContinuousBackupsDescription</code>. Continuous backups are
|
|
34
|
+
* <code>ENABLED</code> on all tables at table creation. If point in time recovery is
|
|
35
|
+
* enabled, <code>PointInTimeRecoveryStatus</code> will be set to ENABLED.</p>
|
|
36
|
+
* <p> Once continuous backups and point in time recovery are enabled, you can restore to
|
|
37
|
+
* any point in time within <code>EarliestRestorableDateTime</code> and
|
|
38
|
+
* <code>LatestRestorableDateTime</code>. </p>
|
|
39
|
+
* <p>
|
|
40
|
+
* <code>LatestRestorableDateTime</code> is typically 5 minutes before the current time.
|
|
41
|
+
* You can restore your table to any point in time in the last 35 days. You can set the
|
|
42
|
+
* <code>RecoveryPeriodInDays</code> to any value between 1 and 35 days.</p>
|
|
43
|
+
* @example
|
|
44
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
45
|
+
* ```javascript
|
|
46
|
+
* import { DynamoDBClient, UpdateContinuousBackupsCommand } from "@aws-sdk/client-dynamodb"; // ES Modules import
|
|
47
|
+
* // const { DynamoDBClient, UpdateContinuousBackupsCommand } = require("@aws-sdk/client-dynamodb"); // CommonJS import
|
|
48
|
+
* // import type { DynamoDBClientConfig } from "@aws-sdk/client-dynamodb";
|
|
49
|
+
* const config = {}; // type is DynamoDBClientConfig
|
|
50
|
+
* const client = new DynamoDBClient(config);
|
|
51
|
+
* const input = { // UpdateContinuousBackupsInput
|
|
52
|
+
* TableName: "STRING_VALUE", // required
|
|
53
|
+
* PointInTimeRecoverySpecification: { // PointInTimeRecoverySpecification
|
|
54
|
+
* PointInTimeRecoveryEnabled: true || false, // required
|
|
55
|
+
* RecoveryPeriodInDays: Number("int"),
|
|
56
|
+
* },
|
|
57
|
+
* };
|
|
58
|
+
* const command = new UpdateContinuousBackupsCommand(input);
|
|
59
|
+
* const response = await client.send(command);
|
|
60
|
+
* // { // UpdateContinuousBackupsOutput
|
|
61
|
+
* // ContinuousBackupsDescription: { // ContinuousBackupsDescription
|
|
62
|
+
* // ContinuousBackupsStatus: "ENABLED" || "DISABLED", // required
|
|
63
|
+
* // PointInTimeRecoveryDescription: { // PointInTimeRecoveryDescription
|
|
64
|
+
* // PointInTimeRecoveryStatus: "ENABLED" || "DISABLED",
|
|
65
|
+
* // RecoveryPeriodInDays: Number("int"),
|
|
66
|
+
* // EarliestRestorableDateTime: new Date("TIMESTAMP"),
|
|
67
|
+
* // LatestRestorableDateTime: new Date("TIMESTAMP"),
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // };
|
|
71
|
+
*
|
|
72
|
+
* ```
|
|
73
|
+
*
|
|
74
|
+
* @param UpdateContinuousBackupsCommandInput - {@link UpdateContinuousBackupsCommandInput}
|
|
75
|
+
* @returns {@link UpdateContinuousBackupsCommandOutput}
|
|
76
|
+
* @see {@link UpdateContinuousBackupsCommandInput} for command's `input` shape.
|
|
77
|
+
* @see {@link UpdateContinuousBackupsCommandOutput} for command's `response` shape.
|
|
78
|
+
* @see {@link DynamoDBClientResolvedConfig | config} for DynamoDBClient's `config` shape.
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ContinuousBackupsUnavailableException} (client fault)
|
|
81
|
+
* <p>Backups have not yet been enabled for this table.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link InternalServerError} (server fault)
|
|
84
|
+
* <p>An error occurred on the server side.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link TableNotFoundException} (client fault)
|
|
89
|
+
* <p>A source table with the name <code>TableName</code> does not currently exist within
|
|
90
|
+
* the subscriber's account or the subscriber is operating in the wrong Amazon Web Services
|
|
91
|
+
* Region.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link DynamoDBServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from DynamoDB service.</p>
|
|
95
|
+
*
|
|
96
|
+
*
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
export declare class UpdateContinuousBackupsCommand extends UpdateContinuousBackupsCommand_base {
|
|
100
|
+
/** @internal type navigation helper, not in runtime. */
|
|
101
|
+
protected static __types: {
|
|
102
|
+
api: {
|
|
103
|
+
input: UpdateContinuousBackupsInput;
|
|
104
|
+
output: UpdateContinuousBackupsOutput;
|
|
105
|
+
};
|
|
106
|
+
sdk: {
|
|
107
|
+
input: UpdateContinuousBackupsCommandInput;
|
|
108
|
+
output: UpdateContinuousBackupsCommandOutput;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
111
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient";
|
|
4
|
+
import type { UpdateContributorInsightsInput, UpdateContributorInsightsOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateContributorInsightsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateContributorInsightsCommandInput extends UpdateContributorInsightsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateContributorInsightsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateContributorInsightsCommandOutput extends UpdateContributorInsightsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateContributorInsightsCommand_base: {
|
|
25
|
+
new (input: UpdateContributorInsightsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateContributorInsightsCommandInput, UpdateContributorInsightsCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateContributorInsightsCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateContributorInsightsCommandInput, UpdateContributorInsightsCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Updates the status for contributor insights for a specific table or index. CloudWatch
|
|
31
|
+
* Contributor Insights for DynamoDB graphs display the partition key and (if applicable)
|
|
32
|
+
* sort key of frequently accessed items and frequently throttled items in plaintext. If
|
|
33
|
+
* you require the use of Amazon Web Services Key Management Service (KMS) to encrypt this
|
|
34
|
+
* table’s partition key and sort key data with an Amazon Web Services managed key or
|
|
35
|
+
* customer managed key, you should not enable CloudWatch Contributor Insights for DynamoDB
|
|
36
|
+
* for this table.</p>
|
|
37
|
+
* @example
|
|
38
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
39
|
+
* ```javascript
|
|
40
|
+
* import { DynamoDBClient, UpdateContributorInsightsCommand } from "@aws-sdk/client-dynamodb"; // ES Modules import
|
|
41
|
+
* // const { DynamoDBClient, UpdateContributorInsightsCommand } = require("@aws-sdk/client-dynamodb"); // CommonJS import
|
|
42
|
+
* // import type { DynamoDBClientConfig } from "@aws-sdk/client-dynamodb";
|
|
43
|
+
* const config = {}; // type is DynamoDBClientConfig
|
|
44
|
+
* const client = new DynamoDBClient(config);
|
|
45
|
+
* const input = { // UpdateContributorInsightsInput
|
|
46
|
+
* TableName: "STRING_VALUE", // required
|
|
47
|
+
* IndexName: "STRING_VALUE",
|
|
48
|
+
* ContributorInsightsAction: "ENABLE" || "DISABLE", // required
|
|
49
|
+
* ContributorInsightsMode: "ACCESSED_AND_THROTTLED_KEYS" || "THROTTLED_KEYS",
|
|
50
|
+
* };
|
|
51
|
+
* const command = new UpdateContributorInsightsCommand(input);
|
|
52
|
+
* const response = await client.send(command);
|
|
53
|
+
* // { // UpdateContributorInsightsOutput
|
|
54
|
+
* // TableName: "STRING_VALUE",
|
|
55
|
+
* // IndexName: "STRING_VALUE",
|
|
56
|
+
* // ContributorInsightsStatus: "ENABLING" || "ENABLED" || "DISABLING" || "DISABLED" || "FAILED",
|
|
57
|
+
* // ContributorInsightsMode: "ACCESSED_AND_THROTTLED_KEYS" || "THROTTLED_KEYS",
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* @param UpdateContributorInsightsCommandInput - {@link UpdateContributorInsightsCommandInput}
|
|
63
|
+
* @returns {@link UpdateContributorInsightsCommandOutput}
|
|
64
|
+
* @see {@link UpdateContributorInsightsCommandInput} for command's `input` shape.
|
|
65
|
+
* @see {@link UpdateContributorInsightsCommandOutput} for command's `response` shape.
|
|
66
|
+
* @see {@link DynamoDBClientResolvedConfig | config} for DynamoDBClient's `config` shape.
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link InternalServerError} (server fault)
|
|
69
|
+
* <p>An error occurred on the server side.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
72
|
+
* <p>The operation tried to access a nonexistent table or index. The resource might not
|
|
73
|
+
* be specified correctly, or its status might not be <code>ACTIVE</code>.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link DynamoDBServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from DynamoDB service.</p>
|
|
77
|
+
*
|
|
78
|
+
*
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export declare class UpdateContributorInsightsCommand extends UpdateContributorInsightsCommand_base {
|
|
82
|
+
/** @internal type navigation helper, not in runtime. */
|
|
83
|
+
protected static __types: {
|
|
84
|
+
api: {
|
|
85
|
+
input: UpdateContributorInsightsInput;
|
|
86
|
+
output: UpdateContributorInsightsOutput;
|
|
87
|
+
};
|
|
88
|
+
sdk: {
|
|
89
|
+
input: UpdateContributorInsightsCommandInput;
|
|
90
|
+
output: UpdateContributorInsightsCommandOutput;
|
|
91
|
+
};
|
|
92
|
+
};
|
|
93
|
+
}
|
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DynamoDBClient";
|
|
4
|
+
import type { UpdateGlobalTableInput, UpdateGlobalTableOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link UpdateGlobalTableCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface UpdateGlobalTableCommandInput extends UpdateGlobalTableInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link UpdateGlobalTableCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface UpdateGlobalTableCommandOutput extends UpdateGlobalTableOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const UpdateGlobalTableCommand_base: {
|
|
25
|
+
new (input: UpdateGlobalTableCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateGlobalTableCommandInput, UpdateGlobalTableCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: UpdateGlobalTableCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateGlobalTableCommandInput, UpdateGlobalTableCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Adds or removes replicas in the specified global table. The global table must already
|
|
31
|
+
* exist to be able to use this operation. Any replica to be added must be empty, have the
|
|
32
|
+
* same name as the global table, have the same key schema, have DynamoDB Streams enabled,
|
|
33
|
+
* and have the same provisioned and maximum write capacity units.</p>
|
|
34
|
+
* <important>
|
|
35
|
+
* <p>This documentation is for version 2017.11.29 (Legacy) of global tables, which should be avoided for new global tables. Customers should use <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GlobalTables.html">Global Tables version 2019.11.21 (Current)</a> when possible, because it provides greater flexibility, higher efficiency, and consumes less write capacity than 2017.11.29 (Legacy).</p>
|
|
36
|
+
* <p>To determine which version you're using, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/globaltables.DetermineVersion.html">Determining the global table version you are using</a>. To update existing global tables from version 2017.11.29 (Legacy) to version 2019.11.21 (Current), see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/V2globaltables_upgrade.html">Upgrading global tables</a>.</p>
|
|
37
|
+
* </important>
|
|
38
|
+
* <note>
|
|
39
|
+
* <p> If you are using global tables <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GlobalTables.html">Version
|
|
40
|
+
* 2019.11.21</a> (Current) you can use <a href="https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_UpdateTable.html">UpdateTable</a> instead. </p>
|
|
41
|
+
* <p> Although you can use <code>UpdateGlobalTable</code> to add replicas and remove
|
|
42
|
+
* replicas in a single request, for simplicity we recommend that you issue separate
|
|
43
|
+
* requests for adding or removing replicas. </p>
|
|
44
|
+
* </note>
|
|
45
|
+
* <p> If global secondary indexes are specified, then the following conditions must also be
|
|
46
|
+
* met: </p>
|
|
47
|
+
* <ul>
|
|
48
|
+
* <li>
|
|
49
|
+
* <p> The global secondary indexes must have the same name. </p>
|
|
50
|
+
* </li>
|
|
51
|
+
* <li>
|
|
52
|
+
* <p> The global secondary indexes must have the same hash key and sort key (if
|
|
53
|
+
* present). </p>
|
|
54
|
+
* </li>
|
|
55
|
+
* <li>
|
|
56
|
+
* <p> The global secondary indexes must have the same provisioned and maximum write
|
|
57
|
+
* capacity units. </p>
|
|
58
|
+
* </li>
|
|
59
|
+
* </ul>
|
|
60
|
+
* @example
|
|
61
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
62
|
+
* ```javascript
|
|
63
|
+
* import { DynamoDBClient, UpdateGlobalTableCommand } from "@aws-sdk/client-dynamodb"; // ES Modules import
|
|
64
|
+
* // const { DynamoDBClient, UpdateGlobalTableCommand } = require("@aws-sdk/client-dynamodb"); // CommonJS import
|
|
65
|
+
* // import type { DynamoDBClientConfig } from "@aws-sdk/client-dynamodb";
|
|
66
|
+
* const config = {}; // type is DynamoDBClientConfig
|
|
67
|
+
* const client = new DynamoDBClient(config);
|
|
68
|
+
* const input = { // UpdateGlobalTableInput
|
|
69
|
+
* GlobalTableName: "STRING_VALUE", // required
|
|
70
|
+
* ReplicaUpdates: [ // ReplicaUpdateList // required
|
|
71
|
+
* { // ReplicaUpdate
|
|
72
|
+
* Create: { // CreateReplicaAction
|
|
73
|
+
* RegionName: "STRING_VALUE", // required
|
|
74
|
+
* },
|
|
75
|
+
* Delete: { // DeleteReplicaAction
|
|
76
|
+
* RegionName: "STRING_VALUE", // required
|
|
77
|
+
* },
|
|
78
|
+
* },
|
|
79
|
+
* ],
|
|
80
|
+
* };
|
|
81
|
+
* const command = new UpdateGlobalTableCommand(input);
|
|
82
|
+
* const response = await client.send(command);
|
|
83
|
+
* // { // UpdateGlobalTableOutput
|
|
84
|
+
* // GlobalTableDescription: { // GlobalTableDescription
|
|
85
|
+
* // ReplicationGroup: [ // ReplicaDescriptionList
|
|
86
|
+
* // { // ReplicaDescription
|
|
87
|
+
* // RegionName: "STRING_VALUE",
|
|
88
|
+
* // ReplicaStatus: "CREATING" || "CREATION_FAILED" || "UPDATING" || "DELETING" || "ACTIVE" || "REGION_DISABLED" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
|
|
89
|
+
* // ReplicaStatusDescription: "STRING_VALUE",
|
|
90
|
+
* // ReplicaStatusPercentProgress: "STRING_VALUE",
|
|
91
|
+
* // KMSMasterKeyId: "STRING_VALUE",
|
|
92
|
+
* // ProvisionedThroughputOverride: { // ProvisionedThroughputOverride
|
|
93
|
+
* // ReadCapacityUnits: Number("long"),
|
|
94
|
+
* // },
|
|
95
|
+
* // OnDemandThroughputOverride: { // OnDemandThroughputOverride
|
|
96
|
+
* // MaxReadRequestUnits: Number("long"),
|
|
97
|
+
* // },
|
|
98
|
+
* // WarmThroughput: { // TableWarmThroughputDescription
|
|
99
|
+
* // ReadUnitsPerSecond: Number("long"),
|
|
100
|
+
* // WriteUnitsPerSecond: Number("long"),
|
|
101
|
+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE" || "INACCESSIBLE_ENCRYPTION_CREDENTIALS" || "ARCHIVING" || "ARCHIVED" || "REPLICATION_NOT_AUTHORIZED",
|
|
102
|
+
* // },
|
|
103
|
+
* // GlobalSecondaryIndexes: [ // ReplicaGlobalSecondaryIndexDescriptionList
|
|
104
|
+
* // { // ReplicaGlobalSecondaryIndexDescription
|
|
105
|
+
* // IndexName: "STRING_VALUE",
|
|
106
|
+
* // ProvisionedThroughputOverride: {
|
|
107
|
+
* // ReadCapacityUnits: Number("long"),
|
|
108
|
+
* // },
|
|
109
|
+
* // OnDemandThroughputOverride: {
|
|
110
|
+
* // MaxReadRequestUnits: Number("long"),
|
|
111
|
+
* // },
|
|
112
|
+
* // WarmThroughput: { // GlobalSecondaryIndexWarmThroughputDescription
|
|
113
|
+
* // ReadUnitsPerSecond: Number("long"),
|
|
114
|
+
* // WriteUnitsPerSecond: Number("long"),
|
|
115
|
+
* // Status: "CREATING" || "UPDATING" || "DELETING" || "ACTIVE",
|
|
116
|
+
* // },
|
|
117
|
+
* // },
|
|
118
|
+
* // ],
|
|
119
|
+
* // ReplicaInaccessibleDateTime: new Date("TIMESTAMP"),
|
|
120
|
+
* // ReplicaTableClassSummary: { // TableClassSummary
|
|
121
|
+
* // TableClass: "STANDARD" || "STANDARD_INFREQUENT_ACCESS",
|
|
122
|
+
* // LastUpdateDateTime: new Date("TIMESTAMP"),
|
|
123
|
+
* // },
|
|
124
|
+
* // GlobalTableSettingsReplicationMode: "ENABLED" || "DISABLED" || "ENABLED_WITH_OVERRIDES",
|
|
125
|
+
* // },
|
|
126
|
+
* // ],
|
|
127
|
+
* // GlobalTableArn: "STRING_VALUE",
|
|
128
|
+
* // CreationDateTime: new Date("TIMESTAMP"),
|
|
129
|
+
* // GlobalTableStatus: "CREATING" || "ACTIVE" || "DELETING" || "UPDATING",
|
|
130
|
+
* // GlobalTableName: "STRING_VALUE",
|
|
131
|
+
* // },
|
|
132
|
+
* // };
|
|
133
|
+
*
|
|
134
|
+
* ```
|
|
135
|
+
*
|
|
136
|
+
* @param UpdateGlobalTableCommandInput - {@link UpdateGlobalTableCommandInput}
|
|
137
|
+
* @returns {@link UpdateGlobalTableCommandOutput}
|
|
138
|
+
* @see {@link UpdateGlobalTableCommandInput} for command's `input` shape.
|
|
139
|
+
* @see {@link UpdateGlobalTableCommandOutput} for command's `response` shape.
|
|
140
|
+
* @see {@link DynamoDBClientResolvedConfig | config} for DynamoDBClient's `config` shape.
|
|
141
|
+
*
|
|
142
|
+
* @throws {@link GlobalTableNotFoundException} (client fault)
|
|
143
|
+
* <p>The specified global table does not exist.</p>
|
|
144
|
+
*
|
|
145
|
+
* @throws {@link InternalServerError} (server fault)
|
|
146
|
+
* <p>An error occurred on the server side.</p>
|
|
147
|
+
*
|
|
148
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
149
|
+
*
|
|
150
|
+
* @throws {@link ReplicaAlreadyExistsException} (client fault)
|
|
151
|
+
* <p>The specified replica is already part of the global table.</p>
|
|
152
|
+
*
|
|
153
|
+
* @throws {@link ReplicaNotFoundException} (client fault)
|
|
154
|
+
* <p>The specified replica is no longer part of the global table.</p>
|
|
155
|
+
*
|
|
156
|
+
* @throws {@link TableNotFoundException} (client fault)
|
|
157
|
+
* <p>A source table with the name <code>TableName</code> does not currently exist within
|
|
158
|
+
* the subscriber's account or the subscriber is operating in the wrong Amazon Web Services
|
|
159
|
+
* Region.</p>
|
|
160
|
+
*
|
|
161
|
+
* @throws {@link DynamoDBServiceException}
|
|
162
|
+
* <p>Base exception class for all service exceptions from DynamoDB service.</p>
|
|
163
|
+
*
|
|
164
|
+
*
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
export declare class UpdateGlobalTableCommand extends UpdateGlobalTableCommand_base {
|
|
168
|
+
/** @internal type navigation helper, not in runtime. */
|
|
169
|
+
protected static __types: {
|
|
170
|
+
api: {
|
|
171
|
+
input: UpdateGlobalTableInput;
|
|
172
|
+
output: UpdateGlobalTableOutput;
|
|
173
|
+
};
|
|
174
|
+
sdk: {
|
|
175
|
+
input: UpdateGlobalTableCommandInput;
|
|
176
|
+
output: UpdateGlobalTableCommandOutput;
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
}
|