@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,1102 @@
1
+ import {
2
+ HttpHandlerOptions as __HttpHandlerOptions,
3
+ PaginationConfiguration,
4
+ Paginator,
5
+ WaiterConfiguration,
6
+ } from "@smithy/types";
7
+ import { WaiterResult } from "@smithy/util-waiter";
8
+ import {
9
+ BatchExecuteStatementCommandInput,
10
+ BatchExecuteStatementCommandOutput,
11
+ } from "./commands/BatchExecuteStatementCommand";
12
+ import {
13
+ BatchGetItemCommandInput,
14
+ BatchGetItemCommandOutput,
15
+ } from "./commands/BatchGetItemCommand";
16
+ import {
17
+ BatchWriteItemCommandInput,
18
+ BatchWriteItemCommandOutput,
19
+ } from "./commands/BatchWriteItemCommand";
20
+ import {
21
+ CreateBackupCommandInput,
22
+ CreateBackupCommandOutput,
23
+ } from "./commands/CreateBackupCommand";
24
+ import {
25
+ CreateGlobalTableCommandInput,
26
+ CreateGlobalTableCommandOutput,
27
+ } from "./commands/CreateGlobalTableCommand";
28
+ import {
29
+ CreateTableCommandInput,
30
+ CreateTableCommandOutput,
31
+ } from "./commands/CreateTableCommand";
32
+ import {
33
+ DeleteBackupCommandInput,
34
+ DeleteBackupCommandOutput,
35
+ } from "./commands/DeleteBackupCommand";
36
+ import {
37
+ DeleteItemCommandInput,
38
+ DeleteItemCommandOutput,
39
+ } from "./commands/DeleteItemCommand";
40
+ import {
41
+ DeleteResourcePolicyCommandInput,
42
+ DeleteResourcePolicyCommandOutput,
43
+ } from "./commands/DeleteResourcePolicyCommand";
44
+ import {
45
+ DeleteTableCommandInput,
46
+ DeleteTableCommandOutput,
47
+ } from "./commands/DeleteTableCommand";
48
+ import {
49
+ DescribeBackupCommandInput,
50
+ DescribeBackupCommandOutput,
51
+ } from "./commands/DescribeBackupCommand";
52
+ import {
53
+ DescribeContinuousBackupsCommandInput,
54
+ DescribeContinuousBackupsCommandOutput,
55
+ } from "./commands/DescribeContinuousBackupsCommand";
56
+ import {
57
+ DescribeContributorInsightsCommandInput,
58
+ DescribeContributorInsightsCommandOutput,
59
+ } from "./commands/DescribeContributorInsightsCommand";
60
+ import {
61
+ DescribeEndpointsCommandInput,
62
+ DescribeEndpointsCommandOutput,
63
+ } from "./commands/DescribeEndpointsCommand";
64
+ import {
65
+ DescribeExportCommandInput,
66
+ DescribeExportCommandOutput,
67
+ } from "./commands/DescribeExportCommand";
68
+ import {
69
+ DescribeGlobalTableCommandInput,
70
+ DescribeGlobalTableCommandOutput,
71
+ } from "./commands/DescribeGlobalTableCommand";
72
+ import {
73
+ DescribeGlobalTableSettingsCommandInput,
74
+ DescribeGlobalTableSettingsCommandOutput,
75
+ } from "./commands/DescribeGlobalTableSettingsCommand";
76
+ import {
77
+ DescribeImportCommandInput,
78
+ DescribeImportCommandOutput,
79
+ } from "./commands/DescribeImportCommand";
80
+ import {
81
+ DescribeKinesisStreamingDestinationCommandInput,
82
+ DescribeKinesisStreamingDestinationCommandOutput,
83
+ } from "./commands/DescribeKinesisStreamingDestinationCommand";
84
+ import {
85
+ DescribeLimitsCommandInput,
86
+ DescribeLimitsCommandOutput,
87
+ } from "./commands/DescribeLimitsCommand";
88
+ import {
89
+ DescribeTableCommandInput,
90
+ DescribeTableCommandOutput,
91
+ } from "./commands/DescribeTableCommand";
92
+ import {
93
+ DescribeTableReplicaAutoScalingCommandInput,
94
+ DescribeTableReplicaAutoScalingCommandOutput,
95
+ } from "./commands/DescribeTableReplicaAutoScalingCommand";
96
+ import {
97
+ DescribeTimeToLiveCommandInput,
98
+ DescribeTimeToLiveCommandOutput,
99
+ } from "./commands/DescribeTimeToLiveCommand";
100
+ import {
101
+ DisableKinesisStreamingDestinationCommandInput,
102
+ DisableKinesisStreamingDestinationCommandOutput,
103
+ } from "./commands/DisableKinesisStreamingDestinationCommand";
104
+ import {
105
+ EnableKinesisStreamingDestinationCommandInput,
106
+ EnableKinesisStreamingDestinationCommandOutput,
107
+ } from "./commands/EnableKinesisStreamingDestinationCommand";
108
+ import {
109
+ ExecuteStatementCommandInput,
110
+ ExecuteStatementCommandOutput,
111
+ } from "./commands/ExecuteStatementCommand";
112
+ import {
113
+ ExecuteTransactionCommandInput,
114
+ ExecuteTransactionCommandOutput,
115
+ } from "./commands/ExecuteTransactionCommand";
116
+ import {
117
+ ExportTableToPointInTimeCommandInput,
118
+ ExportTableToPointInTimeCommandOutput,
119
+ } from "./commands/ExportTableToPointInTimeCommand";
120
+ import {
121
+ GetItemCommandInput,
122
+ GetItemCommandOutput,
123
+ } from "./commands/GetItemCommand";
124
+ import {
125
+ GetResourcePolicyCommandInput,
126
+ GetResourcePolicyCommandOutput,
127
+ } from "./commands/GetResourcePolicyCommand";
128
+ import {
129
+ ImportTableCommandInput,
130
+ ImportTableCommandOutput,
131
+ } from "./commands/ImportTableCommand";
132
+ import {
133
+ ListBackupsCommandInput,
134
+ ListBackupsCommandOutput,
135
+ } from "./commands/ListBackupsCommand";
136
+ import {
137
+ ListContributorInsightsCommandInput,
138
+ ListContributorInsightsCommandOutput,
139
+ } from "./commands/ListContributorInsightsCommand";
140
+ import {
141
+ ListExportsCommandInput,
142
+ ListExportsCommandOutput,
143
+ } from "./commands/ListExportsCommand";
144
+ import {
145
+ ListGlobalTablesCommandInput,
146
+ ListGlobalTablesCommandOutput,
147
+ } from "./commands/ListGlobalTablesCommand";
148
+ import {
149
+ ListImportsCommandInput,
150
+ ListImportsCommandOutput,
151
+ } from "./commands/ListImportsCommand";
152
+ import {
153
+ ListTablesCommandInput,
154
+ ListTablesCommandOutput,
155
+ } from "./commands/ListTablesCommand";
156
+ import {
157
+ ListTagsOfResourceCommandInput,
158
+ ListTagsOfResourceCommandOutput,
159
+ } from "./commands/ListTagsOfResourceCommand";
160
+ import {
161
+ PutItemCommandInput,
162
+ PutItemCommandOutput,
163
+ } from "./commands/PutItemCommand";
164
+ import {
165
+ PutResourcePolicyCommandInput,
166
+ PutResourcePolicyCommandOutput,
167
+ } from "./commands/PutResourcePolicyCommand";
168
+ import { QueryCommandInput, QueryCommandOutput } from "./commands/QueryCommand";
169
+ import {
170
+ RestoreTableFromBackupCommandInput,
171
+ RestoreTableFromBackupCommandOutput,
172
+ } from "./commands/RestoreTableFromBackupCommand";
173
+ import {
174
+ RestoreTableToPointInTimeCommandInput,
175
+ RestoreTableToPointInTimeCommandOutput,
176
+ } from "./commands/RestoreTableToPointInTimeCommand";
177
+ import { ScanCommandInput, ScanCommandOutput } from "./commands/ScanCommand";
178
+ import {
179
+ TagResourceCommandInput,
180
+ TagResourceCommandOutput,
181
+ } from "./commands/TagResourceCommand";
182
+ import {
183
+ TransactGetItemsCommandInput,
184
+ TransactGetItemsCommandOutput,
185
+ } from "./commands/TransactGetItemsCommand";
186
+ import {
187
+ TransactWriteItemsCommandInput,
188
+ TransactWriteItemsCommandOutput,
189
+ } from "./commands/TransactWriteItemsCommand";
190
+ import {
191
+ UntagResourceCommandInput,
192
+ UntagResourceCommandOutput,
193
+ } from "./commands/UntagResourceCommand";
194
+ import {
195
+ UpdateContinuousBackupsCommandInput,
196
+ UpdateContinuousBackupsCommandOutput,
197
+ } from "./commands/UpdateContinuousBackupsCommand";
198
+ import {
199
+ UpdateContributorInsightsCommandInput,
200
+ UpdateContributorInsightsCommandOutput,
201
+ } from "./commands/UpdateContributorInsightsCommand";
202
+ import {
203
+ UpdateGlobalTableCommandInput,
204
+ UpdateGlobalTableCommandOutput,
205
+ } from "./commands/UpdateGlobalTableCommand";
206
+ import {
207
+ UpdateGlobalTableSettingsCommandInput,
208
+ UpdateGlobalTableSettingsCommandOutput,
209
+ } from "./commands/UpdateGlobalTableSettingsCommand";
210
+ import {
211
+ UpdateItemCommandInput,
212
+ UpdateItemCommandOutput,
213
+ } from "./commands/UpdateItemCommand";
214
+ import {
215
+ UpdateKinesisStreamingDestinationCommandInput,
216
+ UpdateKinesisStreamingDestinationCommandOutput,
217
+ } from "./commands/UpdateKinesisStreamingDestinationCommand";
218
+ import {
219
+ UpdateTableCommandInput,
220
+ UpdateTableCommandOutput,
221
+ } from "./commands/UpdateTableCommand";
222
+ import {
223
+ UpdateTableReplicaAutoScalingCommandInput,
224
+ UpdateTableReplicaAutoScalingCommandOutput,
225
+ } from "./commands/UpdateTableReplicaAutoScalingCommand";
226
+ import {
227
+ UpdateTimeToLiveCommandInput,
228
+ UpdateTimeToLiveCommandOutput,
229
+ } from "./commands/UpdateTimeToLiveCommand";
230
+ import { DynamoDBClient } from "./DynamoDBClient";
231
+ export interface DynamoDB {
232
+ batchExecuteStatement(
233
+ args: BatchExecuteStatementCommandInput,
234
+ options?: __HttpHandlerOptions
235
+ ): Promise<BatchExecuteStatementCommandOutput>;
236
+ batchExecuteStatement(
237
+ args: BatchExecuteStatementCommandInput,
238
+ cb: (err: any, data?: BatchExecuteStatementCommandOutput) => void
239
+ ): void;
240
+ batchExecuteStatement(
241
+ args: BatchExecuteStatementCommandInput,
242
+ options: __HttpHandlerOptions,
243
+ cb: (err: any, data?: BatchExecuteStatementCommandOutput) => void
244
+ ): void;
245
+ batchGetItem(
246
+ args: BatchGetItemCommandInput,
247
+ options?: __HttpHandlerOptions
248
+ ): Promise<BatchGetItemCommandOutput>;
249
+ batchGetItem(
250
+ args: BatchGetItemCommandInput,
251
+ cb: (err: any, data?: BatchGetItemCommandOutput) => void
252
+ ): void;
253
+ batchGetItem(
254
+ args: BatchGetItemCommandInput,
255
+ options: __HttpHandlerOptions,
256
+ cb: (err: any, data?: BatchGetItemCommandOutput) => void
257
+ ): void;
258
+ batchWriteItem(
259
+ args: BatchWriteItemCommandInput,
260
+ options?: __HttpHandlerOptions
261
+ ): Promise<BatchWriteItemCommandOutput>;
262
+ batchWriteItem(
263
+ args: BatchWriteItemCommandInput,
264
+ cb: (err: any, data?: BatchWriteItemCommandOutput) => void
265
+ ): void;
266
+ batchWriteItem(
267
+ args: BatchWriteItemCommandInput,
268
+ options: __HttpHandlerOptions,
269
+ cb: (err: any, data?: BatchWriteItemCommandOutput) => void
270
+ ): void;
271
+ createBackup(
272
+ args: CreateBackupCommandInput,
273
+ options?: __HttpHandlerOptions
274
+ ): Promise<CreateBackupCommandOutput>;
275
+ createBackup(
276
+ args: CreateBackupCommandInput,
277
+ cb: (err: any, data?: CreateBackupCommandOutput) => void
278
+ ): void;
279
+ createBackup(
280
+ args: CreateBackupCommandInput,
281
+ options: __HttpHandlerOptions,
282
+ cb: (err: any, data?: CreateBackupCommandOutput) => void
283
+ ): void;
284
+ createGlobalTable(
285
+ args: CreateGlobalTableCommandInput,
286
+ options?: __HttpHandlerOptions
287
+ ): Promise<CreateGlobalTableCommandOutput>;
288
+ createGlobalTable(
289
+ args: CreateGlobalTableCommandInput,
290
+ cb: (err: any, data?: CreateGlobalTableCommandOutput) => void
291
+ ): void;
292
+ createGlobalTable(
293
+ args: CreateGlobalTableCommandInput,
294
+ options: __HttpHandlerOptions,
295
+ cb: (err: any, data?: CreateGlobalTableCommandOutput) => void
296
+ ): void;
297
+ createTable(
298
+ args: CreateTableCommandInput,
299
+ options?: __HttpHandlerOptions
300
+ ): Promise<CreateTableCommandOutput>;
301
+ createTable(
302
+ args: CreateTableCommandInput,
303
+ cb: (err: any, data?: CreateTableCommandOutput) => void
304
+ ): void;
305
+ createTable(
306
+ args: CreateTableCommandInput,
307
+ options: __HttpHandlerOptions,
308
+ cb: (err: any, data?: CreateTableCommandOutput) => void
309
+ ): void;
310
+ deleteBackup(
311
+ args: DeleteBackupCommandInput,
312
+ options?: __HttpHandlerOptions
313
+ ): Promise<DeleteBackupCommandOutput>;
314
+ deleteBackup(
315
+ args: DeleteBackupCommandInput,
316
+ cb: (err: any, data?: DeleteBackupCommandOutput) => void
317
+ ): void;
318
+ deleteBackup(
319
+ args: DeleteBackupCommandInput,
320
+ options: __HttpHandlerOptions,
321
+ cb: (err: any, data?: DeleteBackupCommandOutput) => void
322
+ ): void;
323
+ deleteItem(
324
+ args: DeleteItemCommandInput,
325
+ options?: __HttpHandlerOptions
326
+ ): Promise<DeleteItemCommandOutput>;
327
+ deleteItem(
328
+ args: DeleteItemCommandInput,
329
+ cb: (err: any, data?: DeleteItemCommandOutput) => void
330
+ ): void;
331
+ deleteItem(
332
+ args: DeleteItemCommandInput,
333
+ options: __HttpHandlerOptions,
334
+ cb: (err: any, data?: DeleteItemCommandOutput) => void
335
+ ): void;
336
+ deleteResourcePolicy(
337
+ args: DeleteResourcePolicyCommandInput,
338
+ options?: __HttpHandlerOptions
339
+ ): Promise<DeleteResourcePolicyCommandOutput>;
340
+ deleteResourcePolicy(
341
+ args: DeleteResourcePolicyCommandInput,
342
+ cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
343
+ ): void;
344
+ deleteResourcePolicy(
345
+ args: DeleteResourcePolicyCommandInput,
346
+ options: __HttpHandlerOptions,
347
+ cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
348
+ ): void;
349
+ deleteTable(
350
+ args: DeleteTableCommandInput,
351
+ options?: __HttpHandlerOptions
352
+ ): Promise<DeleteTableCommandOutput>;
353
+ deleteTable(
354
+ args: DeleteTableCommandInput,
355
+ cb: (err: any, data?: DeleteTableCommandOutput) => void
356
+ ): void;
357
+ deleteTable(
358
+ args: DeleteTableCommandInput,
359
+ options: __HttpHandlerOptions,
360
+ cb: (err: any, data?: DeleteTableCommandOutput) => void
361
+ ): void;
362
+ describeBackup(
363
+ args: DescribeBackupCommandInput,
364
+ options?: __HttpHandlerOptions
365
+ ): Promise<DescribeBackupCommandOutput>;
366
+ describeBackup(
367
+ args: DescribeBackupCommandInput,
368
+ cb: (err: any, data?: DescribeBackupCommandOutput) => void
369
+ ): void;
370
+ describeBackup(
371
+ args: DescribeBackupCommandInput,
372
+ options: __HttpHandlerOptions,
373
+ cb: (err: any, data?: DescribeBackupCommandOutput) => void
374
+ ): void;
375
+ describeContinuousBackups(
376
+ args: DescribeContinuousBackupsCommandInput,
377
+ options?: __HttpHandlerOptions
378
+ ): Promise<DescribeContinuousBackupsCommandOutput>;
379
+ describeContinuousBackups(
380
+ args: DescribeContinuousBackupsCommandInput,
381
+ cb: (err: any, data?: DescribeContinuousBackupsCommandOutput) => void
382
+ ): void;
383
+ describeContinuousBackups(
384
+ args: DescribeContinuousBackupsCommandInput,
385
+ options: __HttpHandlerOptions,
386
+ cb: (err: any, data?: DescribeContinuousBackupsCommandOutput) => void
387
+ ): void;
388
+ describeContributorInsights(
389
+ args: DescribeContributorInsightsCommandInput,
390
+ options?: __HttpHandlerOptions
391
+ ): Promise<DescribeContributorInsightsCommandOutput>;
392
+ describeContributorInsights(
393
+ args: DescribeContributorInsightsCommandInput,
394
+ cb: (err: any, data?: DescribeContributorInsightsCommandOutput) => void
395
+ ): void;
396
+ describeContributorInsights(
397
+ args: DescribeContributorInsightsCommandInput,
398
+ options: __HttpHandlerOptions,
399
+ cb: (err: any, data?: DescribeContributorInsightsCommandOutput) => void
400
+ ): void;
401
+ describeEndpoints(): Promise<DescribeEndpointsCommandOutput>;
402
+ describeEndpoints(
403
+ args: DescribeEndpointsCommandInput,
404
+ options?: __HttpHandlerOptions
405
+ ): Promise<DescribeEndpointsCommandOutput>;
406
+ describeEndpoints(
407
+ args: DescribeEndpointsCommandInput,
408
+ cb: (err: any, data?: DescribeEndpointsCommandOutput) => void
409
+ ): void;
410
+ describeEndpoints(
411
+ args: DescribeEndpointsCommandInput,
412
+ options: __HttpHandlerOptions,
413
+ cb: (err: any, data?: DescribeEndpointsCommandOutput) => void
414
+ ): void;
415
+ describeExport(
416
+ args: DescribeExportCommandInput,
417
+ options?: __HttpHandlerOptions
418
+ ): Promise<DescribeExportCommandOutput>;
419
+ describeExport(
420
+ args: DescribeExportCommandInput,
421
+ cb: (err: any, data?: DescribeExportCommandOutput) => void
422
+ ): void;
423
+ describeExport(
424
+ args: DescribeExportCommandInput,
425
+ options: __HttpHandlerOptions,
426
+ cb: (err: any, data?: DescribeExportCommandOutput) => void
427
+ ): void;
428
+ describeGlobalTable(
429
+ args: DescribeGlobalTableCommandInput,
430
+ options?: __HttpHandlerOptions
431
+ ): Promise<DescribeGlobalTableCommandOutput>;
432
+ describeGlobalTable(
433
+ args: DescribeGlobalTableCommandInput,
434
+ cb: (err: any, data?: DescribeGlobalTableCommandOutput) => void
435
+ ): void;
436
+ describeGlobalTable(
437
+ args: DescribeGlobalTableCommandInput,
438
+ options: __HttpHandlerOptions,
439
+ cb: (err: any, data?: DescribeGlobalTableCommandOutput) => void
440
+ ): void;
441
+ describeGlobalTableSettings(
442
+ args: DescribeGlobalTableSettingsCommandInput,
443
+ options?: __HttpHandlerOptions
444
+ ): Promise<DescribeGlobalTableSettingsCommandOutput>;
445
+ describeGlobalTableSettings(
446
+ args: DescribeGlobalTableSettingsCommandInput,
447
+ cb: (err: any, data?: DescribeGlobalTableSettingsCommandOutput) => void
448
+ ): void;
449
+ describeGlobalTableSettings(
450
+ args: DescribeGlobalTableSettingsCommandInput,
451
+ options: __HttpHandlerOptions,
452
+ cb: (err: any, data?: DescribeGlobalTableSettingsCommandOutput) => void
453
+ ): void;
454
+ describeImport(
455
+ args: DescribeImportCommandInput,
456
+ options?: __HttpHandlerOptions
457
+ ): Promise<DescribeImportCommandOutput>;
458
+ describeImport(
459
+ args: DescribeImportCommandInput,
460
+ cb: (err: any, data?: DescribeImportCommandOutput) => void
461
+ ): void;
462
+ describeImport(
463
+ args: DescribeImportCommandInput,
464
+ options: __HttpHandlerOptions,
465
+ cb: (err: any, data?: DescribeImportCommandOutput) => void
466
+ ): void;
467
+ describeKinesisStreamingDestination(
468
+ args: DescribeKinesisStreamingDestinationCommandInput,
469
+ options?: __HttpHandlerOptions
470
+ ): Promise<DescribeKinesisStreamingDestinationCommandOutput>;
471
+ describeKinesisStreamingDestination(
472
+ args: DescribeKinesisStreamingDestinationCommandInput,
473
+ cb: (
474
+ err: any,
475
+ data?: DescribeKinesisStreamingDestinationCommandOutput
476
+ ) => void
477
+ ): void;
478
+ describeKinesisStreamingDestination(
479
+ args: DescribeKinesisStreamingDestinationCommandInput,
480
+ options: __HttpHandlerOptions,
481
+ cb: (
482
+ err: any,
483
+ data?: DescribeKinesisStreamingDestinationCommandOutput
484
+ ) => void
485
+ ): void;
486
+ describeLimits(): Promise<DescribeLimitsCommandOutput>;
487
+ describeLimits(
488
+ args: DescribeLimitsCommandInput,
489
+ options?: __HttpHandlerOptions
490
+ ): Promise<DescribeLimitsCommandOutput>;
491
+ describeLimits(
492
+ args: DescribeLimitsCommandInput,
493
+ cb: (err: any, data?: DescribeLimitsCommandOutput) => void
494
+ ): void;
495
+ describeLimits(
496
+ args: DescribeLimitsCommandInput,
497
+ options: __HttpHandlerOptions,
498
+ cb: (err: any, data?: DescribeLimitsCommandOutput) => void
499
+ ): void;
500
+ describeTable(
501
+ args: DescribeTableCommandInput,
502
+ options?: __HttpHandlerOptions
503
+ ): Promise<DescribeTableCommandOutput>;
504
+ describeTable(
505
+ args: DescribeTableCommandInput,
506
+ cb: (err: any, data?: DescribeTableCommandOutput) => void
507
+ ): void;
508
+ describeTable(
509
+ args: DescribeTableCommandInput,
510
+ options: __HttpHandlerOptions,
511
+ cb: (err: any, data?: DescribeTableCommandOutput) => void
512
+ ): void;
513
+ describeTableReplicaAutoScaling(
514
+ args: DescribeTableReplicaAutoScalingCommandInput,
515
+ options?: __HttpHandlerOptions
516
+ ): Promise<DescribeTableReplicaAutoScalingCommandOutput>;
517
+ describeTableReplicaAutoScaling(
518
+ args: DescribeTableReplicaAutoScalingCommandInput,
519
+ cb: (err: any, data?: DescribeTableReplicaAutoScalingCommandOutput) => void
520
+ ): void;
521
+ describeTableReplicaAutoScaling(
522
+ args: DescribeTableReplicaAutoScalingCommandInput,
523
+ options: __HttpHandlerOptions,
524
+ cb: (err: any, data?: DescribeTableReplicaAutoScalingCommandOutput) => void
525
+ ): void;
526
+ describeTimeToLive(
527
+ args: DescribeTimeToLiveCommandInput,
528
+ options?: __HttpHandlerOptions
529
+ ): Promise<DescribeTimeToLiveCommandOutput>;
530
+ describeTimeToLive(
531
+ args: DescribeTimeToLiveCommandInput,
532
+ cb: (err: any, data?: DescribeTimeToLiveCommandOutput) => void
533
+ ): void;
534
+ describeTimeToLive(
535
+ args: DescribeTimeToLiveCommandInput,
536
+ options: __HttpHandlerOptions,
537
+ cb: (err: any, data?: DescribeTimeToLiveCommandOutput) => void
538
+ ): void;
539
+ disableKinesisStreamingDestination(
540
+ args: DisableKinesisStreamingDestinationCommandInput,
541
+ options?: __HttpHandlerOptions
542
+ ): Promise<DisableKinesisStreamingDestinationCommandOutput>;
543
+ disableKinesisStreamingDestination(
544
+ args: DisableKinesisStreamingDestinationCommandInput,
545
+ cb: (
546
+ err: any,
547
+ data?: DisableKinesisStreamingDestinationCommandOutput
548
+ ) => void
549
+ ): void;
550
+ disableKinesisStreamingDestination(
551
+ args: DisableKinesisStreamingDestinationCommandInput,
552
+ options: __HttpHandlerOptions,
553
+ cb: (
554
+ err: any,
555
+ data?: DisableKinesisStreamingDestinationCommandOutput
556
+ ) => void
557
+ ): void;
558
+ enableKinesisStreamingDestination(
559
+ args: EnableKinesisStreamingDestinationCommandInput,
560
+ options?: __HttpHandlerOptions
561
+ ): Promise<EnableKinesisStreamingDestinationCommandOutput>;
562
+ enableKinesisStreamingDestination(
563
+ args: EnableKinesisStreamingDestinationCommandInput,
564
+ cb: (
565
+ err: any,
566
+ data?: EnableKinesisStreamingDestinationCommandOutput
567
+ ) => void
568
+ ): void;
569
+ enableKinesisStreamingDestination(
570
+ args: EnableKinesisStreamingDestinationCommandInput,
571
+ options: __HttpHandlerOptions,
572
+ cb: (
573
+ err: any,
574
+ data?: EnableKinesisStreamingDestinationCommandOutput
575
+ ) => void
576
+ ): void;
577
+ executeStatement(
578
+ args: ExecuteStatementCommandInput,
579
+ options?: __HttpHandlerOptions
580
+ ): Promise<ExecuteStatementCommandOutput>;
581
+ executeStatement(
582
+ args: ExecuteStatementCommandInput,
583
+ cb: (err: any, data?: ExecuteStatementCommandOutput) => void
584
+ ): void;
585
+ executeStatement(
586
+ args: ExecuteStatementCommandInput,
587
+ options: __HttpHandlerOptions,
588
+ cb: (err: any, data?: ExecuteStatementCommandOutput) => void
589
+ ): void;
590
+ executeTransaction(
591
+ args: ExecuteTransactionCommandInput,
592
+ options?: __HttpHandlerOptions
593
+ ): Promise<ExecuteTransactionCommandOutput>;
594
+ executeTransaction(
595
+ args: ExecuteTransactionCommandInput,
596
+ cb: (err: any, data?: ExecuteTransactionCommandOutput) => void
597
+ ): void;
598
+ executeTransaction(
599
+ args: ExecuteTransactionCommandInput,
600
+ options: __HttpHandlerOptions,
601
+ cb: (err: any, data?: ExecuteTransactionCommandOutput) => void
602
+ ): void;
603
+ exportTableToPointInTime(
604
+ args: ExportTableToPointInTimeCommandInput,
605
+ options?: __HttpHandlerOptions
606
+ ): Promise<ExportTableToPointInTimeCommandOutput>;
607
+ exportTableToPointInTime(
608
+ args: ExportTableToPointInTimeCommandInput,
609
+ cb: (err: any, data?: ExportTableToPointInTimeCommandOutput) => void
610
+ ): void;
611
+ exportTableToPointInTime(
612
+ args: ExportTableToPointInTimeCommandInput,
613
+ options: __HttpHandlerOptions,
614
+ cb: (err: any, data?: ExportTableToPointInTimeCommandOutput) => void
615
+ ): void;
616
+ getItem(
617
+ args: GetItemCommandInput,
618
+ options?: __HttpHandlerOptions
619
+ ): Promise<GetItemCommandOutput>;
620
+ getItem(
621
+ args: GetItemCommandInput,
622
+ cb: (err: any, data?: GetItemCommandOutput) => void
623
+ ): void;
624
+ getItem(
625
+ args: GetItemCommandInput,
626
+ options: __HttpHandlerOptions,
627
+ cb: (err: any, data?: GetItemCommandOutput) => void
628
+ ): void;
629
+ getResourcePolicy(
630
+ args: GetResourcePolicyCommandInput,
631
+ options?: __HttpHandlerOptions
632
+ ): Promise<GetResourcePolicyCommandOutput>;
633
+ getResourcePolicy(
634
+ args: GetResourcePolicyCommandInput,
635
+ cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
636
+ ): void;
637
+ getResourcePolicy(
638
+ args: GetResourcePolicyCommandInput,
639
+ options: __HttpHandlerOptions,
640
+ cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
641
+ ): void;
642
+ importTable(
643
+ args: ImportTableCommandInput,
644
+ options?: __HttpHandlerOptions
645
+ ): Promise<ImportTableCommandOutput>;
646
+ importTable(
647
+ args: ImportTableCommandInput,
648
+ cb: (err: any, data?: ImportTableCommandOutput) => void
649
+ ): void;
650
+ importTable(
651
+ args: ImportTableCommandInput,
652
+ options: __HttpHandlerOptions,
653
+ cb: (err: any, data?: ImportTableCommandOutput) => void
654
+ ): void;
655
+ listBackups(): Promise<ListBackupsCommandOutput>;
656
+ listBackups(
657
+ args: ListBackupsCommandInput,
658
+ options?: __HttpHandlerOptions
659
+ ): Promise<ListBackupsCommandOutput>;
660
+ listBackups(
661
+ args: ListBackupsCommandInput,
662
+ cb: (err: any, data?: ListBackupsCommandOutput) => void
663
+ ): void;
664
+ listBackups(
665
+ args: ListBackupsCommandInput,
666
+ options: __HttpHandlerOptions,
667
+ cb: (err: any, data?: ListBackupsCommandOutput) => void
668
+ ): void;
669
+ listContributorInsights(): Promise<ListContributorInsightsCommandOutput>;
670
+ listContributorInsights(
671
+ args: ListContributorInsightsCommandInput,
672
+ options?: __HttpHandlerOptions
673
+ ): Promise<ListContributorInsightsCommandOutput>;
674
+ listContributorInsights(
675
+ args: ListContributorInsightsCommandInput,
676
+ cb: (err: any, data?: ListContributorInsightsCommandOutput) => void
677
+ ): void;
678
+ listContributorInsights(
679
+ args: ListContributorInsightsCommandInput,
680
+ options: __HttpHandlerOptions,
681
+ cb: (err: any, data?: ListContributorInsightsCommandOutput) => void
682
+ ): void;
683
+ listExports(): Promise<ListExportsCommandOutput>;
684
+ listExports(
685
+ args: ListExportsCommandInput,
686
+ options?: __HttpHandlerOptions
687
+ ): Promise<ListExportsCommandOutput>;
688
+ listExports(
689
+ args: ListExportsCommandInput,
690
+ cb: (err: any, data?: ListExportsCommandOutput) => void
691
+ ): void;
692
+ listExports(
693
+ args: ListExportsCommandInput,
694
+ options: __HttpHandlerOptions,
695
+ cb: (err: any, data?: ListExportsCommandOutput) => void
696
+ ): void;
697
+ listGlobalTables(): Promise<ListGlobalTablesCommandOutput>;
698
+ listGlobalTables(
699
+ args: ListGlobalTablesCommandInput,
700
+ options?: __HttpHandlerOptions
701
+ ): Promise<ListGlobalTablesCommandOutput>;
702
+ listGlobalTables(
703
+ args: ListGlobalTablesCommandInput,
704
+ cb: (err: any, data?: ListGlobalTablesCommandOutput) => void
705
+ ): void;
706
+ listGlobalTables(
707
+ args: ListGlobalTablesCommandInput,
708
+ options: __HttpHandlerOptions,
709
+ cb: (err: any, data?: ListGlobalTablesCommandOutput) => void
710
+ ): void;
711
+ listImports(): Promise<ListImportsCommandOutput>;
712
+ listImports(
713
+ args: ListImportsCommandInput,
714
+ options?: __HttpHandlerOptions
715
+ ): Promise<ListImportsCommandOutput>;
716
+ listImports(
717
+ args: ListImportsCommandInput,
718
+ cb: (err: any, data?: ListImportsCommandOutput) => void
719
+ ): void;
720
+ listImports(
721
+ args: ListImportsCommandInput,
722
+ options: __HttpHandlerOptions,
723
+ cb: (err: any, data?: ListImportsCommandOutput) => void
724
+ ): void;
725
+ listTables(): Promise<ListTablesCommandOutput>;
726
+ listTables(
727
+ args: ListTablesCommandInput,
728
+ options?: __HttpHandlerOptions
729
+ ): Promise<ListTablesCommandOutput>;
730
+ listTables(
731
+ args: ListTablesCommandInput,
732
+ cb: (err: any, data?: ListTablesCommandOutput) => void
733
+ ): void;
734
+ listTables(
735
+ args: ListTablesCommandInput,
736
+ options: __HttpHandlerOptions,
737
+ cb: (err: any, data?: ListTablesCommandOutput) => void
738
+ ): void;
739
+ listTagsOfResource(
740
+ args: ListTagsOfResourceCommandInput,
741
+ options?: __HttpHandlerOptions
742
+ ): Promise<ListTagsOfResourceCommandOutput>;
743
+ listTagsOfResource(
744
+ args: ListTagsOfResourceCommandInput,
745
+ cb: (err: any, data?: ListTagsOfResourceCommandOutput) => void
746
+ ): void;
747
+ listTagsOfResource(
748
+ args: ListTagsOfResourceCommandInput,
749
+ options: __HttpHandlerOptions,
750
+ cb: (err: any, data?: ListTagsOfResourceCommandOutput) => void
751
+ ): void;
752
+ putItem(
753
+ args: PutItemCommandInput,
754
+ options?: __HttpHandlerOptions
755
+ ): Promise<PutItemCommandOutput>;
756
+ putItem(
757
+ args: PutItemCommandInput,
758
+ cb: (err: any, data?: PutItemCommandOutput) => void
759
+ ): void;
760
+ putItem(
761
+ args: PutItemCommandInput,
762
+ options: __HttpHandlerOptions,
763
+ cb: (err: any, data?: PutItemCommandOutput) => void
764
+ ): void;
765
+ putResourcePolicy(
766
+ args: PutResourcePolicyCommandInput,
767
+ options?: __HttpHandlerOptions
768
+ ): Promise<PutResourcePolicyCommandOutput>;
769
+ putResourcePolicy(
770
+ args: PutResourcePolicyCommandInput,
771
+ cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
772
+ ): void;
773
+ putResourcePolicy(
774
+ args: PutResourcePolicyCommandInput,
775
+ options: __HttpHandlerOptions,
776
+ cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
777
+ ): void;
778
+ query(
779
+ args: QueryCommandInput,
780
+ options?: __HttpHandlerOptions
781
+ ): Promise<QueryCommandOutput>;
782
+ query(
783
+ args: QueryCommandInput,
784
+ cb: (err: any, data?: QueryCommandOutput) => void
785
+ ): void;
786
+ query(
787
+ args: QueryCommandInput,
788
+ options: __HttpHandlerOptions,
789
+ cb: (err: any, data?: QueryCommandOutput) => void
790
+ ): void;
791
+ restoreTableFromBackup(
792
+ args: RestoreTableFromBackupCommandInput,
793
+ options?: __HttpHandlerOptions
794
+ ): Promise<RestoreTableFromBackupCommandOutput>;
795
+ restoreTableFromBackup(
796
+ args: RestoreTableFromBackupCommandInput,
797
+ cb: (err: any, data?: RestoreTableFromBackupCommandOutput) => void
798
+ ): void;
799
+ restoreTableFromBackup(
800
+ args: RestoreTableFromBackupCommandInput,
801
+ options: __HttpHandlerOptions,
802
+ cb: (err: any, data?: RestoreTableFromBackupCommandOutput) => void
803
+ ): void;
804
+ restoreTableToPointInTime(
805
+ args: RestoreTableToPointInTimeCommandInput,
806
+ options?: __HttpHandlerOptions
807
+ ): Promise<RestoreTableToPointInTimeCommandOutput>;
808
+ restoreTableToPointInTime(
809
+ args: RestoreTableToPointInTimeCommandInput,
810
+ cb: (err: any, data?: RestoreTableToPointInTimeCommandOutput) => void
811
+ ): void;
812
+ restoreTableToPointInTime(
813
+ args: RestoreTableToPointInTimeCommandInput,
814
+ options: __HttpHandlerOptions,
815
+ cb: (err: any, data?: RestoreTableToPointInTimeCommandOutput) => void
816
+ ): void;
817
+ scan(
818
+ args: ScanCommandInput,
819
+ options?: __HttpHandlerOptions
820
+ ): Promise<ScanCommandOutput>;
821
+ scan(
822
+ args: ScanCommandInput,
823
+ cb: (err: any, data?: ScanCommandOutput) => void
824
+ ): void;
825
+ scan(
826
+ args: ScanCommandInput,
827
+ options: __HttpHandlerOptions,
828
+ cb: (err: any, data?: ScanCommandOutput) => void
829
+ ): void;
830
+ tagResource(
831
+ args: TagResourceCommandInput,
832
+ options?: __HttpHandlerOptions
833
+ ): Promise<TagResourceCommandOutput>;
834
+ tagResource(
835
+ args: TagResourceCommandInput,
836
+ cb: (err: any, data?: TagResourceCommandOutput) => void
837
+ ): void;
838
+ tagResource(
839
+ args: TagResourceCommandInput,
840
+ options: __HttpHandlerOptions,
841
+ cb: (err: any, data?: TagResourceCommandOutput) => void
842
+ ): void;
843
+ transactGetItems(
844
+ args: TransactGetItemsCommandInput,
845
+ options?: __HttpHandlerOptions
846
+ ): Promise<TransactGetItemsCommandOutput>;
847
+ transactGetItems(
848
+ args: TransactGetItemsCommandInput,
849
+ cb: (err: any, data?: TransactGetItemsCommandOutput) => void
850
+ ): void;
851
+ transactGetItems(
852
+ args: TransactGetItemsCommandInput,
853
+ options: __HttpHandlerOptions,
854
+ cb: (err: any, data?: TransactGetItemsCommandOutput) => void
855
+ ): void;
856
+ transactWriteItems(
857
+ args: TransactWriteItemsCommandInput,
858
+ options?: __HttpHandlerOptions
859
+ ): Promise<TransactWriteItemsCommandOutput>;
860
+ transactWriteItems(
861
+ args: TransactWriteItemsCommandInput,
862
+ cb: (err: any, data?: TransactWriteItemsCommandOutput) => void
863
+ ): void;
864
+ transactWriteItems(
865
+ args: TransactWriteItemsCommandInput,
866
+ options: __HttpHandlerOptions,
867
+ cb: (err: any, data?: TransactWriteItemsCommandOutput) => void
868
+ ): void;
869
+ untagResource(
870
+ args: UntagResourceCommandInput,
871
+ options?: __HttpHandlerOptions
872
+ ): Promise<UntagResourceCommandOutput>;
873
+ untagResource(
874
+ args: UntagResourceCommandInput,
875
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
876
+ ): void;
877
+ untagResource(
878
+ args: UntagResourceCommandInput,
879
+ options: __HttpHandlerOptions,
880
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
881
+ ): void;
882
+ updateContinuousBackups(
883
+ args: UpdateContinuousBackupsCommandInput,
884
+ options?: __HttpHandlerOptions
885
+ ): Promise<UpdateContinuousBackupsCommandOutput>;
886
+ updateContinuousBackups(
887
+ args: UpdateContinuousBackupsCommandInput,
888
+ cb: (err: any, data?: UpdateContinuousBackupsCommandOutput) => void
889
+ ): void;
890
+ updateContinuousBackups(
891
+ args: UpdateContinuousBackupsCommandInput,
892
+ options: __HttpHandlerOptions,
893
+ cb: (err: any, data?: UpdateContinuousBackupsCommandOutput) => void
894
+ ): void;
895
+ updateContributorInsights(
896
+ args: UpdateContributorInsightsCommandInput,
897
+ options?: __HttpHandlerOptions
898
+ ): Promise<UpdateContributorInsightsCommandOutput>;
899
+ updateContributorInsights(
900
+ args: UpdateContributorInsightsCommandInput,
901
+ cb: (err: any, data?: UpdateContributorInsightsCommandOutput) => void
902
+ ): void;
903
+ updateContributorInsights(
904
+ args: UpdateContributorInsightsCommandInput,
905
+ options: __HttpHandlerOptions,
906
+ cb: (err: any, data?: UpdateContributorInsightsCommandOutput) => void
907
+ ): void;
908
+ updateGlobalTable(
909
+ args: UpdateGlobalTableCommandInput,
910
+ options?: __HttpHandlerOptions
911
+ ): Promise<UpdateGlobalTableCommandOutput>;
912
+ updateGlobalTable(
913
+ args: UpdateGlobalTableCommandInput,
914
+ cb: (err: any, data?: UpdateGlobalTableCommandOutput) => void
915
+ ): void;
916
+ updateGlobalTable(
917
+ args: UpdateGlobalTableCommandInput,
918
+ options: __HttpHandlerOptions,
919
+ cb: (err: any, data?: UpdateGlobalTableCommandOutput) => void
920
+ ): void;
921
+ updateGlobalTableSettings(
922
+ args: UpdateGlobalTableSettingsCommandInput,
923
+ options?: __HttpHandlerOptions
924
+ ): Promise<UpdateGlobalTableSettingsCommandOutput>;
925
+ updateGlobalTableSettings(
926
+ args: UpdateGlobalTableSettingsCommandInput,
927
+ cb: (err: any, data?: UpdateGlobalTableSettingsCommandOutput) => void
928
+ ): void;
929
+ updateGlobalTableSettings(
930
+ args: UpdateGlobalTableSettingsCommandInput,
931
+ options: __HttpHandlerOptions,
932
+ cb: (err: any, data?: UpdateGlobalTableSettingsCommandOutput) => void
933
+ ): void;
934
+ updateItem(
935
+ args: UpdateItemCommandInput,
936
+ options?: __HttpHandlerOptions
937
+ ): Promise<UpdateItemCommandOutput>;
938
+ updateItem(
939
+ args: UpdateItemCommandInput,
940
+ cb: (err: any, data?: UpdateItemCommandOutput) => void
941
+ ): void;
942
+ updateItem(
943
+ args: UpdateItemCommandInput,
944
+ options: __HttpHandlerOptions,
945
+ cb: (err: any, data?: UpdateItemCommandOutput) => void
946
+ ): void;
947
+ updateKinesisStreamingDestination(
948
+ args: UpdateKinesisStreamingDestinationCommandInput,
949
+ options?: __HttpHandlerOptions
950
+ ): Promise<UpdateKinesisStreamingDestinationCommandOutput>;
951
+ updateKinesisStreamingDestination(
952
+ args: UpdateKinesisStreamingDestinationCommandInput,
953
+ cb: (
954
+ err: any,
955
+ data?: UpdateKinesisStreamingDestinationCommandOutput
956
+ ) => void
957
+ ): void;
958
+ updateKinesisStreamingDestination(
959
+ args: UpdateKinesisStreamingDestinationCommandInput,
960
+ options: __HttpHandlerOptions,
961
+ cb: (
962
+ err: any,
963
+ data?: UpdateKinesisStreamingDestinationCommandOutput
964
+ ) => void
965
+ ): void;
966
+ updateTable(
967
+ args: UpdateTableCommandInput,
968
+ options?: __HttpHandlerOptions
969
+ ): Promise<UpdateTableCommandOutput>;
970
+ updateTable(
971
+ args: UpdateTableCommandInput,
972
+ cb: (err: any, data?: UpdateTableCommandOutput) => void
973
+ ): void;
974
+ updateTable(
975
+ args: UpdateTableCommandInput,
976
+ options: __HttpHandlerOptions,
977
+ cb: (err: any, data?: UpdateTableCommandOutput) => void
978
+ ): void;
979
+ updateTableReplicaAutoScaling(
980
+ args: UpdateTableReplicaAutoScalingCommandInput,
981
+ options?: __HttpHandlerOptions
982
+ ): Promise<UpdateTableReplicaAutoScalingCommandOutput>;
983
+ updateTableReplicaAutoScaling(
984
+ args: UpdateTableReplicaAutoScalingCommandInput,
985
+ cb: (err: any, data?: UpdateTableReplicaAutoScalingCommandOutput) => void
986
+ ): void;
987
+ updateTableReplicaAutoScaling(
988
+ args: UpdateTableReplicaAutoScalingCommandInput,
989
+ options: __HttpHandlerOptions,
990
+ cb: (err: any, data?: UpdateTableReplicaAutoScalingCommandOutput) => void
991
+ ): void;
992
+ updateTimeToLive(
993
+ args: UpdateTimeToLiveCommandInput,
994
+ options?: __HttpHandlerOptions
995
+ ): Promise<UpdateTimeToLiveCommandOutput>;
996
+ updateTimeToLive(
997
+ args: UpdateTimeToLiveCommandInput,
998
+ cb: (err: any, data?: UpdateTimeToLiveCommandOutput) => void
999
+ ): void;
1000
+ updateTimeToLive(
1001
+ args: UpdateTimeToLiveCommandInput,
1002
+ options: __HttpHandlerOptions,
1003
+ cb: (err: any, data?: UpdateTimeToLiveCommandOutput) => void
1004
+ ): void;
1005
+ paginateListContributorInsights(
1006
+ args?: ListContributorInsightsCommandInput,
1007
+ paginationConfig?: Pick<
1008
+ PaginationConfiguration,
1009
+ Exclude<keyof PaginationConfiguration, "client">
1010
+ >
1011
+ ): Paginator<ListContributorInsightsCommandOutput>;
1012
+ paginateListExports(
1013
+ args?: ListExportsCommandInput,
1014
+ paginationConfig?: Pick<
1015
+ PaginationConfiguration,
1016
+ Exclude<keyof PaginationConfiguration, "client">
1017
+ >
1018
+ ): Paginator<ListExportsCommandOutput>;
1019
+ paginateListImports(
1020
+ args?: ListImportsCommandInput,
1021
+ paginationConfig?: Pick<
1022
+ PaginationConfiguration,
1023
+ Exclude<keyof PaginationConfiguration, "client">
1024
+ >
1025
+ ): Paginator<ListImportsCommandOutput>;
1026
+ paginateListTables(
1027
+ args?: ListTablesCommandInput,
1028
+ paginationConfig?: Pick<
1029
+ PaginationConfiguration,
1030
+ Exclude<keyof PaginationConfiguration, "client">
1031
+ >
1032
+ ): Paginator<ListTablesCommandOutput>;
1033
+ paginateQuery(
1034
+ args: QueryCommandInput,
1035
+ paginationConfig?: Pick<
1036
+ PaginationConfiguration,
1037
+ Exclude<keyof PaginationConfiguration, "client">
1038
+ >
1039
+ ): Paginator<QueryCommandOutput>;
1040
+ paginateScan(
1041
+ args: ScanCommandInput,
1042
+ paginationConfig?: Pick<
1043
+ PaginationConfiguration,
1044
+ Exclude<keyof PaginationConfiguration, "client">
1045
+ >
1046
+ ): Paginator<ScanCommandOutput>;
1047
+ waitUntilContributorInsightsEnabled(
1048
+ args: DescribeContributorInsightsCommandInput,
1049
+ waiterConfig:
1050
+ | number
1051
+ | Pick<
1052
+ WaiterConfiguration<DynamoDB>,
1053
+ Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
1054
+ >
1055
+ ): Promise<WaiterResult>;
1056
+ waitUntilExportCompleted(
1057
+ args: DescribeExportCommandInput,
1058
+ waiterConfig:
1059
+ | number
1060
+ | Pick<
1061
+ WaiterConfiguration<DynamoDB>,
1062
+ Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
1063
+ >
1064
+ ): Promise<WaiterResult>;
1065
+ waitUntilImportCompleted(
1066
+ args: DescribeImportCommandInput,
1067
+ waiterConfig:
1068
+ | number
1069
+ | Pick<
1070
+ WaiterConfiguration<DynamoDB>,
1071
+ Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
1072
+ >
1073
+ ): Promise<WaiterResult>;
1074
+ waitUntilKinesisStreamingDestinationActive(
1075
+ args: DescribeKinesisStreamingDestinationCommandInput,
1076
+ waiterConfig:
1077
+ | number
1078
+ | Pick<
1079
+ WaiterConfiguration<DynamoDB>,
1080
+ Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
1081
+ >
1082
+ ): Promise<WaiterResult>;
1083
+ waitUntilTableExists(
1084
+ args: DescribeTableCommandInput,
1085
+ waiterConfig:
1086
+ | number
1087
+ | Pick<
1088
+ WaiterConfiguration<DynamoDB>,
1089
+ Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
1090
+ >
1091
+ ): Promise<WaiterResult>;
1092
+ waitUntilTableNotExists(
1093
+ args: DescribeTableCommandInput,
1094
+ waiterConfig:
1095
+ | number
1096
+ | Pick<
1097
+ WaiterConfiguration<DynamoDB>,
1098
+ Exclude<keyof WaiterConfiguration<DynamoDB>, "client">
1099
+ >
1100
+ ): Promise<WaiterResult>;
1101
+ }
1102
+ export declare class DynamoDB extends DynamoDBClient implements DynamoDB {}