@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,8 @@
1
+ import type { PaginationConfiguration } from "@smithy/types";
2
+ import { DynamoDBClient } from "../DynamoDBClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface DynamoDBPaginationConfiguration extends PaginationConfiguration {
7
+ client: DynamoDBClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListContributorInsightsCommandInput, ListContributorInsightsCommandOutput } from "../commands/ListContributorInsightsCommand";
3
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListContributorInsights: (config: DynamoDBPaginationConfiguration, input: ListContributorInsightsCommandInput, ...rest: any[]) => Paginator<ListContributorInsightsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListExportsCommandInput, ListExportsCommandOutput } from "../commands/ListExportsCommand";
3
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListExports: (config: DynamoDBPaginationConfiguration, input: ListExportsCommandInput, ...rest: any[]) => Paginator<ListExportsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListImportsCommandInput, ListImportsCommandOutput } from "../commands/ListImportsCommand";
3
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListImports: (config: DynamoDBPaginationConfiguration, input: ListImportsCommandInput, ...rest: any[]) => Paginator<ListImportsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
3
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListTables: (config: DynamoDBPaginationConfiguration, input: ListTablesCommandInput, ...rest: any[]) => Paginator<ListTablesCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { QueryCommandInput, QueryCommandOutput } from "../commands/QueryCommand";
3
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateQuery: (config: DynamoDBPaginationConfiguration, input: QueryCommandInput, ...rest: any[]) => Paginator<QueryCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import type { Paginator } from "@smithy/types";
2
+ import { ScanCommandInput, ScanCommandOutput } from "../commands/ScanCommand";
3
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateScan: (config: DynamoDBPaginationConfiguration, input: ScanCommandInput, ...rest: any[]) => Paginator<ScanCommandOutput>;
@@ -0,0 +1,7 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListContributorInsightsPaginator";
3
+ export * from "./ListExportsPaginator";
4
+ export * from "./ListImportsPaginator";
5
+ export * from "./ListTablesPaginator";
6
+ export * from "./QueryPaginator";
7
+ export * from "./ScanPaginator";
@@ -0,0 +1,60 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import type { DynamoDBClientConfig } from "./DynamoDBClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: DynamoDBClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ accountIdEndpointMode: "disabled" | "preferred" | "required" | (() => Promise<string>);
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
12
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
13
+ endpointDiscoveryEnabledProvider: import("@smithy/types").Provider<boolean | undefined>;
14
+ maxAttempts: number | import("@smithy/types").Provider<number>;
15
+ region: string | import("@smithy/types").Provider<any>;
16
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
17
+ retryMode: string | import("@smithy/types").Provider<string>;
18
+ sha256: import("@smithy/types").HashConstructor;
19
+ streamCollector: import("@smithy/types").StreamCollector;
20
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
21
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
22
+ cacheMiddleware?: boolean | undefined;
23
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
24
+ protocolSettings: {
25
+ defaultNamespace?: string;
26
+ [setting: string]: unknown;
27
+ };
28
+ apiVersion: string;
29
+ urlParser: import("@smithy/types").UrlParser;
30
+ base64Decoder: import("@smithy/types").Decoder;
31
+ base64Encoder: (_input: Uint8Array | string) => string;
32
+ utf8Decoder: import("@smithy/types").Decoder;
33
+ utf8Encoder: (input: Uint8Array | string) => string;
34
+ disableHostPrefix: boolean;
35
+ serviceId: string;
36
+ profile?: string;
37
+ logger: import("@smithy/types").Logger;
38
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
39
+ customUserAgent?: string | import("@smithy/types").UserAgent;
40
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
41
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
42
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
43
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
44
+ logger?: import("@smithy/types").Logger;
45
+ }) => import("@smithy/types").EndpointV2;
46
+ tls?: boolean;
47
+ serviceConfiguredEndpoint?: never;
48
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
49
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
50
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DynamoDBHttpAuthSchemeProvider;
51
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
52
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
53
+ signingEscapePath?: boolean;
54
+ systemClockOffset?: number;
55
+ signingRegion?: string;
56
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
57
+ endpointCacheSize?: number;
58
+ endpointDiscoveryEnabled?: boolean | undefined;
59
+ accountId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
60
+ };
@@ -0,0 +1,60 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import type { DynamoDBClientConfig } from "./DynamoDBClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: DynamoDBClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ accountIdEndpointMode: "disabled" | "preferred" | "required" | import("@smithy/types").Provider<import("@aws-sdk/core/account-id-endpoint").AccountIdEndpointMode>;
10
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
11
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
13
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
14
+ endpointDiscoveryEnabledProvider: import("@smithy/types").Provider<boolean | undefined>;
15
+ maxAttempts: number | import("@smithy/types").Provider<number>;
16
+ region: string | import("@smithy/types").Provider<string>;
17
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
18
+ retryMode: string | import("@smithy/types").Provider<string>;
19
+ sha256: import("@smithy/types").HashConstructor;
20
+ streamCollector: import("@smithy/types").StreamCollector;
21
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
23
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
24
+ cacheMiddleware?: boolean | undefined;
25
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
26
+ protocolSettings: {
27
+ defaultNamespace?: string;
28
+ [setting: string]: unknown;
29
+ };
30
+ apiVersion: string;
31
+ urlParser: import("@smithy/types").UrlParser;
32
+ base64Decoder: import("@smithy/types").Decoder;
33
+ base64Encoder: (_input: Uint8Array | string) => string;
34
+ utf8Decoder: import("@smithy/types").Decoder;
35
+ utf8Encoder: (input: Uint8Array | string) => string;
36
+ disableHostPrefix: boolean;
37
+ serviceId: string;
38
+ profile?: string;
39
+ logger: import("@smithy/types").Logger;
40
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
41
+ customUserAgent?: string | import("@smithy/types").UserAgent;
42
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
43
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
44
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
45
+ logger?: import("@smithy/types").Logger;
46
+ }) => import("@smithy/types").EndpointV2;
47
+ tls?: boolean;
48
+ serviceConfiguredEndpoint?: never;
49
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
50
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DynamoDBHttpAuthSchemeProvider;
51
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
52
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
53
+ signingEscapePath?: boolean;
54
+ systemClockOffset?: number;
55
+ signingRegion?: string;
56
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
57
+ endpointCacheSize?: number;
58
+ endpointDiscoveryEnabled?: boolean | undefined;
59
+ accountId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
60
+ };
@@ -0,0 +1,59 @@
1
+ import type { DynamoDBClientConfig } from "./DynamoDBClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: DynamoDBClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ cacheMiddleware?: boolean;
10
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
11
+ protocolSettings: {
12
+ defaultNamespace?: string;
13
+ [setting: string]: unknown;
14
+ };
15
+ apiVersion: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
+ streamCollector: import("@smithy/types").StreamCollector;
19
+ base64Decoder: import("@smithy/types").Decoder;
20
+ base64Encoder: (_input: Uint8Array | string) => string;
21
+ utf8Decoder: import("@smithy/types").Decoder;
22
+ utf8Encoder: (input: Uint8Array | string) => string;
23
+ disableHostPrefix: boolean;
24
+ serviceId: string;
25
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
26
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
27
+ region: string | import("@smithy/types").Provider<any>;
28
+ profile?: string;
29
+ accountIdEndpointMode: "disabled" | "preferred" | "required" | (() => Promise<string>);
30
+ defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
31
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
32
+ maxAttempts: number | import("@smithy/types").Provider<number>;
33
+ retryMode: string | import("@smithy/types").Provider<string>;
34
+ logger: import("@smithy/types").Logger;
35
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
36
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
37
+ endpointDiscoveryEnabledProvider: import("@smithy/types").Provider<boolean | undefined>;
38
+ customUserAgent?: string | import("@smithy/types").UserAgent;
39
+ userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
40
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
41
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
42
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
43
+ logger?: import("@smithy/types").Logger;
44
+ }) => import("@smithy/types").EndpointV2;
45
+ tls?: boolean;
46
+ serviceConfiguredEndpoint?: never;
47
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
48
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
49
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DynamoDBHttpAuthSchemeProvider;
50
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
51
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
52
+ signingEscapePath?: boolean;
53
+ systemClockOffset?: number;
54
+ signingRegion?: string;
55
+ signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
56
+ endpointCacheSize?: number;
57
+ endpointDiscoveryEnabled?: boolean | undefined;
58
+ accountId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
59
+ };
@@ -0,0 +1,27 @@
1
+ import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols";
2
+ import type { DynamoDBClientConfig } from "./DynamoDBClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: DynamoDBClientConfig) => {
7
+ apiVersion: string;
8
+ base64Decoder: import("@smithy/types").Decoder;
9
+ base64Encoder: (_input: Uint8Array | string) => string;
10
+ disableHostPrefix: boolean;
11
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
12
+ logger?: import("@smithy/types").Logger;
13
+ }) => import("@smithy/types").EndpointV2;
14
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
15
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DynamoDBHttpAuthSchemeProvider;
16
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
17
+ logger: import("@smithy/types").Logger;
18
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsJson1_0Protocol;
19
+ protocolSettings: {
20
+ [setting: string]: unknown;
21
+ defaultNamespace?: string;
22
+ };
23
+ serviceId: string;
24
+ urlParser: import("@smithy/types").UrlParser;
25
+ utf8Decoder: import("@smithy/types").Decoder;
26
+ utf8Encoder: (input: Uint8Array | string) => string;
27
+ };
@@ -0,0 +1,17 @@
1
+ import type { DynamoDBExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: DynamoDBExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,325 @@
1
+ import { TypeRegistry } from "@smithy/core/schema";
2
+ import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
3
+ export declare var DynamoDBServiceException$: StaticErrorSchema;
4
+ export declare var BackupInUseException$: StaticErrorSchema;
5
+ export declare var BackupNotFoundException$: StaticErrorSchema;
6
+ export declare var ConditionalCheckFailedException$: StaticErrorSchema;
7
+ export declare var ContinuousBackupsUnavailableException$: StaticErrorSchema;
8
+ export declare var DuplicateItemException$: StaticErrorSchema;
9
+ export declare var ExportConflictException$: StaticErrorSchema;
10
+ export declare var ExportNotFoundException$: StaticErrorSchema;
11
+ export declare var GlobalTableAlreadyExistsException$: StaticErrorSchema;
12
+ export declare var GlobalTableNotFoundException$: StaticErrorSchema;
13
+ export declare var IdempotentParameterMismatchException$: StaticErrorSchema;
14
+ export declare var ImportConflictException$: StaticErrorSchema;
15
+ export declare var ImportNotFoundException$: StaticErrorSchema;
16
+ export declare var IndexNotFoundException$: StaticErrorSchema;
17
+ export declare var InternalServerError$: StaticErrorSchema;
18
+ export declare var InvalidEndpointException$: StaticErrorSchema;
19
+ export declare var InvalidExportTimeException$: StaticErrorSchema;
20
+ export declare var InvalidRestoreTimeException$: StaticErrorSchema;
21
+ export declare var ItemCollectionSizeLimitExceededException$: StaticErrorSchema;
22
+ export declare var LimitExceededException$: StaticErrorSchema;
23
+ export declare var PointInTimeRecoveryUnavailableException$: StaticErrorSchema;
24
+ export declare var PolicyNotFoundException$: StaticErrorSchema;
25
+ export declare var ProvisionedThroughputExceededException$: StaticErrorSchema;
26
+ export declare var ReplicaAlreadyExistsException$: StaticErrorSchema;
27
+ export declare var ReplicaNotFoundException$: StaticErrorSchema;
28
+ export declare var ReplicatedWriteConflictException$: StaticErrorSchema;
29
+ export declare var RequestLimitExceeded$: StaticErrorSchema;
30
+ export declare var ResourceInUseException$: StaticErrorSchema;
31
+ export declare var ResourceNotFoundException$: StaticErrorSchema;
32
+ export declare var TableAlreadyExistsException$: StaticErrorSchema;
33
+ export declare var TableInUseException$: StaticErrorSchema;
34
+ export declare var TableNotFoundException$: StaticErrorSchema;
35
+ export declare var ThrottlingException$: StaticErrorSchema;
36
+ export declare var TransactionCanceledException$: StaticErrorSchema;
37
+ export declare var TransactionConflictException$: StaticErrorSchema;
38
+ export declare var TransactionInProgressException$: StaticErrorSchema;
39
+ /**
40
+ * TypeRegistry instances containing modeled errors.
41
+ * @internal
42
+ *
43
+ */
44
+ export declare const errorTypeRegistries: TypeRegistry[];
45
+ export declare var ArchivalSummary$: StaticStructureSchema;
46
+ export declare var AttributeDefinition$: StaticStructureSchema;
47
+ export declare var AttributeValueUpdate$: StaticStructureSchema;
48
+ export declare var AutoScalingPolicyDescription$: StaticStructureSchema;
49
+ export declare var AutoScalingPolicyUpdate$: StaticStructureSchema;
50
+ export declare var AutoScalingSettingsDescription$: StaticStructureSchema;
51
+ export declare var AutoScalingSettingsUpdate$: StaticStructureSchema;
52
+ export declare var AutoScalingTargetTrackingScalingPolicyConfigurationDescription$: StaticStructureSchema;
53
+ export declare var AutoScalingTargetTrackingScalingPolicyConfigurationUpdate$: StaticStructureSchema;
54
+ export declare var BackupDescription$: StaticStructureSchema;
55
+ export declare var BackupDetails$: StaticStructureSchema;
56
+ export declare var BackupSummary$: StaticStructureSchema;
57
+ export declare var BatchExecuteStatementInput$: StaticStructureSchema;
58
+ export declare var BatchExecuteStatementOutput$: StaticStructureSchema;
59
+ export declare var BatchGetItemInput$: StaticStructureSchema;
60
+ export declare var BatchGetItemOutput$: StaticStructureSchema;
61
+ export declare var BatchStatementError$: StaticStructureSchema;
62
+ export declare var BatchStatementRequest$: StaticStructureSchema;
63
+ export declare var BatchStatementResponse$: StaticStructureSchema;
64
+ export declare var BatchWriteItemInput$: StaticStructureSchema;
65
+ export declare var BatchWriteItemOutput$: StaticStructureSchema;
66
+ export declare var BillingModeSummary$: StaticStructureSchema;
67
+ export declare var CancellationReason$: StaticStructureSchema;
68
+ export declare var Capacity$: StaticStructureSchema;
69
+ export declare var Condition$: StaticStructureSchema;
70
+ export declare var ConditionCheck$: StaticStructureSchema;
71
+ export declare var ConsumedCapacity$: StaticStructureSchema;
72
+ export declare var ContinuousBackupsDescription$: StaticStructureSchema;
73
+ export declare var ContributorInsightsSummary$: StaticStructureSchema;
74
+ export declare var CreateBackupInput$: StaticStructureSchema;
75
+ export declare var CreateBackupOutput$: StaticStructureSchema;
76
+ export declare var CreateGlobalSecondaryIndexAction$: StaticStructureSchema;
77
+ export declare var CreateGlobalTableInput$: StaticStructureSchema;
78
+ export declare var CreateGlobalTableOutput$: StaticStructureSchema;
79
+ export declare var CreateGlobalTableWitnessGroupMemberAction$: StaticStructureSchema;
80
+ export declare var CreateReplicaAction$: StaticStructureSchema;
81
+ export declare var CreateReplicationGroupMemberAction$: StaticStructureSchema;
82
+ export declare var CreateTableInput$: StaticStructureSchema;
83
+ export declare var CreateTableOutput$: StaticStructureSchema;
84
+ export declare var CsvOptions$: StaticStructureSchema;
85
+ export declare var Delete$: StaticStructureSchema;
86
+ export declare var DeleteBackupInput$: StaticStructureSchema;
87
+ export declare var DeleteBackupOutput$: StaticStructureSchema;
88
+ export declare var DeleteGlobalSecondaryIndexAction$: StaticStructureSchema;
89
+ export declare var DeleteGlobalTableWitnessGroupMemberAction$: StaticStructureSchema;
90
+ export declare var DeleteItemInput$: StaticStructureSchema;
91
+ export declare var DeleteItemOutput$: StaticStructureSchema;
92
+ export declare var DeleteReplicaAction$: StaticStructureSchema;
93
+ export declare var DeleteReplicationGroupMemberAction$: StaticStructureSchema;
94
+ export declare var DeleteRequest$: StaticStructureSchema;
95
+ export declare var DeleteResourcePolicyInput$: StaticStructureSchema;
96
+ export declare var DeleteResourcePolicyOutput$: StaticStructureSchema;
97
+ export declare var DeleteTableInput$: StaticStructureSchema;
98
+ export declare var DeleteTableOutput$: StaticStructureSchema;
99
+ export declare var DescribeBackupInput$: StaticStructureSchema;
100
+ export declare var DescribeBackupOutput$: StaticStructureSchema;
101
+ export declare var DescribeContinuousBackupsInput$: StaticStructureSchema;
102
+ export declare var DescribeContinuousBackupsOutput$: StaticStructureSchema;
103
+ export declare var DescribeContributorInsightsInput$: StaticStructureSchema;
104
+ export declare var DescribeContributorInsightsOutput$: StaticStructureSchema;
105
+ export declare var DescribeEndpointsRequest$: StaticStructureSchema;
106
+ export declare var DescribeEndpointsResponse$: StaticStructureSchema;
107
+ export declare var DescribeExportInput$: StaticStructureSchema;
108
+ export declare var DescribeExportOutput$: StaticStructureSchema;
109
+ export declare var DescribeGlobalTableInput$: StaticStructureSchema;
110
+ export declare var DescribeGlobalTableOutput$: StaticStructureSchema;
111
+ export declare var DescribeGlobalTableSettingsInput$: StaticStructureSchema;
112
+ export declare var DescribeGlobalTableSettingsOutput$: StaticStructureSchema;
113
+ export declare var DescribeImportInput$: StaticStructureSchema;
114
+ export declare var DescribeImportOutput$: StaticStructureSchema;
115
+ export declare var DescribeKinesisStreamingDestinationInput$: StaticStructureSchema;
116
+ export declare var DescribeKinesisStreamingDestinationOutput$: StaticStructureSchema;
117
+ export declare var DescribeLimitsInput$: StaticStructureSchema;
118
+ export declare var DescribeLimitsOutput$: StaticStructureSchema;
119
+ export declare var DescribeTableInput$: StaticStructureSchema;
120
+ export declare var DescribeTableOutput$: StaticStructureSchema;
121
+ export declare var DescribeTableReplicaAutoScalingInput$: StaticStructureSchema;
122
+ export declare var DescribeTableReplicaAutoScalingOutput$: StaticStructureSchema;
123
+ export declare var DescribeTimeToLiveInput$: StaticStructureSchema;
124
+ export declare var DescribeTimeToLiveOutput$: StaticStructureSchema;
125
+ export declare var EnableKinesisStreamingConfiguration$: StaticStructureSchema;
126
+ export declare var Endpoint$: StaticStructureSchema;
127
+ export declare var ExecuteStatementInput$: StaticStructureSchema;
128
+ export declare var ExecuteStatementOutput$: StaticStructureSchema;
129
+ export declare var ExecuteTransactionInput$: StaticStructureSchema;
130
+ export declare var ExecuteTransactionOutput$: StaticStructureSchema;
131
+ export declare var ExpectedAttributeValue$: StaticStructureSchema;
132
+ export declare var ExportDescription$: StaticStructureSchema;
133
+ export declare var ExportSummary$: StaticStructureSchema;
134
+ export declare var ExportTableToPointInTimeInput$: StaticStructureSchema;
135
+ export declare var ExportTableToPointInTimeOutput$: StaticStructureSchema;
136
+ export declare var FailureException$: StaticStructureSchema;
137
+ export declare var Get$: StaticStructureSchema;
138
+ export declare var GetItemInput$: StaticStructureSchema;
139
+ export declare var GetItemOutput$: StaticStructureSchema;
140
+ export declare var GetResourcePolicyInput$: StaticStructureSchema;
141
+ export declare var GetResourcePolicyOutput$: StaticStructureSchema;
142
+ export declare var GlobalSecondaryIndex$: StaticStructureSchema;
143
+ export declare var GlobalSecondaryIndexAutoScalingUpdate$: StaticStructureSchema;
144
+ export declare var GlobalSecondaryIndexDescription$: StaticStructureSchema;
145
+ export declare var GlobalSecondaryIndexInfo$: StaticStructureSchema;
146
+ export declare var GlobalSecondaryIndexUpdate$: StaticStructureSchema;
147
+ export declare var GlobalSecondaryIndexWarmThroughputDescription$: StaticStructureSchema;
148
+ export declare var GlobalTable$: StaticStructureSchema;
149
+ export declare var GlobalTableDescription$: StaticStructureSchema;
150
+ export declare var GlobalTableGlobalSecondaryIndexSettingsUpdate$: StaticStructureSchema;
151
+ export declare var GlobalTableWitnessDescription$: StaticStructureSchema;
152
+ export declare var GlobalTableWitnessGroupUpdate$: StaticStructureSchema;
153
+ export declare var ImportSummary$: StaticStructureSchema;
154
+ export declare var ImportTableDescription$: StaticStructureSchema;
155
+ export declare var ImportTableInput$: StaticStructureSchema;
156
+ export declare var ImportTableOutput$: StaticStructureSchema;
157
+ export declare var IncrementalExportSpecification$: StaticStructureSchema;
158
+ export declare var InputFormatOptions$: StaticStructureSchema;
159
+ export declare var ItemCollectionMetrics$: StaticStructureSchema;
160
+ export declare var ItemResponse$: StaticStructureSchema;
161
+ export declare var KeysAndAttributes$: StaticStructureSchema;
162
+ export declare var KeySchemaElement$: StaticStructureSchema;
163
+ export declare var KinesisDataStreamDestination$: StaticStructureSchema;
164
+ export declare var KinesisStreamingDestinationInput$: StaticStructureSchema;
165
+ export declare var KinesisStreamingDestinationOutput$: StaticStructureSchema;
166
+ export declare var ListBackupsInput$: StaticStructureSchema;
167
+ export declare var ListBackupsOutput$: StaticStructureSchema;
168
+ export declare var ListContributorInsightsInput$: StaticStructureSchema;
169
+ export declare var ListContributorInsightsOutput$: StaticStructureSchema;
170
+ export declare var ListExportsInput$: StaticStructureSchema;
171
+ export declare var ListExportsOutput$: StaticStructureSchema;
172
+ export declare var ListGlobalTablesInput$: StaticStructureSchema;
173
+ export declare var ListGlobalTablesOutput$: StaticStructureSchema;
174
+ export declare var ListImportsInput$: StaticStructureSchema;
175
+ export declare var ListImportsOutput$: StaticStructureSchema;
176
+ export declare var ListTablesInput$: StaticStructureSchema;
177
+ export declare var ListTablesOutput$: StaticStructureSchema;
178
+ export declare var ListTagsOfResourceInput$: StaticStructureSchema;
179
+ export declare var ListTagsOfResourceOutput$: StaticStructureSchema;
180
+ export declare var LocalSecondaryIndex$: StaticStructureSchema;
181
+ export declare var LocalSecondaryIndexDescription$: StaticStructureSchema;
182
+ export declare var LocalSecondaryIndexInfo$: StaticStructureSchema;
183
+ export declare var OnDemandThroughput$: StaticStructureSchema;
184
+ export declare var OnDemandThroughputOverride$: StaticStructureSchema;
185
+ export declare var ParameterizedStatement$: StaticStructureSchema;
186
+ export declare var PointInTimeRecoveryDescription$: StaticStructureSchema;
187
+ export declare var PointInTimeRecoverySpecification$: StaticStructureSchema;
188
+ export declare var Projection$: StaticStructureSchema;
189
+ export declare var ProvisionedThroughput$: StaticStructureSchema;
190
+ export declare var ProvisionedThroughputDescription$: StaticStructureSchema;
191
+ export declare var ProvisionedThroughputOverride$: StaticStructureSchema;
192
+ export declare var Put$: StaticStructureSchema;
193
+ export declare var PutItemInput$: StaticStructureSchema;
194
+ export declare var PutItemOutput$: StaticStructureSchema;
195
+ export declare var PutRequest$: StaticStructureSchema;
196
+ export declare var PutResourcePolicyInput$: StaticStructureSchema;
197
+ export declare var PutResourcePolicyOutput$: StaticStructureSchema;
198
+ export declare var QueryInput$: StaticStructureSchema;
199
+ export declare var QueryOutput$: StaticStructureSchema;
200
+ export declare var Replica$: StaticStructureSchema;
201
+ export declare var ReplicaAutoScalingDescription$: StaticStructureSchema;
202
+ export declare var ReplicaAutoScalingUpdate$: StaticStructureSchema;
203
+ export declare var ReplicaDescription$: StaticStructureSchema;
204
+ export declare var ReplicaGlobalSecondaryIndex$: StaticStructureSchema;
205
+ export declare var ReplicaGlobalSecondaryIndexAutoScalingDescription$: StaticStructureSchema;
206
+ export declare var ReplicaGlobalSecondaryIndexAutoScalingUpdate$: StaticStructureSchema;
207
+ export declare var ReplicaGlobalSecondaryIndexDescription$: StaticStructureSchema;
208
+ export declare var ReplicaGlobalSecondaryIndexSettingsDescription$: StaticStructureSchema;
209
+ export declare var ReplicaGlobalSecondaryIndexSettingsUpdate$: StaticStructureSchema;
210
+ export declare var ReplicaSettingsDescription$: StaticStructureSchema;
211
+ export declare var ReplicaSettingsUpdate$: StaticStructureSchema;
212
+ export declare var ReplicationGroupUpdate$: StaticStructureSchema;
213
+ export declare var ReplicaUpdate$: StaticStructureSchema;
214
+ export declare var RestoreSummary$: StaticStructureSchema;
215
+ export declare var RestoreTableFromBackupInput$: StaticStructureSchema;
216
+ export declare var RestoreTableFromBackupOutput$: StaticStructureSchema;
217
+ export declare var RestoreTableToPointInTimeInput$: StaticStructureSchema;
218
+ export declare var RestoreTableToPointInTimeOutput$: StaticStructureSchema;
219
+ export declare var S3BucketSource$: StaticStructureSchema;
220
+ export declare var ScanInput$: StaticStructureSchema;
221
+ export declare var ScanOutput$: StaticStructureSchema;
222
+ export declare var SourceTableDetails$: StaticStructureSchema;
223
+ export declare var SourceTableFeatureDetails$: StaticStructureSchema;
224
+ export declare var SSEDescription$: StaticStructureSchema;
225
+ export declare var SSESpecification$: StaticStructureSchema;
226
+ export declare var StreamSpecification$: StaticStructureSchema;
227
+ export declare var TableAutoScalingDescription$: StaticStructureSchema;
228
+ export declare var TableClassSummary$: StaticStructureSchema;
229
+ export declare var TableCreationParameters$: StaticStructureSchema;
230
+ export declare var TableDescription$: StaticStructureSchema;
231
+ export declare var TableWarmThroughputDescription$: StaticStructureSchema;
232
+ export declare var Tag$: StaticStructureSchema;
233
+ export declare var TagResourceInput$: StaticStructureSchema;
234
+ export declare var ThrottlingReason$: StaticStructureSchema;
235
+ export declare var TimeToLiveDescription$: StaticStructureSchema;
236
+ export declare var TimeToLiveSpecification$: StaticStructureSchema;
237
+ export declare var TransactGetItem$: StaticStructureSchema;
238
+ export declare var TransactGetItemsInput$: StaticStructureSchema;
239
+ export declare var TransactGetItemsOutput$: StaticStructureSchema;
240
+ export declare var TransactWriteItem$: StaticStructureSchema;
241
+ export declare var TransactWriteItemsInput$: StaticStructureSchema;
242
+ export declare var TransactWriteItemsOutput$: StaticStructureSchema;
243
+ export declare var UntagResourceInput$: StaticStructureSchema;
244
+ export declare var Update$: StaticStructureSchema;
245
+ export declare var UpdateContinuousBackupsInput$: StaticStructureSchema;
246
+ export declare var UpdateContinuousBackupsOutput$: StaticStructureSchema;
247
+ export declare var UpdateContributorInsightsInput$: StaticStructureSchema;
248
+ export declare var UpdateContributorInsightsOutput$: StaticStructureSchema;
249
+ export declare var UpdateGlobalSecondaryIndexAction$: StaticStructureSchema;
250
+ export declare var UpdateGlobalTableInput$: StaticStructureSchema;
251
+ export declare var UpdateGlobalTableOutput$: StaticStructureSchema;
252
+ export declare var UpdateGlobalTableSettingsInput$: StaticStructureSchema;
253
+ export declare var UpdateGlobalTableSettingsOutput$: StaticStructureSchema;
254
+ export declare var UpdateItemInput$: StaticStructureSchema;
255
+ export declare var UpdateItemOutput$: StaticStructureSchema;
256
+ export declare var UpdateKinesisStreamingConfiguration$: StaticStructureSchema;
257
+ export declare var UpdateKinesisStreamingDestinationInput$: StaticStructureSchema;
258
+ export declare var UpdateKinesisStreamingDestinationOutput$: StaticStructureSchema;
259
+ export declare var UpdateReplicationGroupMemberAction$: StaticStructureSchema;
260
+ export declare var UpdateTableInput$: StaticStructureSchema;
261
+ export declare var UpdateTableOutput$: StaticStructureSchema;
262
+ export declare var UpdateTableReplicaAutoScalingInput$: StaticStructureSchema;
263
+ export declare var UpdateTableReplicaAutoScalingOutput$: StaticStructureSchema;
264
+ export declare var UpdateTimeToLiveInput$: StaticStructureSchema;
265
+ export declare var UpdateTimeToLiveOutput$: StaticStructureSchema;
266
+ export declare var WarmThroughput$: StaticStructureSchema;
267
+ export declare var WriteRequest$: StaticStructureSchema;
268
+ export declare var AttributeValue$: StaticUnionSchema;
269
+ export declare var BatchExecuteStatement$: StaticOperationSchema;
270
+ export declare var BatchGetItem$: StaticOperationSchema;
271
+ export declare var BatchWriteItem$: StaticOperationSchema;
272
+ export declare var CreateBackup$: StaticOperationSchema;
273
+ export declare var CreateGlobalTable$: StaticOperationSchema;
274
+ export declare var CreateTable$: StaticOperationSchema;
275
+ export declare var DeleteBackup$: StaticOperationSchema;
276
+ export declare var DeleteItem$: StaticOperationSchema;
277
+ export declare var DeleteResourcePolicy$: StaticOperationSchema;
278
+ export declare var DeleteTable$: StaticOperationSchema;
279
+ export declare var DescribeBackup$: StaticOperationSchema;
280
+ export declare var DescribeContinuousBackups$: StaticOperationSchema;
281
+ export declare var DescribeContributorInsights$: StaticOperationSchema;
282
+ export declare var DescribeEndpoints$: StaticOperationSchema;
283
+ export declare var DescribeExport$: StaticOperationSchema;
284
+ export declare var DescribeGlobalTable$: StaticOperationSchema;
285
+ export declare var DescribeGlobalTableSettings$: StaticOperationSchema;
286
+ export declare var DescribeImport$: StaticOperationSchema;
287
+ export declare var DescribeKinesisStreamingDestination$: StaticOperationSchema;
288
+ export declare var DescribeLimits$: StaticOperationSchema;
289
+ export declare var DescribeTable$: StaticOperationSchema;
290
+ export declare var DescribeTableReplicaAutoScaling$: StaticOperationSchema;
291
+ export declare var DescribeTimeToLive$: StaticOperationSchema;
292
+ export declare var DisableKinesisStreamingDestination$: StaticOperationSchema;
293
+ export declare var EnableKinesisStreamingDestination$: StaticOperationSchema;
294
+ export declare var ExecuteStatement$: StaticOperationSchema;
295
+ export declare var ExecuteTransaction$: StaticOperationSchema;
296
+ export declare var ExportTableToPointInTime$: StaticOperationSchema;
297
+ export declare var GetItem$: StaticOperationSchema;
298
+ export declare var GetResourcePolicy$: StaticOperationSchema;
299
+ export declare var ImportTable$: StaticOperationSchema;
300
+ export declare var ListBackups$: StaticOperationSchema;
301
+ export declare var ListContributorInsights$: StaticOperationSchema;
302
+ export declare var ListExports$: StaticOperationSchema;
303
+ export declare var ListGlobalTables$: StaticOperationSchema;
304
+ export declare var ListImports$: StaticOperationSchema;
305
+ export declare var ListTables$: StaticOperationSchema;
306
+ export declare var ListTagsOfResource$: StaticOperationSchema;
307
+ export declare var PutItem$: StaticOperationSchema;
308
+ export declare var PutResourcePolicy$: StaticOperationSchema;
309
+ export declare var Query$: StaticOperationSchema;
310
+ export declare var RestoreTableFromBackup$: StaticOperationSchema;
311
+ export declare var RestoreTableToPointInTime$: StaticOperationSchema;
312
+ export declare var Scan$: StaticOperationSchema;
313
+ export declare var TagResource$: StaticOperationSchema;
314
+ export declare var TransactGetItems$: StaticOperationSchema;
315
+ export declare var TransactWriteItems$: StaticOperationSchema;
316
+ export declare var UntagResource$: StaticOperationSchema;
317
+ export declare var UpdateContinuousBackups$: StaticOperationSchema;
318
+ export declare var UpdateContributorInsights$: StaticOperationSchema;
319
+ export declare var UpdateGlobalTable$: StaticOperationSchema;
320
+ export declare var UpdateGlobalTableSettings$: StaticOperationSchema;
321
+ export declare var UpdateItem$: StaticOperationSchema;
322
+ export declare var UpdateKinesisStreamingDestination$: StaticOperationSchema;
323
+ export declare var UpdateTable$: StaticOperationSchema;
324
+ export declare var UpdateTableReplicaAutoScaling$: StaticOperationSchema;
325
+ export declare var UpdateTimeToLive$: StaticOperationSchema;