@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,803 @@
1
+ import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { DynamoDBServiceException as __BaseException } from "./DynamoDBServiceException";
3
+ import { AttributeValue, CancellationReason, ThrottlingReason } from "./models_0";
4
+ /**
5
+ * <p>There is another ongoing conflicting backup control plane operation on the table.
6
+ * The backup is either being created, deleted or restored to a table.</p>
7
+ * @public
8
+ */
9
+ export declare class BackupInUseException extends __BaseException {
10
+ readonly name: "BackupInUseException";
11
+ readonly $fault: "client";
12
+ /**
13
+ * @internal
14
+ */
15
+ constructor(opts: __ExceptionOptionType<BackupInUseException, __BaseException>);
16
+ }
17
+ /**
18
+ * <p>Backup not found for the given BackupARN. </p>
19
+ * @public
20
+ */
21
+ export declare class BackupNotFoundException extends __BaseException {
22
+ readonly name: "BackupNotFoundException";
23
+ readonly $fault: "client";
24
+ /**
25
+ * @internal
26
+ */
27
+ constructor(opts: __ExceptionOptionType<BackupNotFoundException, __BaseException>);
28
+ }
29
+ /**
30
+ * <p>An error occurred on the server side.</p>
31
+ * @public
32
+ */
33
+ export declare class InternalServerError extends __BaseException {
34
+ readonly name: "InternalServerError";
35
+ readonly $fault: "server";
36
+ /**
37
+ * @internal
38
+ */
39
+ constructor(opts: __ExceptionOptionType<InternalServerError, __BaseException>);
40
+ }
41
+ /**
42
+ * <p>Throughput exceeds the current throughput quota for your account. For detailed
43
+ * information about why the request was throttled and the ARN of the impacted resource,
44
+ * 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
45
+ * increase.</p>
46
+ * @public
47
+ */
48
+ export declare class RequestLimitExceeded extends __BaseException {
49
+ readonly name: "RequestLimitExceeded";
50
+ readonly $fault: "client";
51
+ /**
52
+ * <p>A list of <a href="https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ThrottlingReason.html">ThrottlingReason</a> that
53
+ * provide detailed diagnostic information about why the request was throttled.
54
+ * </p>
55
+ * @public
56
+ */
57
+ ThrottlingReasons?: ThrottlingReason[] | undefined;
58
+ /**
59
+ * @internal
60
+ */
61
+ constructor(opts: __ExceptionOptionType<RequestLimitExceeded, __BaseException>);
62
+ }
63
+ /**
64
+ * <p>The request was denied due to request throttling. For detailed information about why
65
+ * 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>
66
+ * @public
67
+ */
68
+ export declare class ThrottlingException extends __BaseException {
69
+ readonly name: "ThrottlingException";
70
+ readonly $fault: "client";
71
+ /**
72
+ * <p>A list of <a href="https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ThrottlingReason.html">ThrottlingReason</a> that
73
+ * provide detailed diagnostic information about why the request was throttled.
74
+ * </p>
75
+ * @public
76
+ */
77
+ throttlingReasons?: ThrottlingReason[] | undefined;
78
+ /**
79
+ * @internal
80
+ */
81
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
82
+ }
83
+ /**
84
+ * @public
85
+ */
86
+ export declare class InvalidEndpointException extends __BaseException {
87
+ readonly name: "InvalidEndpointException";
88
+ readonly $fault: "client";
89
+ Message?: string | undefined;
90
+ /**
91
+ * @internal
92
+ */
93
+ constructor(opts: __ExceptionOptionType<InvalidEndpointException, __BaseException>);
94
+ }
95
+ /**
96
+ * <p>The request was denied due to request throttling. For detailed information about
97
+ * 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
98
+ * SDKs for DynamoDB automatically retry requests that receive this exception.
99
+ * Your request is eventually successful, unless your retry queue is too large to finish.
100
+ * Reduce the frequency of requests and use exponential backoff. For more information, go
101
+ * 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>
102
+ * @public
103
+ */
104
+ export declare class ProvisionedThroughputExceededException extends __BaseException {
105
+ readonly name: "ProvisionedThroughputExceededException";
106
+ readonly $fault: "client";
107
+ /**
108
+ * <p>A list of <a href="https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_ThrottlingReason.html">ThrottlingReason</a> that
109
+ * provide detailed diagnostic information about why the request was throttled.
110
+ * </p>
111
+ * @public
112
+ */
113
+ ThrottlingReasons?: ThrottlingReason[] | undefined;
114
+ /**
115
+ * @internal
116
+ */
117
+ constructor(opts: __ExceptionOptionType<ProvisionedThroughputExceededException, __BaseException>);
118
+ }
119
+ /**
120
+ * <p>The operation tried to access a nonexistent table or index. The resource might not
121
+ * be specified correctly, or its status might not be <code>ACTIVE</code>.</p>
122
+ * @public
123
+ */
124
+ export declare class ResourceNotFoundException extends __BaseException {
125
+ readonly name: "ResourceNotFoundException";
126
+ readonly $fault: "client";
127
+ /**
128
+ * @internal
129
+ */
130
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
131
+ }
132
+ /**
133
+ * <p>An item collection is too large. This exception is only returned for tables that
134
+ * have one or more local secondary indexes.</p>
135
+ * @public
136
+ */
137
+ export declare class ItemCollectionSizeLimitExceededException extends __BaseException {
138
+ readonly name: "ItemCollectionSizeLimitExceededException";
139
+ readonly $fault: "client";
140
+ /**
141
+ * @internal
142
+ */
143
+ constructor(opts: __ExceptionOptionType<ItemCollectionSizeLimitExceededException, __BaseException>);
144
+ }
145
+ /**
146
+ * <p>The request was rejected because one or more items in the request are being modified
147
+ * by a request in another Region. </p>
148
+ * @public
149
+ */
150
+ export declare class ReplicatedWriteConflictException extends __BaseException {
151
+ readonly name: "ReplicatedWriteConflictException";
152
+ readonly $fault: "client";
153
+ $retryable: {};
154
+ /**
155
+ * @internal
156
+ */
157
+ constructor(opts: __ExceptionOptionType<ReplicatedWriteConflictException, __BaseException>);
158
+ }
159
+ /**
160
+ * <p>Backups have not yet been enabled for this table.</p>
161
+ * @public
162
+ */
163
+ export declare class ContinuousBackupsUnavailableException extends __BaseException {
164
+ readonly name: "ContinuousBackupsUnavailableException";
165
+ readonly $fault: "client";
166
+ /**
167
+ * @internal
168
+ */
169
+ constructor(opts: __ExceptionOptionType<ContinuousBackupsUnavailableException, __BaseException>);
170
+ }
171
+ /**
172
+ * <p>There is no limit to the number of daily on-demand backups that can be taken. </p>
173
+ * <p>For most purposes, up to 500 simultaneous table operations are allowed per account.
174
+ * These operations include <code>CreateTable</code>, <code>UpdateTable</code>,
175
+ * <code>DeleteTable</code>,<code>UpdateTimeToLive</code>,
176
+ * <code>RestoreTableFromBackup</code>, and <code>RestoreTableToPointInTime</code>. </p>
177
+ * <p>When you are creating a table with one or more secondary indexes, you can have up
178
+ * to 250 such requests running at a time. However, if the table or index specifications
179
+ * are complex, then DynamoDB might temporarily reduce the number of concurrent
180
+ * operations.</p>
181
+ * <p>When importing into DynamoDB, up to 50 simultaneous import table operations are
182
+ * allowed per account.</p>
183
+ * <p>There is a soft account quota of 2,500 tables.</p>
184
+ * <p>GetRecords was called with a value of more than 1000 for the limit request
185
+ * parameter.</p>
186
+ * <p>More than 2 processes are reading from the same streams shard at the same time.
187
+ * Exceeding this limit may result in request throttling.</p>
188
+ * @public
189
+ */
190
+ export declare class LimitExceededException extends __BaseException {
191
+ readonly name: "LimitExceededException";
192
+ readonly $fault: "client";
193
+ /**
194
+ * @internal
195
+ */
196
+ constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
197
+ }
198
+ /**
199
+ * <p>A target table with the specified name is either being created or deleted.
200
+ * </p>
201
+ * @public
202
+ */
203
+ export declare class TableInUseException extends __BaseException {
204
+ readonly name: "TableInUseException";
205
+ readonly $fault: "client";
206
+ /**
207
+ * @internal
208
+ */
209
+ constructor(opts: __ExceptionOptionType<TableInUseException, __BaseException>);
210
+ }
211
+ /**
212
+ * <p>A source table with the name <code>TableName</code> does not currently exist within
213
+ * the subscriber's account or the subscriber is operating in the wrong Amazon Web Services
214
+ * Region.</p>
215
+ * @public
216
+ */
217
+ export declare class TableNotFoundException extends __BaseException {
218
+ readonly name: "TableNotFoundException";
219
+ readonly $fault: "client";
220
+ /**
221
+ * @internal
222
+ */
223
+ constructor(opts: __ExceptionOptionType<TableNotFoundException, __BaseException>);
224
+ }
225
+ /**
226
+ * <p>The specified global table already exists.</p>
227
+ * @public
228
+ */
229
+ export declare class GlobalTableAlreadyExistsException extends __BaseException {
230
+ readonly name: "GlobalTableAlreadyExistsException";
231
+ readonly $fault: "client";
232
+ /**
233
+ * @internal
234
+ */
235
+ constructor(opts: __ExceptionOptionType<GlobalTableAlreadyExistsException, __BaseException>);
236
+ }
237
+ /**
238
+ * <p>The operation conflicts with the resource's availability. For example:</p>
239
+ * <ul>
240
+ * <li>
241
+ * <p>You attempted to recreate an existing table.</p>
242
+ * </li>
243
+ * <li>
244
+ * <p>You tried to delete a table currently in the <code>CREATING</code>
245
+ * state.</p>
246
+ * </li>
247
+ * <li>
248
+ * <p>You tried to update a resource that was already being updated.</p>
249
+ * </li>
250
+ * </ul>
251
+ * <p>When appropriate, wait for the ongoing update to complete and attempt the request
252
+ * again.</p>
253
+ * @public
254
+ */
255
+ export declare class ResourceInUseException extends __BaseException {
256
+ readonly name: "ResourceInUseException";
257
+ readonly $fault: "client";
258
+ /**
259
+ * @internal
260
+ */
261
+ constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
262
+ }
263
+ /**
264
+ * <p>Operation was rejected because there is an ongoing transaction for the
265
+ * item.</p>
266
+ * @public
267
+ */
268
+ export declare class TransactionConflictException extends __BaseException {
269
+ readonly name: "TransactionConflictException";
270
+ readonly $fault: "client";
271
+ /**
272
+ * @internal
273
+ */
274
+ constructor(opts: __ExceptionOptionType<TransactionConflictException, __BaseException>);
275
+ }
276
+ /**
277
+ * <p>The operation tried to access a nonexistent resource-based policy.</p>
278
+ * <p>If you specified an <code>ExpectedRevisionId</code>, it's possible that a policy is
279
+ * present for the resource but its revision ID didn't match the expected value.</p>
280
+ * @public
281
+ */
282
+ export declare class PolicyNotFoundException extends __BaseException {
283
+ readonly name: "PolicyNotFoundException";
284
+ readonly $fault: "client";
285
+ /**
286
+ * @internal
287
+ */
288
+ constructor(opts: __ExceptionOptionType<PolicyNotFoundException, __BaseException>);
289
+ }
290
+ /**
291
+ * <p>The specified export was not found.</p>
292
+ * @public
293
+ */
294
+ export declare class ExportNotFoundException extends __BaseException {
295
+ readonly name: "ExportNotFoundException";
296
+ readonly $fault: "client";
297
+ /**
298
+ * @internal
299
+ */
300
+ constructor(opts: __ExceptionOptionType<ExportNotFoundException, __BaseException>);
301
+ }
302
+ /**
303
+ * <p>The specified global table does not exist.</p>
304
+ * @public
305
+ */
306
+ export declare class GlobalTableNotFoundException extends __BaseException {
307
+ readonly name: "GlobalTableNotFoundException";
308
+ readonly $fault: "client";
309
+ /**
310
+ * @internal
311
+ */
312
+ constructor(opts: __ExceptionOptionType<GlobalTableNotFoundException, __BaseException>);
313
+ }
314
+ /**
315
+ * <p> The specified import was not found. </p>
316
+ * @public
317
+ */
318
+ export declare class ImportNotFoundException extends __BaseException {
319
+ readonly name: "ImportNotFoundException";
320
+ readonly $fault: "client";
321
+ /**
322
+ * @internal
323
+ */
324
+ constructor(opts: __ExceptionOptionType<ImportNotFoundException, __BaseException>);
325
+ }
326
+ /**
327
+ * <p> There was an attempt to insert an item with the same primary key as an item that
328
+ * already exists in the DynamoDB table.</p>
329
+ * @public
330
+ */
331
+ export declare class DuplicateItemException extends __BaseException {
332
+ readonly name: "DuplicateItemException";
333
+ readonly $fault: "client";
334
+ /**
335
+ * @internal
336
+ */
337
+ constructor(opts: __ExceptionOptionType<DuplicateItemException, __BaseException>);
338
+ }
339
+ /**
340
+ * <p>DynamoDB rejected the request because you retried a request with a
341
+ * different payload but with an idempotent token that was already used.</p>
342
+ * @public
343
+ */
344
+ export declare class IdempotentParameterMismatchException extends __BaseException {
345
+ readonly name: "IdempotentParameterMismatchException";
346
+ readonly $fault: "client";
347
+ Message?: string | undefined;
348
+ /**
349
+ * @internal
350
+ */
351
+ constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
352
+ }
353
+ /**
354
+ * <p>The transaction with the given request token is already in progress.</p>
355
+ * <p> Recommended Settings </p>
356
+ * <note>
357
+ * <p> This is a general recommendation for handling the
358
+ * <code>TransactionInProgressException</code>. These settings help ensure that the
359
+ * client retries will trigger completion of the ongoing
360
+ * <code>TransactWriteItems</code> request. </p>
361
+ * </note>
362
+ * <ul>
363
+ * <li>
364
+ * <p> Set <code>clientExecutionTimeout</code> to a value that allows at least one
365
+ * retry to be processed after 5 seconds have elapsed since the first attempt for
366
+ * the <code>TransactWriteItems</code> operation. </p>
367
+ * </li>
368
+ * <li>
369
+ * <p> Set <code>socketTimeout</code> to a value a little lower than the
370
+ * <code>requestTimeout</code> setting. </p>
371
+ * </li>
372
+ * <li>
373
+ * <p>
374
+ * <code>requestTimeout</code> should be set based on the time taken for the
375
+ * individual retries of a single HTTP request for your use case, but setting it to
376
+ * 1 second or higher should work well to reduce chances of retries and
377
+ * <code>TransactionInProgressException</code> errors. </p>
378
+ * </li>
379
+ * <li>
380
+ * <p> Use exponential backoff when retrying and tune backoff if needed. </p>
381
+ * </li>
382
+ * </ul>
383
+ * <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
384
+ * above are as follows: </p>
385
+ * <p>Example timeline:</p>
386
+ * <ul>
387
+ * <li>
388
+ * <p>0-1000 first attempt</p>
389
+ * </li>
390
+ * <li>
391
+ * <p>1000-1500 first sleep/delay (default retry policy uses 500 ms as base delay
392
+ * for 4xx errors)</p>
393
+ * </li>
394
+ * <li>
395
+ * <p>1500-2500 second attempt</p>
396
+ * </li>
397
+ * <li>
398
+ * <p>2500-3500 second sleep/delay (500 * 2, exponential backoff)</p>
399
+ * </li>
400
+ * <li>
401
+ * <p>3500-4500 third attempt</p>
402
+ * </li>
403
+ * <li>
404
+ * <p>4500-6500 third sleep/delay (500 * 2^2)</p>
405
+ * </li>
406
+ * <li>
407
+ * <p>6500-7500 fourth attempt (this can trigger inline recovery since 5 seconds
408
+ * have elapsed since the first attempt reached TC)</p>
409
+ * </li>
410
+ * </ul>
411
+ * @public
412
+ */
413
+ export declare class TransactionInProgressException extends __BaseException {
414
+ readonly name: "TransactionInProgressException";
415
+ readonly $fault: "client";
416
+ Message?: string | undefined;
417
+ /**
418
+ * @internal
419
+ */
420
+ constructor(opts: __ExceptionOptionType<TransactionInProgressException, __BaseException>);
421
+ }
422
+ /**
423
+ * <p>There was a conflict when writing to the specified S3 bucket.</p>
424
+ * @public
425
+ */
426
+ export declare class ExportConflictException extends __BaseException {
427
+ readonly name: "ExportConflictException";
428
+ readonly $fault: "client";
429
+ /**
430
+ * @internal
431
+ */
432
+ constructor(opts: __ExceptionOptionType<ExportConflictException, __BaseException>);
433
+ }
434
+ /**
435
+ * <p>The specified <code>ExportTime</code> is outside of the point in time recovery
436
+ * window.</p>
437
+ * @public
438
+ */
439
+ export declare class InvalidExportTimeException extends __BaseException {
440
+ readonly name: "InvalidExportTimeException";
441
+ readonly $fault: "client";
442
+ /**
443
+ * @internal
444
+ */
445
+ constructor(opts: __ExceptionOptionType<InvalidExportTimeException, __BaseException>);
446
+ }
447
+ /**
448
+ * <p>Point in time recovery has not yet been enabled for this source table.</p>
449
+ * @public
450
+ */
451
+ export declare class PointInTimeRecoveryUnavailableException extends __BaseException {
452
+ readonly name: "PointInTimeRecoveryUnavailableException";
453
+ readonly $fault: "client";
454
+ /**
455
+ * @internal
456
+ */
457
+ constructor(opts: __ExceptionOptionType<PointInTimeRecoveryUnavailableException, __BaseException>);
458
+ }
459
+ /**
460
+ * <p> There was a conflict when importing from the specified S3 source. This can occur when
461
+ * the current import conflicts with a previous import request that had the same client
462
+ * token. </p>
463
+ * @public
464
+ */
465
+ export declare class ImportConflictException extends __BaseException {
466
+ readonly name: "ImportConflictException";
467
+ readonly $fault: "client";
468
+ /**
469
+ * @internal
470
+ */
471
+ constructor(opts: __ExceptionOptionType<ImportConflictException, __BaseException>);
472
+ }
473
+ /**
474
+ * <p>A target table with the specified name already exists. </p>
475
+ * @public
476
+ */
477
+ export declare class TableAlreadyExistsException extends __BaseException {
478
+ readonly name: "TableAlreadyExistsException";
479
+ readonly $fault: "client";
480
+ /**
481
+ * @internal
482
+ */
483
+ constructor(opts: __ExceptionOptionType<TableAlreadyExistsException, __BaseException>);
484
+ }
485
+ /**
486
+ * <p>An invalid restore time was specified. RestoreDateTime must be between
487
+ * EarliestRestorableDateTime and LatestRestorableDateTime.</p>
488
+ * @public
489
+ */
490
+ export declare class InvalidRestoreTimeException extends __BaseException {
491
+ readonly name: "InvalidRestoreTimeException";
492
+ readonly $fault: "client";
493
+ /**
494
+ * @internal
495
+ */
496
+ constructor(opts: __ExceptionOptionType<InvalidRestoreTimeException, __BaseException>);
497
+ }
498
+ /**
499
+ * <p>The specified replica is already part of the global table.</p>
500
+ * @public
501
+ */
502
+ export declare class ReplicaAlreadyExistsException extends __BaseException {
503
+ readonly name: "ReplicaAlreadyExistsException";
504
+ readonly $fault: "client";
505
+ /**
506
+ * @internal
507
+ */
508
+ constructor(opts: __ExceptionOptionType<ReplicaAlreadyExistsException, __BaseException>);
509
+ }
510
+ /**
511
+ * <p>The specified replica is no longer part of the global table.</p>
512
+ * @public
513
+ */
514
+ export declare class ReplicaNotFoundException extends __BaseException {
515
+ readonly name: "ReplicaNotFoundException";
516
+ readonly $fault: "client";
517
+ /**
518
+ * @internal
519
+ */
520
+ constructor(opts: __ExceptionOptionType<ReplicaNotFoundException, __BaseException>);
521
+ }
522
+ /**
523
+ * <p>The operation tried to access a nonexistent index.</p>
524
+ * @public
525
+ */
526
+ export declare class IndexNotFoundException extends __BaseException {
527
+ readonly name: "IndexNotFoundException";
528
+ readonly $fault: "client";
529
+ /**
530
+ * @internal
531
+ */
532
+ constructor(opts: __ExceptionOptionType<IndexNotFoundException, __BaseException>);
533
+ }
534
+ /**
535
+ * <p>A condition specified in the operation failed to be evaluated.</p>
536
+ * @public
537
+ */
538
+ export declare class ConditionalCheckFailedException extends __BaseException {
539
+ readonly name: "ConditionalCheckFailedException";
540
+ readonly $fault: "client";
541
+ /**
542
+ * <p>Item which caused the <code>ConditionalCheckFailedException</code>.</p>
543
+ * @public
544
+ */
545
+ Item?: Record<string, AttributeValue> | undefined;
546
+ /**
547
+ * @internal
548
+ */
549
+ constructor(opts: __ExceptionOptionType<ConditionalCheckFailedException, __BaseException>);
550
+ }
551
+ /**
552
+ * <p>The entire transaction request was canceled.</p>
553
+ * <p>DynamoDB cancels a <code>TransactWriteItems</code> request under the following
554
+ * circumstances:</p>
555
+ * <ul>
556
+ * <li>
557
+ * <p>A condition in one of the condition expressions is not met.</p>
558
+ * </li>
559
+ * <li>
560
+ * <p>A table in the <code>TransactWriteItems</code> request is in a different
561
+ * account or region.</p>
562
+ * </li>
563
+ * <li>
564
+ * <p>More than one action in the <code>TransactWriteItems</code> operation
565
+ * targets the same item.</p>
566
+ * </li>
567
+ * <li>
568
+ * <p>There is insufficient provisioned capacity for the transaction to be
569
+ * completed.</p>
570
+ * </li>
571
+ * <li>
572
+ * <p>An item size becomes too large (larger than 400 KB), or a local secondary
573
+ * index (LSI) becomes too large, or a similar validation error occurs because of
574
+ * changes made by the transaction.</p>
575
+ * </li>
576
+ * <li>
577
+ * <p>There is a user error, such as an invalid data format.</p>
578
+ * </li>
579
+ * <li>
580
+ * <p> There is an ongoing <code>TransactWriteItems</code> operation that
581
+ * conflicts with a concurrent <code>TransactWriteItems</code> request. In this
582
+ * case the <code>TransactWriteItems</code> operation fails with a
583
+ * <code>TransactionCanceledException</code>. </p>
584
+ * </li>
585
+ * </ul>
586
+ * <p>DynamoDB cancels a <code>TransactGetItems</code> request under the
587
+ * following circumstances:</p>
588
+ * <ul>
589
+ * <li>
590
+ * <p>There is an ongoing <code>TransactGetItems</code> operation that conflicts
591
+ * with a concurrent <code>PutItem</code>, <code>UpdateItem</code>,
592
+ * <code>DeleteItem</code> or <code>TransactWriteItems</code> request. In this
593
+ * case the <code>TransactGetItems</code> operation fails with a
594
+ * <code>TransactionCanceledException</code>.</p>
595
+ * </li>
596
+ * <li>
597
+ * <p>A table in the <code>TransactGetItems</code> request is in a different
598
+ * account or region.</p>
599
+ * </li>
600
+ * <li>
601
+ * <p>There is insufficient provisioned capacity for the transaction to be
602
+ * completed.</p>
603
+ * </li>
604
+ * <li>
605
+ * <p>There is a user error, such as an invalid data format.</p>
606
+ * </li>
607
+ * </ul>
608
+ * <note>
609
+ * <p>DynamoDB lists the cancellation reasons on the
610
+ * <code>CancellationReasons</code> property. Transaction cancellation reasons are ordered in the order of requested
611
+ * items, if an item has no error it will have <code>None</code> code and
612
+ * <code>Null</code> message.</p>
613
+ * </note>
614
+ * <p>Cancellation reason codes and possible error messages:</p>
615
+ * <ul>
616
+ * <li>
617
+ * <p>No Errors:</p>
618
+ * <ul>
619
+ * <li>
620
+ * <p>Code: <code>None</code>
621
+ * </p>
622
+ * </li>
623
+ * <li>
624
+ * <p>Message: <code>null</code>
625
+ * </p>
626
+ * </li>
627
+ * </ul>
628
+ * </li>
629
+ * <li>
630
+ * <p>Conditional Check Failed:</p>
631
+ * <ul>
632
+ * <li>
633
+ * <p>Code: <code>ConditionalCheckFailed</code>
634
+ * </p>
635
+ * </li>
636
+ * <li>
637
+ * <p>Message: The conditional request failed. </p>
638
+ * </li>
639
+ * </ul>
640
+ * </li>
641
+ * <li>
642
+ * <p>Item Collection Size Limit Exceeded:</p>
643
+ * <ul>
644
+ * <li>
645
+ * <p>Code: <code>ItemCollectionSizeLimitExceeded</code>
646
+ * </p>
647
+ * </li>
648
+ * <li>
649
+ * <p>Message: Collection size exceeded.</p>
650
+ * </li>
651
+ * </ul>
652
+ * </li>
653
+ * <li>
654
+ * <p>Transaction Conflict:</p>
655
+ * <ul>
656
+ * <li>
657
+ * <p>Code: <code>TransactionConflict</code>
658
+ * </p>
659
+ * </li>
660
+ * <li>
661
+ * <p>Message: Transaction is ongoing for the item.</p>
662
+ * </li>
663
+ * </ul>
664
+ * </li>
665
+ * <li>
666
+ * <p>Provisioned Throughput Exceeded:</p>
667
+ * <ul>
668
+ * <li>
669
+ * <p>Code: <code>ProvisionedThroughputExceeded</code>
670
+ * </p>
671
+ * </li>
672
+ * <li>
673
+ * <p>Messages:</p>
674
+ * <ul>
675
+ * <li>
676
+ * <p>The level of configured provisioned throughput for the
677
+ * table was exceeded. Consider increasing your provisioning level
678
+ * with the UpdateTable API.</p>
679
+ * <note>
680
+ * <p>This Message is received when provisioned throughput is
681
+ * exceeded is on a provisioned DynamoDB
682
+ * table.</p>
683
+ * </note>
684
+ * </li>
685
+ * <li>
686
+ * <p>The level of configured provisioned throughput for one or
687
+ * more global secondary indexes of the table was exceeded.
688
+ * Consider increasing your provisioning level for the
689
+ * under-provisioned global secondary indexes with the UpdateTable
690
+ * API.</p>
691
+ * <note>
692
+ * <p>This message is returned when provisioned throughput is
693
+ * exceeded is on a provisioned GSI.</p>
694
+ * </note>
695
+ * </li>
696
+ * </ul>
697
+ * </li>
698
+ * </ul>
699
+ * </li>
700
+ * <li>
701
+ * <p>Throttling Error:</p>
702
+ * <ul>
703
+ * <li>
704
+ * <p>Code: <code>ThrottlingError</code>
705
+ * </p>
706
+ * </li>
707
+ * <li>
708
+ * <p>Messages: </p>
709
+ * <ul>
710
+ * <li>
711
+ * <p>Throughput exceeds the current capacity of your table or
712
+ * index. DynamoDB is automatically scaling your table or
713
+ * index so please try again shortly. If exceptions persist, check
714
+ * if you have a hot key:
715
+ * https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/bp-partition-key-design.html.</p>
716
+ * <note>
717
+ * <p>This message is returned when writes get throttled on an
718
+ * On-Demand table as DynamoDB is automatically
719
+ * scaling the table.</p>
720
+ * </note>
721
+ * </li>
722
+ * <li>
723
+ * <p>Throughput exceeds the current capacity for one or more
724
+ * global secondary indexes. DynamoDB is automatically
725
+ * scaling your index so please try again shortly.</p>
726
+ * <note>
727
+ * <p>This message is returned when writes get throttled on an
728
+ * On-Demand GSI as DynamoDB is automatically scaling
729
+ * the GSI.</p>
730
+ * </note>
731
+ * </li>
732
+ * </ul>
733
+ * </li>
734
+ * </ul>
735
+ * </li>
736
+ * <li>
737
+ * <p>Validation Error:</p>
738
+ * <ul>
739
+ * <li>
740
+ * <p>Code: <code>ValidationError</code>
741
+ * </p>
742
+ * </li>
743
+ * <li>
744
+ * <p>Messages: </p>
745
+ * <ul>
746
+ * <li>
747
+ * <p>One or more parameter values were invalid.</p>
748
+ * </li>
749
+ * <li>
750
+ * <p>The update expression attempted to update the secondary
751
+ * index key beyond allowed size limits.</p>
752
+ * </li>
753
+ * <li>
754
+ * <p>The update expression attempted to update the secondary
755
+ * index key to unsupported type.</p>
756
+ * </li>
757
+ * <li>
758
+ * <p>An operand in the update expression has an incorrect data
759
+ * type.</p>
760
+ * </li>
761
+ * <li>
762
+ * <p>Item size to update has exceeded the maximum allowed
763
+ * size.</p>
764
+ * </li>
765
+ * <li>
766
+ * <p>Number overflow. Attempting to store a number with
767
+ * magnitude larger than supported range.</p>
768
+ * </li>
769
+ * <li>
770
+ * <p>Type mismatch for attribute to update.</p>
771
+ * </li>
772
+ * <li>
773
+ * <p>Nesting Levels have exceeded supported limits.</p>
774
+ * </li>
775
+ * <li>
776
+ * <p>The document path provided in the update expression is
777
+ * invalid for update.</p>
778
+ * </li>
779
+ * <li>
780
+ * <p>The provided expression refers to an attribute that does
781
+ * not exist in the item.</p>
782
+ * </li>
783
+ * </ul>
784
+ * </li>
785
+ * </ul>
786
+ * </li>
787
+ * </ul>
788
+ * @public
789
+ */
790
+ export declare class TransactionCanceledException extends __BaseException {
791
+ readonly name: "TransactionCanceledException";
792
+ readonly $fault: "client";
793
+ Message?: string | undefined;
794
+ /**
795
+ * <p>A list of cancellation reasons.</p>
796
+ * @public
797
+ */
798
+ CancellationReasons?: CancellationReason[] | undefined;
799
+ /**
800
+ * @internal
801
+ */
802
+ constructor(opts: __ExceptionOptionType<TransactionCanceledException, __BaseException>);
803
+ }