@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,496 @@
|
|
|
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 { TransactGetItemsInput, TransactGetItemsOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link TransactGetItemsCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface TransactGetItemsCommandInput extends TransactGetItemsInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link TransactGetItemsCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface TransactGetItemsCommandOutput extends TransactGetItemsOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const TransactGetItemsCommand_base: {
|
|
25
|
+
new (input: TransactGetItemsCommandInput): import("@smithy/smithy-client").CommandImpl<TransactGetItemsCommandInput, TransactGetItemsCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: TransactGetItemsCommandInput): import("@smithy/smithy-client").CommandImpl<TransactGetItemsCommandInput, TransactGetItemsCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>
|
|
31
|
+
* <code>TransactGetItems</code> is a synchronous operation that atomically retrieves
|
|
32
|
+
* multiple items from one or more tables (but not from indexes) in a single account and
|
|
33
|
+
* Region. A <code>TransactGetItems</code> call can contain up to 100
|
|
34
|
+
* <code>TransactGetItem</code> objects, each of which contains a <code>Get</code>
|
|
35
|
+
* structure that specifies an item to retrieve from a table in the account and Region. A
|
|
36
|
+
* call to <code>TransactGetItems</code> cannot retrieve items from tables in more than one
|
|
37
|
+
* Amazon Web Services account or Region. The aggregate size of the items in the
|
|
38
|
+
* transaction cannot exceed 4 MB.</p>
|
|
39
|
+
* <p>DynamoDB rejects the entire <code>TransactGetItems</code> request if any of
|
|
40
|
+
* the following is true:</p>
|
|
41
|
+
* <ul>
|
|
42
|
+
* <li>
|
|
43
|
+
* <p>A conflicting operation is in the process of updating an item to be
|
|
44
|
+
* read.</p>
|
|
45
|
+
* </li>
|
|
46
|
+
* <li>
|
|
47
|
+
* <p>There is insufficient provisioned capacity for the transaction to be
|
|
48
|
+
* completed.</p>
|
|
49
|
+
* </li>
|
|
50
|
+
* <li>
|
|
51
|
+
* <p>There is a user error, such as an invalid data format.</p>
|
|
52
|
+
* </li>
|
|
53
|
+
* <li>
|
|
54
|
+
* <p>The aggregate size of the items in the transaction exceeded 4 MB.</p>
|
|
55
|
+
* </li>
|
|
56
|
+
* </ul>
|
|
57
|
+
* @example
|
|
58
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
59
|
+
* ```javascript
|
|
60
|
+
* import { DynamoDBClient, TransactGetItemsCommand } from "@aws-sdk/client-dynamodb"; // ES Modules import
|
|
61
|
+
* // const { DynamoDBClient, TransactGetItemsCommand } = require("@aws-sdk/client-dynamodb"); // CommonJS import
|
|
62
|
+
* // import type { DynamoDBClientConfig } from "@aws-sdk/client-dynamodb";
|
|
63
|
+
* const config = {}; // type is DynamoDBClientConfig
|
|
64
|
+
* const client = new DynamoDBClient(config);
|
|
65
|
+
* const input = { // TransactGetItemsInput
|
|
66
|
+
* TransactItems: [ // TransactGetItemList // required
|
|
67
|
+
* { // TransactGetItem
|
|
68
|
+
* Get: { // Get
|
|
69
|
+
* Key: { // Key // required
|
|
70
|
+
* "<keys>": { // AttributeValue Union: only one key present
|
|
71
|
+
* S: "STRING_VALUE",
|
|
72
|
+
* N: "STRING_VALUE",
|
|
73
|
+
* B: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
74
|
+
* SS: [ // StringSetAttributeValue
|
|
75
|
+
* "STRING_VALUE",
|
|
76
|
+
* ],
|
|
77
|
+
* NS: [ // NumberSetAttributeValue
|
|
78
|
+
* "STRING_VALUE",
|
|
79
|
+
* ],
|
|
80
|
+
* BS: [ // BinarySetAttributeValue
|
|
81
|
+
* new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
82
|
+
* ],
|
|
83
|
+
* M: { // MapAttributeValue
|
|
84
|
+
* "<keys>": {// Union: only one key present
|
|
85
|
+
* S: "STRING_VALUE",
|
|
86
|
+
* N: "STRING_VALUE",
|
|
87
|
+
* B: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
88
|
+
* SS: [
|
|
89
|
+
* "STRING_VALUE",
|
|
90
|
+
* ],
|
|
91
|
+
* NS: [
|
|
92
|
+
* "STRING_VALUE",
|
|
93
|
+
* ],
|
|
94
|
+
* BS: [
|
|
95
|
+
* new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
|
|
96
|
+
* ],
|
|
97
|
+
* M: {
|
|
98
|
+
* "<keys>": "<AttributeValue>",
|
|
99
|
+
* },
|
|
100
|
+
* L: [ // ListAttributeValue
|
|
101
|
+
* "<AttributeValue>",
|
|
102
|
+
* ],
|
|
103
|
+
* NULL: true || false,
|
|
104
|
+
* BOOL: true || false,
|
|
105
|
+
* },
|
|
106
|
+
* },
|
|
107
|
+
* L: [
|
|
108
|
+
* "<AttributeValue>",
|
|
109
|
+
* ],
|
|
110
|
+
* NULL: true || false,
|
|
111
|
+
* BOOL: true || false,
|
|
112
|
+
* },
|
|
113
|
+
* },
|
|
114
|
+
* TableName: "STRING_VALUE", // required
|
|
115
|
+
* ProjectionExpression: "STRING_VALUE",
|
|
116
|
+
* ExpressionAttributeNames: { // ExpressionAttributeNameMap
|
|
117
|
+
* "<keys>": "STRING_VALUE",
|
|
118
|
+
* },
|
|
119
|
+
* },
|
|
120
|
+
* },
|
|
121
|
+
* ],
|
|
122
|
+
* ReturnConsumedCapacity: "INDEXES" || "TOTAL" || "NONE",
|
|
123
|
+
* };
|
|
124
|
+
* const command = new TransactGetItemsCommand(input);
|
|
125
|
+
* const response = await client.send(command);
|
|
126
|
+
* // { // TransactGetItemsOutput
|
|
127
|
+
* // ConsumedCapacity: [ // ConsumedCapacityMultiple
|
|
128
|
+
* // { // ConsumedCapacity
|
|
129
|
+
* // TableName: "STRING_VALUE",
|
|
130
|
+
* // CapacityUnits: Number("double"),
|
|
131
|
+
* // ReadCapacityUnits: Number("double"),
|
|
132
|
+
* // WriteCapacityUnits: Number("double"),
|
|
133
|
+
* // Table: { // Capacity
|
|
134
|
+
* // ReadCapacityUnits: Number("double"),
|
|
135
|
+
* // WriteCapacityUnits: Number("double"),
|
|
136
|
+
* // CapacityUnits: Number("double"),
|
|
137
|
+
* // },
|
|
138
|
+
* // LocalSecondaryIndexes: { // SecondaryIndexesCapacityMap
|
|
139
|
+
* // "<keys>": {
|
|
140
|
+
* // ReadCapacityUnits: Number("double"),
|
|
141
|
+
* // WriteCapacityUnits: Number("double"),
|
|
142
|
+
* // CapacityUnits: Number("double"),
|
|
143
|
+
* // },
|
|
144
|
+
* // },
|
|
145
|
+
* // GlobalSecondaryIndexes: {
|
|
146
|
+
* // "<keys>": {
|
|
147
|
+
* // ReadCapacityUnits: Number("double"),
|
|
148
|
+
* // WriteCapacityUnits: Number("double"),
|
|
149
|
+
* // CapacityUnits: Number("double"),
|
|
150
|
+
* // },
|
|
151
|
+
* // },
|
|
152
|
+
* // },
|
|
153
|
+
* // ],
|
|
154
|
+
* // Responses: [ // ItemResponseList
|
|
155
|
+
* // { // ItemResponse
|
|
156
|
+
* // Item: { // AttributeMap
|
|
157
|
+
* // "<keys>": { // AttributeValue Union: only one key present
|
|
158
|
+
* // S: "STRING_VALUE",
|
|
159
|
+
* // N: "STRING_VALUE",
|
|
160
|
+
* // B: new Uint8Array(),
|
|
161
|
+
* // SS: [ // StringSetAttributeValue
|
|
162
|
+
* // "STRING_VALUE",
|
|
163
|
+
* // ],
|
|
164
|
+
* // NS: [ // NumberSetAttributeValue
|
|
165
|
+
* // "STRING_VALUE",
|
|
166
|
+
* // ],
|
|
167
|
+
* // BS: [ // BinarySetAttributeValue
|
|
168
|
+
* // new Uint8Array(),
|
|
169
|
+
* // ],
|
|
170
|
+
* // M: { // MapAttributeValue
|
|
171
|
+
* // "<keys>": {// Union: only one key present
|
|
172
|
+
* // S: "STRING_VALUE",
|
|
173
|
+
* // N: "STRING_VALUE",
|
|
174
|
+
* // B: new Uint8Array(),
|
|
175
|
+
* // SS: [
|
|
176
|
+
* // "STRING_VALUE",
|
|
177
|
+
* // ],
|
|
178
|
+
* // NS: [
|
|
179
|
+
* // "STRING_VALUE",
|
|
180
|
+
* // ],
|
|
181
|
+
* // BS: [
|
|
182
|
+
* // new Uint8Array(),
|
|
183
|
+
* // ],
|
|
184
|
+
* // M: {
|
|
185
|
+
* // "<keys>": "<AttributeValue>",
|
|
186
|
+
* // },
|
|
187
|
+
* // L: [ // ListAttributeValue
|
|
188
|
+
* // "<AttributeValue>",
|
|
189
|
+
* // ],
|
|
190
|
+
* // NULL: true || false,
|
|
191
|
+
* // BOOL: true || false,
|
|
192
|
+
* // },
|
|
193
|
+
* // },
|
|
194
|
+
* // L: [
|
|
195
|
+
* // "<AttributeValue>",
|
|
196
|
+
* // ],
|
|
197
|
+
* // NULL: true || false,
|
|
198
|
+
* // BOOL: true || false,
|
|
199
|
+
* // },
|
|
200
|
+
* // },
|
|
201
|
+
* // },
|
|
202
|
+
* // ],
|
|
203
|
+
* // };
|
|
204
|
+
*
|
|
205
|
+
* ```
|
|
206
|
+
*
|
|
207
|
+
* @param TransactGetItemsCommandInput - {@link TransactGetItemsCommandInput}
|
|
208
|
+
* @returns {@link TransactGetItemsCommandOutput}
|
|
209
|
+
* @see {@link TransactGetItemsCommandInput} for command's `input` shape.
|
|
210
|
+
* @see {@link TransactGetItemsCommandOutput} for command's `response` shape.
|
|
211
|
+
* @see {@link DynamoDBClientResolvedConfig | config} for DynamoDBClient's `config` shape.
|
|
212
|
+
*
|
|
213
|
+
* @throws {@link InternalServerError} (server fault)
|
|
214
|
+
* <p>An error occurred on the server side.</p>
|
|
215
|
+
*
|
|
216
|
+
* @throws {@link InvalidEndpointException} (client fault)
|
|
217
|
+
*
|
|
218
|
+
* @throws {@link ProvisionedThroughputExceededException} (client fault)
|
|
219
|
+
* <p>The request was denied due to request throttling. For detailed information about
|
|
220
|
+
* why the request was throttled and the ARN of the impacted resource, find the <a href="https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ThrottlingReason.html">ThrottlingReason</a> field in the returned exception. The Amazon Web Services
|
|
221
|
+
* SDKs for DynamoDB automatically retry requests that receive this exception.
|
|
222
|
+
* Your request is eventually successful, unless your retry queue is too large to finish.
|
|
223
|
+
* Reduce the frequency of requests and use exponential backoff. For more information, go
|
|
224
|
+
* to <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Programming.Errors.html#Programming.Errors.RetryAndBackoff">Error Retries and Exponential Backoff</a> in the <i>Amazon DynamoDB Developer Guide</i>.</p>
|
|
225
|
+
*
|
|
226
|
+
* @throws {@link RequestLimitExceeded} (client fault)
|
|
227
|
+
* <p>Throughput exceeds the current throughput quota for your account. For detailed
|
|
228
|
+
* information about why the request was throttled and the ARN of the impacted resource,
|
|
229
|
+
* find the <a href="https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ThrottlingReason.html">ThrottlingReason</a> field in the returned exception. Contact <a href="https://aws.amazon.com/support">Amazon Web Services Support</a> to request a quota
|
|
230
|
+
* increase.</p>
|
|
231
|
+
*
|
|
232
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
233
|
+
* <p>The operation tried to access a nonexistent table or index. The resource might not
|
|
234
|
+
* be specified correctly, or its status might not be <code>ACTIVE</code>.</p>
|
|
235
|
+
*
|
|
236
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
237
|
+
* <p>The request was denied due to request throttling. For detailed information about why
|
|
238
|
+
* the request was throttled and the ARN of the impacted resource, find the <a href="https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ThrottlingReason.html">ThrottlingReason</a> field in the returned exception.</p>
|
|
239
|
+
*
|
|
240
|
+
* @throws {@link TransactionCanceledException} (client fault)
|
|
241
|
+
* <p>The entire transaction request was canceled.</p>
|
|
242
|
+
* <p>DynamoDB cancels a <code>TransactWriteItems</code> request under the following
|
|
243
|
+
* circumstances:</p>
|
|
244
|
+
* <ul>
|
|
245
|
+
* <li>
|
|
246
|
+
* <p>A condition in one of the condition expressions is not met.</p>
|
|
247
|
+
* </li>
|
|
248
|
+
* <li>
|
|
249
|
+
* <p>A table in the <code>TransactWriteItems</code> request is in a different
|
|
250
|
+
* account or region.</p>
|
|
251
|
+
* </li>
|
|
252
|
+
* <li>
|
|
253
|
+
* <p>More than one action in the <code>TransactWriteItems</code> operation
|
|
254
|
+
* targets the same item.</p>
|
|
255
|
+
* </li>
|
|
256
|
+
* <li>
|
|
257
|
+
* <p>There is insufficient provisioned capacity for the transaction to be
|
|
258
|
+
* completed.</p>
|
|
259
|
+
* </li>
|
|
260
|
+
* <li>
|
|
261
|
+
* <p>An item size becomes too large (larger than 400 KB), or a local secondary
|
|
262
|
+
* index (LSI) becomes too large, or a similar validation error occurs because of
|
|
263
|
+
* changes made by the transaction.</p>
|
|
264
|
+
* </li>
|
|
265
|
+
* <li>
|
|
266
|
+
* <p>There is a user error, such as an invalid data format.</p>
|
|
267
|
+
* </li>
|
|
268
|
+
* <li>
|
|
269
|
+
* <p> There is an ongoing <code>TransactWriteItems</code> operation that
|
|
270
|
+
* conflicts with a concurrent <code>TransactWriteItems</code> request. In this
|
|
271
|
+
* case the <code>TransactWriteItems</code> operation fails with a
|
|
272
|
+
* <code>TransactionCanceledException</code>. </p>
|
|
273
|
+
* </li>
|
|
274
|
+
* </ul>
|
|
275
|
+
* <p>DynamoDB cancels a <code>TransactGetItems</code> request under the
|
|
276
|
+
* following circumstances:</p>
|
|
277
|
+
* <ul>
|
|
278
|
+
* <li>
|
|
279
|
+
* <p>There is an ongoing <code>TransactGetItems</code> operation that conflicts
|
|
280
|
+
* with a concurrent <code>PutItem</code>, <code>UpdateItem</code>,
|
|
281
|
+
* <code>DeleteItem</code> or <code>TransactWriteItems</code> request. In this
|
|
282
|
+
* case the <code>TransactGetItems</code> operation fails with a
|
|
283
|
+
* <code>TransactionCanceledException</code>.</p>
|
|
284
|
+
* </li>
|
|
285
|
+
* <li>
|
|
286
|
+
* <p>A table in the <code>TransactGetItems</code> request is in a different
|
|
287
|
+
* account or region.</p>
|
|
288
|
+
* </li>
|
|
289
|
+
* <li>
|
|
290
|
+
* <p>There is insufficient provisioned capacity for the transaction to be
|
|
291
|
+
* completed.</p>
|
|
292
|
+
* </li>
|
|
293
|
+
* <li>
|
|
294
|
+
* <p>There is a user error, such as an invalid data format.</p>
|
|
295
|
+
* </li>
|
|
296
|
+
* </ul>
|
|
297
|
+
* <note>
|
|
298
|
+
* <p>DynamoDB lists the cancellation reasons on the
|
|
299
|
+
* <code>CancellationReasons</code> property. Transaction cancellation reasons are ordered in the order of requested
|
|
300
|
+
* items, if an item has no error it will have <code>None</code> code and
|
|
301
|
+
* <code>Null</code> message.</p>
|
|
302
|
+
* </note>
|
|
303
|
+
* <p>Cancellation reason codes and possible error messages:</p>
|
|
304
|
+
* <ul>
|
|
305
|
+
* <li>
|
|
306
|
+
* <p>No Errors:</p>
|
|
307
|
+
* <ul>
|
|
308
|
+
* <li>
|
|
309
|
+
* <p>Code: <code>None</code>
|
|
310
|
+
* </p>
|
|
311
|
+
* </li>
|
|
312
|
+
* <li>
|
|
313
|
+
* <p>Message: <code>null</code>
|
|
314
|
+
* </p>
|
|
315
|
+
* </li>
|
|
316
|
+
* </ul>
|
|
317
|
+
* </li>
|
|
318
|
+
* <li>
|
|
319
|
+
* <p>Conditional Check Failed:</p>
|
|
320
|
+
* <ul>
|
|
321
|
+
* <li>
|
|
322
|
+
* <p>Code: <code>ConditionalCheckFailed</code>
|
|
323
|
+
* </p>
|
|
324
|
+
* </li>
|
|
325
|
+
* <li>
|
|
326
|
+
* <p>Message: The conditional request failed. </p>
|
|
327
|
+
* </li>
|
|
328
|
+
* </ul>
|
|
329
|
+
* </li>
|
|
330
|
+
* <li>
|
|
331
|
+
* <p>Item Collection Size Limit Exceeded:</p>
|
|
332
|
+
* <ul>
|
|
333
|
+
* <li>
|
|
334
|
+
* <p>Code: <code>ItemCollectionSizeLimitExceeded</code>
|
|
335
|
+
* </p>
|
|
336
|
+
* </li>
|
|
337
|
+
* <li>
|
|
338
|
+
* <p>Message: Collection size exceeded.</p>
|
|
339
|
+
* </li>
|
|
340
|
+
* </ul>
|
|
341
|
+
* </li>
|
|
342
|
+
* <li>
|
|
343
|
+
* <p>Transaction Conflict:</p>
|
|
344
|
+
* <ul>
|
|
345
|
+
* <li>
|
|
346
|
+
* <p>Code: <code>TransactionConflict</code>
|
|
347
|
+
* </p>
|
|
348
|
+
* </li>
|
|
349
|
+
* <li>
|
|
350
|
+
* <p>Message: Transaction is ongoing for the item.</p>
|
|
351
|
+
* </li>
|
|
352
|
+
* </ul>
|
|
353
|
+
* </li>
|
|
354
|
+
* <li>
|
|
355
|
+
* <p>Provisioned Throughput Exceeded:</p>
|
|
356
|
+
* <ul>
|
|
357
|
+
* <li>
|
|
358
|
+
* <p>Code: <code>ProvisionedThroughputExceeded</code>
|
|
359
|
+
* </p>
|
|
360
|
+
* </li>
|
|
361
|
+
* <li>
|
|
362
|
+
* <p>Messages:</p>
|
|
363
|
+
* <ul>
|
|
364
|
+
* <li>
|
|
365
|
+
* <p>The level of configured provisioned throughput for the
|
|
366
|
+
* table was exceeded. Consider increasing your provisioning level
|
|
367
|
+
* with the UpdateTable API.</p>
|
|
368
|
+
* <note>
|
|
369
|
+
* <p>This Message is received when provisioned throughput is
|
|
370
|
+
* exceeded is on a provisioned DynamoDB
|
|
371
|
+
* table.</p>
|
|
372
|
+
* </note>
|
|
373
|
+
* </li>
|
|
374
|
+
* <li>
|
|
375
|
+
* <p>The level of configured provisioned throughput for one or
|
|
376
|
+
* more global secondary indexes of the table was exceeded.
|
|
377
|
+
* Consider increasing your provisioning level for the
|
|
378
|
+
* under-provisioned global secondary indexes with the UpdateTable
|
|
379
|
+
* API.</p>
|
|
380
|
+
* <note>
|
|
381
|
+
* <p>This message is returned when provisioned throughput is
|
|
382
|
+
* exceeded is on a provisioned GSI.</p>
|
|
383
|
+
* </note>
|
|
384
|
+
* </li>
|
|
385
|
+
* </ul>
|
|
386
|
+
* </li>
|
|
387
|
+
* </ul>
|
|
388
|
+
* </li>
|
|
389
|
+
* <li>
|
|
390
|
+
* <p>Throttling Error:</p>
|
|
391
|
+
* <ul>
|
|
392
|
+
* <li>
|
|
393
|
+
* <p>Code: <code>ThrottlingError</code>
|
|
394
|
+
* </p>
|
|
395
|
+
* </li>
|
|
396
|
+
* <li>
|
|
397
|
+
* <p>Messages: </p>
|
|
398
|
+
* <ul>
|
|
399
|
+
* <li>
|
|
400
|
+
* <p>Throughput exceeds the current capacity of your table or
|
|
401
|
+
* index. DynamoDB is automatically scaling your table or
|
|
402
|
+
* index so please try again shortly. If exceptions persist, check
|
|
403
|
+
* if you have a hot key:
|
|
404
|
+
* https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/bp-partition-key-design.html.</p>
|
|
405
|
+
* <note>
|
|
406
|
+
* <p>This message is returned when writes get throttled on an
|
|
407
|
+
* On-Demand table as DynamoDB is automatically
|
|
408
|
+
* scaling the table.</p>
|
|
409
|
+
* </note>
|
|
410
|
+
* </li>
|
|
411
|
+
* <li>
|
|
412
|
+
* <p>Throughput exceeds the current capacity for one or more
|
|
413
|
+
* global secondary indexes. DynamoDB is automatically
|
|
414
|
+
* scaling your index so please try again shortly.</p>
|
|
415
|
+
* <note>
|
|
416
|
+
* <p>This message is returned when writes get throttled on an
|
|
417
|
+
* On-Demand GSI as DynamoDB is automatically scaling
|
|
418
|
+
* the GSI.</p>
|
|
419
|
+
* </note>
|
|
420
|
+
* </li>
|
|
421
|
+
* </ul>
|
|
422
|
+
* </li>
|
|
423
|
+
* </ul>
|
|
424
|
+
* </li>
|
|
425
|
+
* <li>
|
|
426
|
+
* <p>Validation Error:</p>
|
|
427
|
+
* <ul>
|
|
428
|
+
* <li>
|
|
429
|
+
* <p>Code: <code>ValidationError</code>
|
|
430
|
+
* </p>
|
|
431
|
+
* </li>
|
|
432
|
+
* <li>
|
|
433
|
+
* <p>Messages: </p>
|
|
434
|
+
* <ul>
|
|
435
|
+
* <li>
|
|
436
|
+
* <p>One or more parameter values were invalid.</p>
|
|
437
|
+
* </li>
|
|
438
|
+
* <li>
|
|
439
|
+
* <p>The update expression attempted to update the secondary
|
|
440
|
+
* index key beyond allowed size limits.</p>
|
|
441
|
+
* </li>
|
|
442
|
+
* <li>
|
|
443
|
+
* <p>The update expression attempted to update the secondary
|
|
444
|
+
* index key to unsupported type.</p>
|
|
445
|
+
* </li>
|
|
446
|
+
* <li>
|
|
447
|
+
* <p>An operand in the update expression has an incorrect data
|
|
448
|
+
* type.</p>
|
|
449
|
+
* </li>
|
|
450
|
+
* <li>
|
|
451
|
+
* <p>Item size to update has exceeded the maximum allowed
|
|
452
|
+
* size.</p>
|
|
453
|
+
* </li>
|
|
454
|
+
* <li>
|
|
455
|
+
* <p>Number overflow. Attempting to store a number with
|
|
456
|
+
* magnitude larger than supported range.</p>
|
|
457
|
+
* </li>
|
|
458
|
+
* <li>
|
|
459
|
+
* <p>Type mismatch for attribute to update.</p>
|
|
460
|
+
* </li>
|
|
461
|
+
* <li>
|
|
462
|
+
* <p>Nesting Levels have exceeded supported limits.</p>
|
|
463
|
+
* </li>
|
|
464
|
+
* <li>
|
|
465
|
+
* <p>The document path provided in the update expression is
|
|
466
|
+
* invalid for update.</p>
|
|
467
|
+
* </li>
|
|
468
|
+
* <li>
|
|
469
|
+
* <p>The provided expression refers to an attribute that does
|
|
470
|
+
* not exist in the item.</p>
|
|
471
|
+
* </li>
|
|
472
|
+
* </ul>
|
|
473
|
+
* </li>
|
|
474
|
+
* </ul>
|
|
475
|
+
* </li>
|
|
476
|
+
* </ul>
|
|
477
|
+
*
|
|
478
|
+
* @throws {@link DynamoDBServiceException}
|
|
479
|
+
* <p>Base exception class for all service exceptions from DynamoDB service.</p>
|
|
480
|
+
*
|
|
481
|
+
*
|
|
482
|
+
* @public
|
|
483
|
+
*/
|
|
484
|
+
export declare class TransactGetItemsCommand extends TransactGetItemsCommand_base {
|
|
485
|
+
/** @internal type navigation helper, not in runtime. */
|
|
486
|
+
protected static __types: {
|
|
487
|
+
api: {
|
|
488
|
+
input: TransactGetItemsInput;
|
|
489
|
+
output: TransactGetItemsOutput;
|
|
490
|
+
};
|
|
491
|
+
sdk: {
|
|
492
|
+
input: TransactGetItemsCommandInput;
|
|
493
|
+
output: TransactGetItemsCommandOutput;
|
|
494
|
+
};
|
|
495
|
+
};
|
|
496
|
+
}
|