@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.
Files changed (290) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +31 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +27 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1667 -0
  7. package/dist-cjs/models/DynamoDBServiceException.js +12 -0
  8. package/dist-cjs/models/errors.js +478 -0
  9. package/dist-cjs/runtimeConfig.browser.js +41 -0
  10. package/dist-cjs/runtimeConfig.js +57 -0
  11. package/dist-cjs/runtimeConfig.native.js +15 -0
  12. package/dist-cjs/runtimeConfig.shared.js +46 -0
  13. package/dist-cjs/schemas/schemas_0.js +2390 -0
  14. package/dist-es/DynamoDB.js +149 -0
  15. package/dist-es/DynamoDBClient.js +55 -0
  16. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  17. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  18. package/dist-es/commands/BatchExecuteStatementCommand.js +16 -0
  19. package/dist-es/commands/BatchGetItemCommand.js +19 -0
  20. package/dist-es/commands/BatchWriteItemCommand.js +19 -0
  21. package/dist-es/commands/CreateBackupCommand.js +19 -0
  22. package/dist-es/commands/CreateGlobalTableCommand.js +19 -0
  23. package/dist-es/commands/CreateTableCommand.js +19 -0
  24. package/dist-es/commands/DeleteBackupCommand.js +19 -0
  25. package/dist-es/commands/DeleteItemCommand.js +19 -0
  26. package/dist-es/commands/DeleteResourcePolicyCommand.js +19 -0
  27. package/dist-es/commands/DeleteTableCommand.js +19 -0
  28. package/dist-es/commands/DescribeBackupCommand.js +19 -0
  29. package/dist-es/commands/DescribeContinuousBackupsCommand.js +19 -0
  30. package/dist-es/commands/DescribeContributorInsightsCommand.js +19 -0
  31. package/dist-es/commands/DescribeEndpointsCommand.js +16 -0
  32. package/dist-es/commands/DescribeExportCommand.js +19 -0
  33. package/dist-es/commands/DescribeGlobalTableCommand.js +19 -0
  34. package/dist-es/commands/DescribeGlobalTableSettingsCommand.js +19 -0
  35. package/dist-es/commands/DescribeImportCommand.js +19 -0
  36. package/dist-es/commands/DescribeKinesisStreamingDestinationCommand.js +19 -0
  37. package/dist-es/commands/DescribeLimitsCommand.js +16 -0
  38. package/dist-es/commands/DescribeTableCommand.js +19 -0
  39. package/dist-es/commands/DescribeTableReplicaAutoScalingCommand.js +19 -0
  40. package/dist-es/commands/DescribeTimeToLiveCommand.js +19 -0
  41. package/dist-es/commands/DisableKinesisStreamingDestinationCommand.js +19 -0
  42. package/dist-es/commands/EnableKinesisStreamingDestinationCommand.js +19 -0
  43. package/dist-es/commands/ExecuteStatementCommand.js +16 -0
  44. package/dist-es/commands/ExecuteTransactionCommand.js +16 -0
  45. package/dist-es/commands/ExportTableToPointInTimeCommand.js +19 -0
  46. package/dist-es/commands/GetItemCommand.js +19 -0
  47. package/dist-es/commands/GetResourcePolicyCommand.js +19 -0
  48. package/dist-es/commands/ImportTableCommand.js +19 -0
  49. package/dist-es/commands/ListBackupsCommand.js +19 -0
  50. package/dist-es/commands/ListContributorInsightsCommand.js +19 -0
  51. package/dist-es/commands/ListExportsCommand.js +19 -0
  52. package/dist-es/commands/ListGlobalTablesCommand.js +16 -0
  53. package/dist-es/commands/ListImportsCommand.js +19 -0
  54. package/dist-es/commands/ListTablesCommand.js +16 -0
  55. package/dist-es/commands/ListTagsOfResourceCommand.js +19 -0
  56. package/dist-es/commands/PutItemCommand.js +19 -0
  57. package/dist-es/commands/PutResourcePolicyCommand.js +19 -0
  58. package/dist-es/commands/QueryCommand.js +19 -0
  59. package/dist-es/commands/RestoreTableFromBackupCommand.js +19 -0
  60. package/dist-es/commands/RestoreTableToPointInTimeCommand.js +19 -0
  61. package/dist-es/commands/ScanCommand.js +19 -0
  62. package/dist-es/commands/TagResourceCommand.js +19 -0
  63. package/dist-es/commands/TransactGetItemsCommand.js +19 -0
  64. package/dist-es/commands/TransactWriteItemsCommand.js +19 -0
  65. package/dist-es/commands/UntagResourceCommand.js +19 -0
  66. package/dist-es/commands/UpdateContinuousBackupsCommand.js +19 -0
  67. package/dist-es/commands/UpdateContributorInsightsCommand.js +19 -0
  68. package/dist-es/commands/UpdateGlobalTableCommand.js +19 -0
  69. package/dist-es/commands/UpdateGlobalTableSettingsCommand.js +19 -0
  70. package/dist-es/commands/UpdateItemCommand.js +19 -0
  71. package/dist-es/commands/UpdateKinesisStreamingDestinationCommand.js +19 -0
  72. package/dist-es/commands/UpdateTableCommand.js +19 -0
  73. package/dist-es/commands/UpdateTableReplicaAutoScalingCommand.js +19 -0
  74. package/dist-es/commands/UpdateTimeToLiveCommand.js +19 -0
  75. package/dist-es/commands/index.js +57 -0
  76. package/dist-es/endpoint/EndpointParameters.js +15 -0
  77. package/dist-es/endpoint/endpointResolver.js +23 -0
  78. package/dist-es/endpoint/ruleset.js +4 -0
  79. package/dist-es/extensionConfiguration.js +1 -0
  80. package/dist-es/index.js +10 -0
  81. package/dist-es/models/DynamoDBServiceException.js +8 -0
  82. package/dist-es/models/enums.js +245 -0
  83. package/dist-es/models/errors.js +440 -0
  84. package/dist-es/models/models_0.js +1 -0
  85. package/dist-es/pagination/Interfaces.js +1 -0
  86. package/dist-es/pagination/ListContributorInsightsPaginator.js +4 -0
  87. package/dist-es/pagination/ListExportsPaginator.js +4 -0
  88. package/dist-es/pagination/ListImportsPaginator.js +4 -0
  89. package/dist-es/pagination/ListTablesPaginator.js +4 -0
  90. package/dist-es/pagination/QueryPaginator.js +4 -0
  91. package/dist-es/pagination/ScanPaginator.js +4 -0
  92. package/dist-es/pagination/index.js +7 -0
  93. package/dist-es/runtimeConfig.browser.js +36 -0
  94. package/dist-es/runtimeConfig.js +52 -0
  95. package/dist-es/runtimeConfig.native.js +11 -0
  96. package/dist-es/runtimeConfig.shared.js +42 -0
  97. package/dist-es/runtimeExtensions.js +9 -0
  98. package/dist-es/schemas/schemas_0.js +2381 -0
  99. package/dist-es/waiters/index.js +6 -0
  100. package/dist-es/waiters/waitForContributorInsightsEnabled.js +40 -0
  101. package/dist-es/waiters/waitForExportCompleted.js +40 -0
  102. package/dist-es/waiters/waitForImportCompleted.js +49 -0
  103. package/dist-es/waiters/waitForKinesisStreamingDestinationActive.js +49 -0
  104. package/dist-es/waiters/waitForTableExists.js +34 -0
  105. package/dist-es/waiters/waitForTableNotExists.js +25 -0
  106. package/dist-types/DynamoDB.d.ts +512 -0
  107. package/dist-types/DynamoDBClient.d.ts +272 -0
  108. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  109. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  110. package/dist-types/commands/BatchExecuteStatementCommand.d.ts +234 -0
  111. package/dist-types/commands/BatchGetItemCommand.d.ts +366 -0
  112. package/dist-types/commands/BatchWriteItemCommand.d.ts +414 -0
  113. package/dist-types/commands/CreateBackupCommand.d.ts +151 -0
  114. package/dist-types/commands/CreateGlobalTableCommand.d.ts +211 -0
  115. package/dist-types/commands/CreateTableCommand.d.ts +394 -0
  116. package/dist-types/commands/DeleteBackupCommand.d.ts +197 -0
  117. package/dist-types/commands/DeleteItemCommand.d.ts +296 -0
  118. package/dist-types/commands/DeleteResourcePolicyCommand.d.ts +145 -0
  119. package/dist-types/commands/DeleteTableCommand.d.ts +338 -0
  120. package/dist-types/commands/DescribeBackupCommand.d.ts +175 -0
  121. package/dist-types/commands/DescribeContinuousBackupsCommand.d.ts +104 -0
  122. package/dist-types/commands/DescribeContributorInsightsCommand.d.ts +94 -0
  123. package/dist-types/commands/DescribeEndpointsCommand.d.ts +78 -0
  124. package/dist-types/commands/DescribeExportCommand.d.ts +124 -0
  125. package/dist-types/commands/DescribeGlobalTableCommand.d.ts +133 -0
  126. package/dist-types/commands/DescribeGlobalTableSettingsCommand.d.ts +178 -0
  127. package/dist-types/commands/DescribeImportCommand.d.ts +165 -0
  128. package/dist-types/commands/DescribeKinesisStreamingDestinationCommand.d.ts +91 -0
  129. package/dist-types/commands/DescribeLimitsCommand.d.ts +165 -0
  130. package/dist-types/commands/DescribeTableCommand.d.ts +269 -0
  131. package/dist-types/commands/DescribeTableReplicaAutoScalingCommand.d.ts +164 -0
  132. package/dist-types/commands/DescribeTimeToLiveCommand.d.ts +86 -0
  133. package/dist-types/commands/DisableKinesisStreamingDestinationCommand.d.ts +128 -0
  134. package/dist-types/commands/EnableKinesisStreamingDestinationCommand.d.ts +130 -0
  135. package/dist-types/commands/ExecuteStatementCommand.d.ts +251 -0
  136. package/dist-types/commands/ExecuteTransactionCommand.d.ts +534 -0
  137. package/dist-types/commands/ExportTableToPointInTimeCommand.d.ts +152 -0
  138. package/dist-types/commands/GetItemCommand.d.ts +264 -0
  139. package/dist-types/commands/GetResourcePolicyCommand.d.ts +124 -0
  140. package/dist-types/commands/ImportTableCommand.d.ts +275 -0
  141. package/dist-types/commands/ListBackupsCommand.d.ts +109 -0
  142. package/dist-types/commands/ListContributorInsightsCommand.d.ts +92 -0
  143. package/dist-types/commands/ListExportsCommand.d.ts +104 -0
  144. package/dist-types/commands/ListGlobalTablesCommand.d.ts +95 -0
  145. package/dist-types/commands/ListImportsCommand.d.ts +110 -0
  146. package/dist-types/commands/ListTablesCommand.d.ts +103 -0
  147. package/dist-types/commands/ListTagsOfResourceCommand.d.ts +93 -0
  148. package/dist-types/commands/PutItemCommand.d.ts +315 -0
  149. package/dist-types/commands/PutResourcePolicyCommand.d.ts +147 -0
  150. package/dist-types/commands/QueryCommand.d.ts +338 -0
  151. package/dist-types/commands/RestoreTableFromBackupCommand.d.ts +373 -0
  152. package/dist-types/commands/RestoreTableToPointInTimeCommand.d.ts +407 -0
  153. package/dist-types/commands/ScanCommand.d.ts +337 -0
  154. package/dist-types/commands/TagResourceCommand.d.ts +145 -0
  155. package/dist-types/commands/TransactGetItemsCommand.d.ts +496 -0
  156. package/dist-types/commands/TransactWriteItemsCommand.d.ts +659 -0
  157. package/dist-types/commands/UntagResourceCommand.d.ts +140 -0
  158. package/dist-types/commands/UpdateContinuousBackupsCommand.d.ts +111 -0
  159. package/dist-types/commands/UpdateContributorInsightsCommand.d.ts +93 -0
  160. package/dist-types/commands/UpdateGlobalTableCommand.d.ts +179 -0
  161. package/dist-types/commands/UpdateGlobalTableSettingsCommand.d.ts +286 -0
  162. package/dist-types/commands/UpdateItemCommand.d.ts +323 -0
  163. package/dist-types/commands/UpdateKinesisStreamingDestinationCommand.d.ts +127 -0
  164. package/dist-types/commands/UpdateTableCommand.d.ts +458 -0
  165. package/dist-types/commands/UpdateTableReplicaAutoScalingCommand.d.ts +246 -0
  166. package/dist-types/commands/UpdateTimeToLiveCommand.d.ts +149 -0
  167. package/dist-types/commands/index.d.ts +57 -0
  168. package/dist-types/endpoint/EndpointParameters.d.ts +64 -0
  169. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  170. package/dist-types/endpoint/ruleset.d.ts +2 -0
  171. package/dist-types/extensionConfiguration.d.ts +9 -0
  172. package/dist-types/index.d.ts +34 -0
  173. package/dist-types/models/DynamoDBServiceException.d.ts +14 -0
  174. package/dist-types/models/enums.d.ts +589 -0
  175. package/dist-types/models/errors.d.ts +803 -0
  176. package/dist-types/models/models_0.d.ts +10010 -0
  177. package/dist-types/pagination/Interfaces.d.ts +8 -0
  178. package/dist-types/pagination/ListContributorInsightsPaginator.d.ts +7 -0
  179. package/dist-types/pagination/ListExportsPaginator.d.ts +7 -0
  180. package/dist-types/pagination/ListImportsPaginator.d.ts +7 -0
  181. package/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
  182. package/dist-types/pagination/QueryPaginator.d.ts +7 -0
  183. package/dist-types/pagination/ScanPaginator.d.ts +7 -0
  184. package/dist-types/pagination/index.d.ts +7 -0
  185. package/dist-types/runtimeConfig.browser.d.ts +60 -0
  186. package/dist-types/runtimeConfig.d.ts +60 -0
  187. package/dist-types/runtimeConfig.native.d.ts +59 -0
  188. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  189. package/dist-types/runtimeExtensions.d.ts +17 -0
  190. package/dist-types/schemas/schemas_0.d.ts +325 -0
  191. package/dist-types/ts3.4/DynamoDB.d.ts +1102 -0
  192. package/dist-types/ts3.4/DynamoDBClient.d.ts +472 -0
  193. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  194. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  195. package/dist-types/ts3.4/commands/BatchExecuteStatementCommand.d.ts +51 -0
  196. package/dist-types/ts3.4/commands/BatchGetItemCommand.d.ts +47 -0
  197. package/dist-types/ts3.4/commands/BatchWriteItemCommand.d.ts +47 -0
  198. package/dist-types/ts3.4/commands/CreateBackupCommand.d.ts +47 -0
  199. package/dist-types/ts3.4/commands/CreateGlobalTableCommand.d.ts +50 -0
  200. package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +47 -0
  201. package/dist-types/ts3.4/commands/DeleteBackupCommand.d.ts +47 -0
  202. package/dist-types/ts3.4/commands/DeleteItemCommand.d.ts +47 -0
  203. package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +51 -0
  204. package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +47 -0
  205. package/dist-types/ts3.4/commands/DescribeBackupCommand.d.ts +47 -0
  206. package/dist-types/ts3.4/commands/DescribeContinuousBackupsCommand.d.ts +51 -0
  207. package/dist-types/ts3.4/commands/DescribeContributorInsightsCommand.d.ts +51 -0
  208. package/dist-types/ts3.4/commands/DescribeEndpointsCommand.d.ts +51 -0
  209. package/dist-types/ts3.4/commands/DescribeExportCommand.d.ts +47 -0
  210. package/dist-types/ts3.4/commands/DescribeGlobalTableCommand.d.ts +51 -0
  211. package/dist-types/ts3.4/commands/DescribeGlobalTableSettingsCommand.d.ts +51 -0
  212. package/dist-types/ts3.4/commands/DescribeImportCommand.d.ts +47 -0
  213. package/dist-types/ts3.4/commands/DescribeKinesisStreamingDestinationCommand.d.ts +51 -0
  214. package/dist-types/ts3.4/commands/DescribeLimitsCommand.d.ts +47 -0
  215. package/dist-types/ts3.4/commands/DescribeTableCommand.d.ts +47 -0
  216. package/dist-types/ts3.4/commands/DescribeTableReplicaAutoScalingCommand.d.ts +51 -0
  217. package/dist-types/ts3.4/commands/DescribeTimeToLiveCommand.d.ts +51 -0
  218. package/dist-types/ts3.4/commands/DisableKinesisStreamingDestinationCommand.d.ts +51 -0
  219. package/dist-types/ts3.4/commands/EnableKinesisStreamingDestinationCommand.d.ts +51 -0
  220. package/dist-types/ts3.4/commands/ExecuteStatementCommand.d.ts +50 -0
  221. package/dist-types/ts3.4/commands/ExecuteTransactionCommand.d.ts +51 -0
  222. package/dist-types/ts3.4/commands/ExportTableToPointInTimeCommand.d.ts +51 -0
  223. package/dist-types/ts3.4/commands/GetItemCommand.d.ts +41 -0
  224. package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +50 -0
  225. package/dist-types/ts3.4/commands/ImportTableCommand.d.ts +47 -0
  226. package/dist-types/ts3.4/commands/ListBackupsCommand.d.ts +47 -0
  227. package/dist-types/ts3.4/commands/ListContributorInsightsCommand.d.ts +51 -0
  228. package/dist-types/ts3.4/commands/ListExportsCommand.d.ts +47 -0
  229. package/dist-types/ts3.4/commands/ListGlobalTablesCommand.d.ts +50 -0
  230. package/dist-types/ts3.4/commands/ListImportsCommand.d.ts +47 -0
  231. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +47 -0
  232. package/dist-types/ts3.4/commands/ListTagsOfResourceCommand.d.ts +51 -0
  233. package/dist-types/ts3.4/commands/PutItemCommand.d.ts +41 -0
  234. package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +50 -0
  235. package/dist-types/ts3.4/commands/QueryCommand.d.ts +41 -0
  236. package/dist-types/ts3.4/commands/RestoreTableFromBackupCommand.d.ts +51 -0
  237. package/dist-types/ts3.4/commands/RestoreTableToPointInTimeCommand.d.ts +51 -0
  238. package/dist-types/ts3.4/commands/ScanCommand.d.ts +41 -0
  239. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +45 -0
  240. package/dist-types/ts3.4/commands/TransactGetItemsCommand.d.ts +50 -0
  241. package/dist-types/ts3.4/commands/TransactWriteItemsCommand.d.ts +51 -0
  242. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +45 -0
  243. package/dist-types/ts3.4/commands/UpdateContinuousBackupsCommand.d.ts +51 -0
  244. package/dist-types/ts3.4/commands/UpdateContributorInsightsCommand.d.ts +51 -0
  245. package/dist-types/ts3.4/commands/UpdateGlobalTableCommand.d.ts +50 -0
  246. package/dist-types/ts3.4/commands/UpdateGlobalTableSettingsCommand.d.ts +51 -0
  247. package/dist-types/ts3.4/commands/UpdateItemCommand.d.ts +47 -0
  248. package/dist-types/ts3.4/commands/UpdateKinesisStreamingDestinationCommand.d.ts +51 -0
  249. package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +47 -0
  250. package/dist-types/ts3.4/commands/UpdateTableReplicaAutoScalingCommand.d.ts +51 -0
  251. package/dist-types/ts3.4/commands/UpdateTimeToLiveCommand.d.ts +50 -0
  252. package/dist-types/ts3.4/commands/index.d.ts +57 -0
  253. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +65 -0
  254. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  255. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  256. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  257. package/dist-types/ts3.4/index.d.ts +13 -0
  258. package/dist-types/ts3.4/models/DynamoDBServiceException.d.ts +9 -0
  259. package/dist-types/ts3.4/models/enums.d.ts +313 -0
  260. package/dist-types/ts3.4/models/errors.d.ts +286 -0
  261. package/dist-types/ts3.4/models/models_0.d.ts +1557 -0
  262. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  263. package/dist-types/ts3.4/pagination/ListContributorInsightsPaginator.d.ts +11 -0
  264. package/dist-types/ts3.4/pagination/ListExportsPaginator.d.ts +11 -0
  265. package/dist-types/ts3.4/pagination/ListImportsPaginator.d.ts +11 -0
  266. package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
  267. package/dist-types/ts3.4/pagination/QueryPaginator.d.ts +11 -0
  268. package/dist-types/ts3.4/pagination/ScanPaginator.d.ts +8 -0
  269. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  270. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +114 -0
  271. package/dist-types/ts3.4/runtimeConfig.d.ts +111 -0
  272. package/dist-types/ts3.4/runtimeConfig.native.d.ts +118 -0
  273. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +30 -0
  274. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  275. package/dist-types/ts3.4/schemas/schemas_0.d.ts +325 -0
  276. package/dist-types/ts3.4/waiters/index.d.ts +6 -0
  277. package/dist-types/ts3.4/waiters/waitForContributorInsightsEnabled.d.ts +11 -0
  278. package/dist-types/ts3.4/waiters/waitForExportCompleted.d.ts +11 -0
  279. package/dist-types/ts3.4/waiters/waitForImportCompleted.d.ts +11 -0
  280. package/dist-types/ts3.4/waiters/waitForKinesisStreamingDestinationActive.d.ts +11 -0
  281. package/dist-types/ts3.4/waiters/waitForTableExists.d.ts +11 -0
  282. package/dist-types/ts3.4/waiters/waitForTableNotExists.d.ts +11 -0
  283. package/dist-types/waiters/index.d.ts +6 -0
  284. package/dist-types/waiters/waitForContributorInsightsEnabled.d.ts +14 -0
  285. package/dist-types/waiters/waitForExportCompleted.d.ts +14 -0
  286. package/dist-types/waiters/waitForImportCompleted.d.ts +14 -0
  287. package/dist-types/waiters/waitForKinesisStreamingDestinationActive.d.ts +14 -0
  288. package/dist-types/waiters/waitForTableExists.d.ts +14 -0
  289. package/dist-types/waiters/waitForTableNotExists.d.ts +14 -0
  290. package/package.json +130 -0
@@ -0,0 +1,534 @@
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 { ExecuteTransactionInput, ExecuteTransactionOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ExecuteTransactionCommand}.
14
+ */
15
+ export interface ExecuteTransactionCommandInput extends ExecuteTransactionInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ExecuteTransactionCommand}.
21
+ */
22
+ export interface ExecuteTransactionCommandOutput extends ExecuteTransactionOutput, __MetadataBearer {
23
+ }
24
+ declare const ExecuteTransactionCommand_base: {
25
+ new (input: ExecuteTransactionCommandInput): import("@smithy/smithy-client").CommandImpl<ExecuteTransactionCommandInput, ExecuteTransactionCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ExecuteTransactionCommandInput): import("@smithy/smithy-client").CommandImpl<ExecuteTransactionCommandInput, ExecuteTransactionCommandOutput, DynamoDBClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>This operation allows you to perform transactional reads or writes on data stored in
31
+ * DynamoDB, using PartiQL.</p>
32
+ * <note>
33
+ * <p>The entire transaction must consist of either read statements or write statements,
34
+ * you cannot mix both in one transaction. The EXISTS function is an exception and can
35
+ * be used to check the condition of specific attributes of the item in a similar
36
+ * manner to <code>ConditionCheck</code> in the <a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/transaction-apis.html#transaction-apis-txwriteitems">TransactWriteItems</a> API.</p>
37
+ * </note>
38
+ * @example
39
+ * Use a bare-bones client and the command you need to make an API call.
40
+ * ```javascript
41
+ * import { DynamoDBClient, ExecuteTransactionCommand } from "@aws-sdk/client-dynamodb"; // ES Modules import
42
+ * // const { DynamoDBClient, ExecuteTransactionCommand } = require("@aws-sdk/client-dynamodb"); // CommonJS import
43
+ * // import type { DynamoDBClientConfig } from "@aws-sdk/client-dynamodb";
44
+ * const config = {}; // type is DynamoDBClientConfig
45
+ * const client = new DynamoDBClient(config);
46
+ * const input = { // ExecuteTransactionInput
47
+ * TransactStatements: [ // ParameterizedStatements // required
48
+ * { // ParameterizedStatement
49
+ * Statement: "STRING_VALUE", // required
50
+ * Parameters: [ // PreparedStatementParameters
51
+ * { // AttributeValue Union: only one key present
52
+ * S: "STRING_VALUE",
53
+ * N: "STRING_VALUE",
54
+ * B: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
55
+ * SS: [ // StringSetAttributeValue
56
+ * "STRING_VALUE",
57
+ * ],
58
+ * NS: [ // NumberSetAttributeValue
59
+ * "STRING_VALUE",
60
+ * ],
61
+ * BS: [ // BinarySetAttributeValue
62
+ * new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
63
+ * ],
64
+ * M: { // MapAttributeValue
65
+ * "<keys>": {// Union: only one key present
66
+ * S: "STRING_VALUE",
67
+ * N: "STRING_VALUE",
68
+ * B: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
69
+ * SS: [
70
+ * "STRING_VALUE",
71
+ * ],
72
+ * NS: [
73
+ * "STRING_VALUE",
74
+ * ],
75
+ * BS: [
76
+ * new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("")
77
+ * ],
78
+ * M: {
79
+ * "<keys>": "<AttributeValue>",
80
+ * },
81
+ * L: [ // ListAttributeValue
82
+ * "<AttributeValue>",
83
+ * ],
84
+ * NULL: true || false,
85
+ * BOOL: true || false,
86
+ * },
87
+ * },
88
+ * L: [
89
+ * "<AttributeValue>",
90
+ * ],
91
+ * NULL: true || false,
92
+ * BOOL: true || false,
93
+ * },
94
+ * ],
95
+ * ReturnValuesOnConditionCheckFailure: "ALL_OLD" || "NONE",
96
+ * },
97
+ * ],
98
+ * ClientRequestToken: "STRING_VALUE",
99
+ * ReturnConsumedCapacity: "INDEXES" || "TOTAL" || "NONE",
100
+ * };
101
+ * const command = new ExecuteTransactionCommand(input);
102
+ * const response = await client.send(command);
103
+ * // { // ExecuteTransactionOutput
104
+ * // Responses: [ // ItemResponseList
105
+ * // { // ItemResponse
106
+ * // Item: { // AttributeMap
107
+ * // "<keys>": { // AttributeValue Union: only one key present
108
+ * // S: "STRING_VALUE",
109
+ * // N: "STRING_VALUE",
110
+ * // B: new Uint8Array(),
111
+ * // SS: [ // StringSetAttributeValue
112
+ * // "STRING_VALUE",
113
+ * // ],
114
+ * // NS: [ // NumberSetAttributeValue
115
+ * // "STRING_VALUE",
116
+ * // ],
117
+ * // BS: [ // BinarySetAttributeValue
118
+ * // new Uint8Array(),
119
+ * // ],
120
+ * // M: { // MapAttributeValue
121
+ * // "<keys>": {// Union: only one key present
122
+ * // S: "STRING_VALUE",
123
+ * // N: "STRING_VALUE",
124
+ * // B: new Uint8Array(),
125
+ * // SS: [
126
+ * // "STRING_VALUE",
127
+ * // ],
128
+ * // NS: [
129
+ * // "STRING_VALUE",
130
+ * // ],
131
+ * // BS: [
132
+ * // new Uint8Array(),
133
+ * // ],
134
+ * // M: {
135
+ * // "<keys>": "<AttributeValue>",
136
+ * // },
137
+ * // L: [ // ListAttributeValue
138
+ * // "<AttributeValue>",
139
+ * // ],
140
+ * // NULL: true || false,
141
+ * // BOOL: true || false,
142
+ * // },
143
+ * // },
144
+ * // L: [
145
+ * // "<AttributeValue>",
146
+ * // ],
147
+ * // NULL: true || false,
148
+ * // BOOL: true || false,
149
+ * // },
150
+ * // },
151
+ * // },
152
+ * // ],
153
+ * // ConsumedCapacity: [ // ConsumedCapacityMultiple
154
+ * // { // ConsumedCapacity
155
+ * // TableName: "STRING_VALUE",
156
+ * // CapacityUnits: Number("double"),
157
+ * // ReadCapacityUnits: Number("double"),
158
+ * // WriteCapacityUnits: Number("double"),
159
+ * // Table: { // Capacity
160
+ * // ReadCapacityUnits: Number("double"),
161
+ * // WriteCapacityUnits: Number("double"),
162
+ * // CapacityUnits: Number("double"),
163
+ * // },
164
+ * // LocalSecondaryIndexes: { // SecondaryIndexesCapacityMap
165
+ * // "<keys>": {
166
+ * // ReadCapacityUnits: Number("double"),
167
+ * // WriteCapacityUnits: Number("double"),
168
+ * // CapacityUnits: Number("double"),
169
+ * // },
170
+ * // },
171
+ * // GlobalSecondaryIndexes: {
172
+ * // "<keys>": {
173
+ * // ReadCapacityUnits: Number("double"),
174
+ * // WriteCapacityUnits: Number("double"),
175
+ * // CapacityUnits: Number("double"),
176
+ * // },
177
+ * // },
178
+ * // },
179
+ * // ],
180
+ * // };
181
+ *
182
+ * ```
183
+ *
184
+ * @param ExecuteTransactionCommandInput - {@link ExecuteTransactionCommandInput}
185
+ * @returns {@link ExecuteTransactionCommandOutput}
186
+ * @see {@link ExecuteTransactionCommandInput} for command's `input` shape.
187
+ * @see {@link ExecuteTransactionCommandOutput} for command's `response` shape.
188
+ * @see {@link DynamoDBClientResolvedConfig | config} for DynamoDBClient's `config` shape.
189
+ *
190
+ * @throws {@link IdempotentParameterMismatchException} (client fault)
191
+ * <p>DynamoDB rejected the request because you retried a request with a
192
+ * different payload but with an idempotent token that was already used.</p>
193
+ *
194
+ * @throws {@link InternalServerError} (server fault)
195
+ * <p>An error occurred on the server side.</p>
196
+ *
197
+ * @throws {@link ProvisionedThroughputExceededException} (client fault)
198
+ * <p>The request was denied due to request throttling. For detailed information about
199
+ * 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
200
+ * SDKs for DynamoDB automatically retry requests that receive this exception.
201
+ * Your request is eventually successful, unless your retry queue is too large to finish.
202
+ * Reduce the frequency of requests and use exponential backoff. For more information, go
203
+ * 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>
204
+ *
205
+ * @throws {@link RequestLimitExceeded} (client fault)
206
+ * <p>Throughput exceeds the current throughput quota for your account. For detailed
207
+ * information about why the request was throttled and the ARN of the impacted resource,
208
+ * 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
209
+ * increase.</p>
210
+ *
211
+ * @throws {@link ResourceNotFoundException} (client fault)
212
+ * <p>The operation tried to access a nonexistent table or index. The resource might not
213
+ * be specified correctly, or its status might not be <code>ACTIVE</code>.</p>
214
+ *
215
+ * @throws {@link ThrottlingException} (client fault)
216
+ * <p>The request was denied due to request throttling. For detailed information about why
217
+ * 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>
218
+ *
219
+ * @throws {@link TransactionCanceledException} (client fault)
220
+ * <p>The entire transaction request was canceled.</p>
221
+ * <p>DynamoDB cancels a <code>TransactWriteItems</code> request under the following
222
+ * circumstances:</p>
223
+ * <ul>
224
+ * <li>
225
+ * <p>A condition in one of the condition expressions is not met.</p>
226
+ * </li>
227
+ * <li>
228
+ * <p>A table in the <code>TransactWriteItems</code> request is in a different
229
+ * account or region.</p>
230
+ * </li>
231
+ * <li>
232
+ * <p>More than one action in the <code>TransactWriteItems</code> operation
233
+ * targets the same item.</p>
234
+ * </li>
235
+ * <li>
236
+ * <p>There is insufficient provisioned capacity for the transaction to be
237
+ * completed.</p>
238
+ * </li>
239
+ * <li>
240
+ * <p>An item size becomes too large (larger than 400 KB), or a local secondary
241
+ * index (LSI) becomes too large, or a similar validation error occurs because of
242
+ * changes made by the transaction.</p>
243
+ * </li>
244
+ * <li>
245
+ * <p>There is a user error, such as an invalid data format.</p>
246
+ * </li>
247
+ * <li>
248
+ * <p> There is an ongoing <code>TransactWriteItems</code> operation that
249
+ * conflicts with a concurrent <code>TransactWriteItems</code> request. In this
250
+ * case the <code>TransactWriteItems</code> operation fails with a
251
+ * <code>TransactionCanceledException</code>. </p>
252
+ * </li>
253
+ * </ul>
254
+ * <p>DynamoDB cancels a <code>TransactGetItems</code> request under the
255
+ * following circumstances:</p>
256
+ * <ul>
257
+ * <li>
258
+ * <p>There is an ongoing <code>TransactGetItems</code> operation that conflicts
259
+ * with a concurrent <code>PutItem</code>, <code>UpdateItem</code>,
260
+ * <code>DeleteItem</code> or <code>TransactWriteItems</code> request. In this
261
+ * case the <code>TransactGetItems</code> operation fails with a
262
+ * <code>TransactionCanceledException</code>.</p>
263
+ * </li>
264
+ * <li>
265
+ * <p>A table in the <code>TransactGetItems</code> request is in a different
266
+ * account or region.</p>
267
+ * </li>
268
+ * <li>
269
+ * <p>There is insufficient provisioned capacity for the transaction to be
270
+ * completed.</p>
271
+ * </li>
272
+ * <li>
273
+ * <p>There is a user error, such as an invalid data format.</p>
274
+ * </li>
275
+ * </ul>
276
+ * <note>
277
+ * <p>DynamoDB lists the cancellation reasons on the
278
+ * <code>CancellationReasons</code> property. Transaction cancellation reasons are ordered in the order of requested
279
+ * items, if an item has no error it will have <code>None</code> code and
280
+ * <code>Null</code> message.</p>
281
+ * </note>
282
+ * <p>Cancellation reason codes and possible error messages:</p>
283
+ * <ul>
284
+ * <li>
285
+ * <p>No Errors:</p>
286
+ * <ul>
287
+ * <li>
288
+ * <p>Code: <code>None</code>
289
+ * </p>
290
+ * </li>
291
+ * <li>
292
+ * <p>Message: <code>null</code>
293
+ * </p>
294
+ * </li>
295
+ * </ul>
296
+ * </li>
297
+ * <li>
298
+ * <p>Conditional Check Failed:</p>
299
+ * <ul>
300
+ * <li>
301
+ * <p>Code: <code>ConditionalCheckFailed</code>
302
+ * </p>
303
+ * </li>
304
+ * <li>
305
+ * <p>Message: The conditional request failed. </p>
306
+ * </li>
307
+ * </ul>
308
+ * </li>
309
+ * <li>
310
+ * <p>Item Collection Size Limit Exceeded:</p>
311
+ * <ul>
312
+ * <li>
313
+ * <p>Code: <code>ItemCollectionSizeLimitExceeded</code>
314
+ * </p>
315
+ * </li>
316
+ * <li>
317
+ * <p>Message: Collection size exceeded.</p>
318
+ * </li>
319
+ * </ul>
320
+ * </li>
321
+ * <li>
322
+ * <p>Transaction Conflict:</p>
323
+ * <ul>
324
+ * <li>
325
+ * <p>Code: <code>TransactionConflict</code>
326
+ * </p>
327
+ * </li>
328
+ * <li>
329
+ * <p>Message: Transaction is ongoing for the item.</p>
330
+ * </li>
331
+ * </ul>
332
+ * </li>
333
+ * <li>
334
+ * <p>Provisioned Throughput Exceeded:</p>
335
+ * <ul>
336
+ * <li>
337
+ * <p>Code: <code>ProvisionedThroughputExceeded</code>
338
+ * </p>
339
+ * </li>
340
+ * <li>
341
+ * <p>Messages:</p>
342
+ * <ul>
343
+ * <li>
344
+ * <p>The level of configured provisioned throughput for the
345
+ * table was exceeded. Consider increasing your provisioning level
346
+ * with the UpdateTable API.</p>
347
+ * <note>
348
+ * <p>This Message is received when provisioned throughput is
349
+ * exceeded is on a provisioned DynamoDB
350
+ * table.</p>
351
+ * </note>
352
+ * </li>
353
+ * <li>
354
+ * <p>The level of configured provisioned throughput for one or
355
+ * more global secondary indexes of the table was exceeded.
356
+ * Consider increasing your provisioning level for the
357
+ * under-provisioned global secondary indexes with the UpdateTable
358
+ * API.</p>
359
+ * <note>
360
+ * <p>This message is returned when provisioned throughput is
361
+ * exceeded is on a provisioned GSI.</p>
362
+ * </note>
363
+ * </li>
364
+ * </ul>
365
+ * </li>
366
+ * </ul>
367
+ * </li>
368
+ * <li>
369
+ * <p>Throttling Error:</p>
370
+ * <ul>
371
+ * <li>
372
+ * <p>Code: <code>ThrottlingError</code>
373
+ * </p>
374
+ * </li>
375
+ * <li>
376
+ * <p>Messages: </p>
377
+ * <ul>
378
+ * <li>
379
+ * <p>Throughput exceeds the current capacity of your table or
380
+ * index. DynamoDB is automatically scaling your table or
381
+ * index so please try again shortly. If exceptions persist, check
382
+ * if you have a hot key:
383
+ * https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/bp-partition-key-design.html.</p>
384
+ * <note>
385
+ * <p>This message is returned when writes get throttled on an
386
+ * On-Demand table as DynamoDB is automatically
387
+ * scaling the table.</p>
388
+ * </note>
389
+ * </li>
390
+ * <li>
391
+ * <p>Throughput exceeds the current capacity for one or more
392
+ * global secondary indexes. DynamoDB is automatically
393
+ * scaling your index so please try again shortly.</p>
394
+ * <note>
395
+ * <p>This message is returned when writes get throttled on an
396
+ * On-Demand GSI as DynamoDB is automatically scaling
397
+ * the GSI.</p>
398
+ * </note>
399
+ * </li>
400
+ * </ul>
401
+ * </li>
402
+ * </ul>
403
+ * </li>
404
+ * <li>
405
+ * <p>Validation Error:</p>
406
+ * <ul>
407
+ * <li>
408
+ * <p>Code: <code>ValidationError</code>
409
+ * </p>
410
+ * </li>
411
+ * <li>
412
+ * <p>Messages: </p>
413
+ * <ul>
414
+ * <li>
415
+ * <p>One or more parameter values were invalid.</p>
416
+ * </li>
417
+ * <li>
418
+ * <p>The update expression attempted to update the secondary
419
+ * index key beyond allowed size limits.</p>
420
+ * </li>
421
+ * <li>
422
+ * <p>The update expression attempted to update the secondary
423
+ * index key to unsupported type.</p>
424
+ * </li>
425
+ * <li>
426
+ * <p>An operand in the update expression has an incorrect data
427
+ * type.</p>
428
+ * </li>
429
+ * <li>
430
+ * <p>Item size to update has exceeded the maximum allowed
431
+ * size.</p>
432
+ * </li>
433
+ * <li>
434
+ * <p>Number overflow. Attempting to store a number with
435
+ * magnitude larger than supported range.</p>
436
+ * </li>
437
+ * <li>
438
+ * <p>Type mismatch for attribute to update.</p>
439
+ * </li>
440
+ * <li>
441
+ * <p>Nesting Levels have exceeded supported limits.</p>
442
+ * </li>
443
+ * <li>
444
+ * <p>The document path provided in the update expression is
445
+ * invalid for update.</p>
446
+ * </li>
447
+ * <li>
448
+ * <p>The provided expression refers to an attribute that does
449
+ * not exist in the item.</p>
450
+ * </li>
451
+ * </ul>
452
+ * </li>
453
+ * </ul>
454
+ * </li>
455
+ * </ul>
456
+ *
457
+ * @throws {@link TransactionInProgressException} (client fault)
458
+ * <p>The transaction with the given request token is already in progress.</p>
459
+ * <p> Recommended Settings </p>
460
+ * <note>
461
+ * <p> This is a general recommendation for handling the
462
+ * <code>TransactionInProgressException</code>. These settings help ensure that the
463
+ * client retries will trigger completion of the ongoing
464
+ * <code>TransactWriteItems</code> request. </p>
465
+ * </note>
466
+ * <ul>
467
+ * <li>
468
+ * <p> Set <code>clientExecutionTimeout</code> to a value that allows at least one
469
+ * retry to be processed after 5 seconds have elapsed since the first attempt for
470
+ * the <code>TransactWriteItems</code> operation. </p>
471
+ * </li>
472
+ * <li>
473
+ * <p> Set <code>socketTimeout</code> to a value a little lower than the
474
+ * <code>requestTimeout</code> setting. </p>
475
+ * </li>
476
+ * <li>
477
+ * <p>
478
+ * <code>requestTimeout</code> should be set based on the time taken for the
479
+ * individual retries of a single HTTP request for your use case, but setting it to
480
+ * 1 second or higher should work well to reduce chances of retries and
481
+ * <code>TransactionInProgressException</code> errors. </p>
482
+ * </li>
483
+ * <li>
484
+ * <p> Use exponential backoff when retrying and tune backoff if needed. </p>
485
+ * </li>
486
+ * </ul>
487
+ * <p> Assuming <a href="https://github.com/aws/aws-sdk-java/blob/fd409dee8ae23fb8953e0bb4dbde65536a7e0514/aws-java-sdk-core/src/main/java/com/amazonaws/retry/PredefinedRetryPolicies.java#L97">default retry policy</a>, example timeout settings based on the guidelines
488
+ * above are as follows: </p>
489
+ * <p>Example timeline:</p>
490
+ * <ul>
491
+ * <li>
492
+ * <p>0-1000 first attempt</p>
493
+ * </li>
494
+ * <li>
495
+ * <p>1000-1500 first sleep/delay (default retry policy uses 500 ms as base delay
496
+ * for 4xx errors)</p>
497
+ * </li>
498
+ * <li>
499
+ * <p>1500-2500 second attempt</p>
500
+ * </li>
501
+ * <li>
502
+ * <p>2500-3500 second sleep/delay (500 * 2, exponential backoff)</p>
503
+ * </li>
504
+ * <li>
505
+ * <p>3500-4500 third attempt</p>
506
+ * </li>
507
+ * <li>
508
+ * <p>4500-6500 third sleep/delay (500 * 2^2)</p>
509
+ * </li>
510
+ * <li>
511
+ * <p>6500-7500 fourth attempt (this can trigger inline recovery since 5 seconds
512
+ * have elapsed since the first attempt reached TC)</p>
513
+ * </li>
514
+ * </ul>
515
+ *
516
+ * @throws {@link DynamoDBServiceException}
517
+ * <p>Base exception class for all service exceptions from DynamoDB service.</p>
518
+ *
519
+ *
520
+ * @public
521
+ */
522
+ export declare class ExecuteTransactionCommand extends ExecuteTransactionCommand_base {
523
+ /** @internal type navigation helper, not in runtime. */
524
+ protected static __types: {
525
+ api: {
526
+ input: ExecuteTransactionInput;
527
+ output: ExecuteTransactionOutput;
528
+ };
529
+ sdk: {
530
+ input: ExecuteTransactionCommandInput;
531
+ output: ExecuteTransactionCommandOutput;
532
+ };
533
+ };
534
+ }