@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,6 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { DynamoDBClient } from "../DynamoDBClient";
3
+ export interface DynamoDBPaginationConfiguration
4
+ extends PaginationConfiguration {
5
+ client: DynamoDBClient;
6
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListContributorInsightsCommandInput,
4
+ ListContributorInsightsCommandOutput,
5
+ } from "../commands/ListContributorInsightsCommand";
6
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListContributorInsights: (
8
+ config: DynamoDBPaginationConfiguration,
9
+ input: ListContributorInsightsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListContributorInsightsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListExportsCommandInput,
4
+ ListExportsCommandOutput,
5
+ } from "../commands/ListExportsCommand";
6
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListExports: (
8
+ config: DynamoDBPaginationConfiguration,
9
+ input: ListExportsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListExportsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListImportsCommandInput,
4
+ ListImportsCommandOutput,
5
+ } from "../commands/ListImportsCommand";
6
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListImports: (
8
+ config: DynamoDBPaginationConfiguration,
9
+ input: ListImportsCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListImportsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListTablesCommandInput,
4
+ ListTablesCommandOutput,
5
+ } from "../commands/ListTablesCommand";
6
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListTables: (
8
+ config: DynamoDBPaginationConfiguration,
9
+ input: ListTablesCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<ListTablesCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ QueryCommandInput,
4
+ QueryCommandOutput,
5
+ } from "../commands/QueryCommand";
6
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateQuery: (
8
+ config: DynamoDBPaginationConfiguration,
9
+ input: QueryCommandInput,
10
+ ...rest: any[]
11
+ ) => Paginator<QueryCommandOutput>;
@@ -0,0 +1,8 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ScanCommandInput, ScanCommandOutput } from "../commands/ScanCommand";
3
+ import { DynamoDBPaginationConfiguration } from "./Interfaces";
4
+ export declare const paginateScan: (
5
+ config: DynamoDBPaginationConfiguration,
6
+ input: ScanCommandInput,
7
+ ...rest: any[]
8
+ ) => 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,114 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { DynamoDBClientConfig } from "./DynamoDBClient";
3
+ export declare const getRuntimeConfig: (config: DynamoDBClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ accountIdEndpointMode:
9
+ | "disabled"
10
+ | "preferred"
11
+ | "required"
12
+ | (() => Promise<string>);
13
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
14
+ credentialDefaultProvider:
15
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
16
+ | ((
17
+ _: unknown
18
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
19
+ defaultUserAgentProvider: (
20
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
21
+ ) => Promise<import("@smithy/types").UserAgent>;
22
+ endpointDiscoveryEnabledProvider: import("@smithy/types").Provider<
23
+ boolean | undefined
24
+ >;
25
+ maxAttempts: number | import("@smithy/types").Provider<number>;
26
+ region: string | import("@smithy/types").Provider<any>;
27
+ requestHandler:
28
+ | import("@smithy/protocol-http").HttpHandler<any>
29
+ | RequestHandler;
30
+ retryMode: string | import("@smithy/types").Provider<string>;
31
+ sha256: import("@smithy/types").HashConstructor;
32
+ streamCollector: import("@smithy/types").StreamCollector;
33
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
34
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
35
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
36
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
37
+ cacheMiddleware?: boolean | undefined;
38
+ protocol:
39
+ | import("@smithy/types").ClientProtocol<any, any>
40
+ | import("@smithy/types").ClientProtocolCtor<any, any>
41
+ | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
42
+ protocolSettings: {
43
+ defaultNamespace?: string;
44
+ [setting: string]: unknown;
45
+ };
46
+ apiVersion: string;
47
+ urlParser: import("@smithy/types").UrlParser;
48
+ base64Decoder: import("@smithy/types").Decoder;
49
+ base64Encoder: (_input: Uint8Array | string) => string;
50
+ utf8Decoder: import("@smithy/types").Decoder;
51
+ utf8Encoder: (input: Uint8Array | string) => string;
52
+ disableHostPrefix: boolean;
53
+ serviceId: string;
54
+ profile?: string;
55
+ logger: import("@smithy/types").Logger;
56
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
57
+ customUserAgent?: string | import("@smithy/types").UserAgent;
58
+ userAgentAppId?:
59
+ | string
60
+ | undefined
61
+ | import("@smithy/types").Provider<string | undefined>;
62
+ retryStrategy?:
63
+ | import("@smithy/types").RetryStrategy
64
+ | import("@smithy/types").RetryStrategyV2;
65
+ endpoint?:
66
+ | ((
67
+ | string
68
+ | import("@smithy/types").Endpoint
69
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
70
+ | import("@smithy/types").EndpointV2
71
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
72
+ ) &
73
+ (
74
+ | string
75
+ | import("@smithy/types").Provider<string>
76
+ | import("@smithy/types").Endpoint
77
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
78
+ | import("@smithy/types").EndpointV2
79
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
80
+ ))
81
+ | undefined;
82
+ endpointProvider: (
83
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
84
+ context?: {
85
+ logger?: import("@smithy/types").Logger;
86
+ }
87
+ ) => import("@smithy/types").EndpointV2;
88
+ tls?: boolean;
89
+ serviceConfiguredEndpoint?: never;
90
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
91
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
92
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DynamoDBHttpAuthSchemeProvider;
93
+ credentials?:
94
+ | import("@smithy/types").AwsCredentialIdentity
95
+ | import("@smithy/types").AwsCredentialIdentityProvider;
96
+ signer?:
97
+ | import("@smithy/types").RequestSigner
98
+ | ((
99
+ authScheme?: import("@smithy/types").AuthScheme
100
+ ) => Promise<import("@smithy/types").RequestSigner>);
101
+ signingEscapePath?: boolean;
102
+ systemClockOffset?: number;
103
+ signingRegion?: string;
104
+ signerConstructor?: new (
105
+ options: import("@smithy/signature-v4").SignatureV4Init &
106
+ import("@smithy/signature-v4").SignatureV4CryptoInit
107
+ ) => import("@smithy/types").RequestSigner;
108
+ endpointCacheSize?: number;
109
+ endpointDiscoveryEnabled?: boolean | undefined;
110
+ accountId?:
111
+ | string
112
+ | undefined
113
+ | import("@smithy/types").Provider<string | undefined>;
114
+ };
@@ -0,0 +1,111 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { DynamoDBClientConfig } from "./DynamoDBClient";
3
+ export declare const getRuntimeConfig: (config: DynamoDBClientConfig) => {
4
+ runtime: string;
5
+ defaultsMode: import("@smithy/types").Provider<
6
+ import("@smithy/smithy-client").ResolvedDefaultsMode
7
+ >;
8
+ accountIdEndpointMode:
9
+ | "disabled"
10
+ | "preferred"
11
+ | "required"
12
+ | import("@smithy/types").Provider<
13
+ import("@aws-sdk/core/account-id-endpoint").AccountIdEndpointMode
14
+ >;
15
+ authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
16
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
17
+ credentialDefaultProvider:
18
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
19
+ | ((
20
+ init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
21
+ ) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
22
+ defaultUserAgentProvider: (
23
+ config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved
24
+ ) => Promise<import("@smithy/types").UserAgent>;
25
+ endpointDiscoveryEnabledProvider: import("@smithy/types").Provider<
26
+ boolean | undefined
27
+ >;
28
+ maxAttempts: number | import("@smithy/types").Provider<number>;
29
+ region: string | import("@smithy/types").Provider<string>;
30
+ requestHandler:
31
+ | RequestHandler
32
+ | import("@smithy/protocol-http").HttpHandler<any>;
33
+ retryMode: string | import("@smithy/types").Provider<string>;
34
+ sha256: import("@smithy/types").HashConstructor;
35
+ streamCollector: import("@smithy/types").StreamCollector;
36
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
37
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
38
+ userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
39
+ cacheMiddleware?: boolean | undefined;
40
+ protocol:
41
+ | import("@smithy/types").ClientProtocol<any, any>
42
+ | import("@smithy/types").ClientProtocolCtor<any, any>
43
+ | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
44
+ protocolSettings: {
45
+ defaultNamespace?: string;
46
+ [setting: string]: unknown;
47
+ };
48
+ apiVersion: string;
49
+ urlParser: import("@smithy/types").UrlParser;
50
+ base64Decoder: import("@smithy/types").Decoder;
51
+ base64Encoder: (_input: Uint8Array | string) => string;
52
+ utf8Decoder: import("@smithy/types").Decoder;
53
+ utf8Encoder: (input: Uint8Array | string) => string;
54
+ disableHostPrefix: boolean;
55
+ serviceId: string;
56
+ profile?: string;
57
+ logger: import("@smithy/types").Logger;
58
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
59
+ customUserAgent?: string | import("@smithy/types").UserAgent;
60
+ retryStrategy?:
61
+ | import("@smithy/types").RetryStrategy
62
+ | import("@smithy/types").RetryStrategyV2;
63
+ endpoint?:
64
+ | ((
65
+ | string
66
+ | import("@smithy/types").Endpoint
67
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
68
+ | import("@smithy/types").EndpointV2
69
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
70
+ ) &
71
+ (
72
+ | string
73
+ | import("@smithy/types").Provider<string>
74
+ | import("@smithy/types").Endpoint
75
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
76
+ | import("@smithy/types").EndpointV2
77
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
78
+ ))
79
+ | undefined;
80
+ endpointProvider: (
81
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
82
+ context?: {
83
+ logger?: import("@smithy/types").Logger;
84
+ }
85
+ ) => import("@smithy/types").EndpointV2;
86
+ tls?: boolean;
87
+ serviceConfiguredEndpoint?: never;
88
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
89
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DynamoDBHttpAuthSchemeProvider;
90
+ credentials?:
91
+ | import("@smithy/types").AwsCredentialIdentity
92
+ | import("@smithy/types").AwsCredentialIdentityProvider;
93
+ signer?:
94
+ | import("@smithy/types").RequestSigner
95
+ | ((
96
+ authScheme?: import("@smithy/types").AuthScheme
97
+ ) => Promise<import("@smithy/types").RequestSigner>);
98
+ signingEscapePath?: boolean;
99
+ systemClockOffset?: number;
100
+ signingRegion?: string;
101
+ signerConstructor?: new (
102
+ options: import("@smithy/signature-v4").SignatureV4Init &
103
+ import("@smithy/signature-v4").SignatureV4CryptoInit
104
+ ) => import("@smithy/types").RequestSigner;
105
+ endpointCacheSize?: number;
106
+ endpointDiscoveryEnabled?: boolean | undefined;
107
+ accountId?:
108
+ | string
109
+ | undefined
110
+ | import("@smithy/types").Provider<string | undefined>;
111
+ };
@@ -0,0 +1,118 @@
1
+ import { DynamoDBClientConfig } from "./DynamoDBClient";
2
+ export declare const getRuntimeConfig: (config: DynamoDBClientConfig) => {
3
+ runtime: string;
4
+ sha256: import("@smithy/types").HashConstructor;
5
+ requestHandler:
6
+ | import("@smithy/types").NodeHttpHandlerOptions
7
+ | import("@smithy/types").FetchHttpHandlerOptions
8
+ | Record<string, unknown>
9
+ | import("@smithy/protocol-http").HttpHandler<any>
10
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
11
+ cacheMiddleware?: boolean;
12
+ protocol:
13
+ | import("@smithy/types").ClientProtocol<any, any>
14
+ | import("@smithy/types").ClientProtocolCtor<any, any>
15
+ | typeof import("@aws-sdk/core").AwsJson1_0Protocol;
16
+ protocolSettings: {
17
+ defaultNamespace?: string;
18
+ [setting: string]: unknown;
19
+ };
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
+ streamCollector: import("@smithy/types").StreamCollector;
24
+ base64Decoder: import("@smithy/types").Decoder;
25
+ base64Encoder: (_input: Uint8Array | string) => string;
26
+ utf8Decoder: import("@smithy/types").Decoder;
27
+ utf8Encoder: (input: Uint8Array | string) => string;
28
+ disableHostPrefix: boolean;
29
+ serviceId: string;
30
+ useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
31
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
32
+ useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
33
+ (boolean | import("@smithy/types").Provider<boolean | undefined>);
34
+ region: string | import("@smithy/types").Provider<any>;
35
+ profile?: string;
36
+ accountIdEndpointMode:
37
+ | "disabled"
38
+ | "preferred"
39
+ | "required"
40
+ | (() => Promise<string>);
41
+ defaultUserAgentProvider: (
42
+ config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
43
+ ) => Promise<import("@smithy/types").UserAgent>;
44
+ credentialDefaultProvider:
45
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
46
+ | ((
47
+ _: unknown
48
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
49
+ maxAttempts: number | import("@smithy/types").Provider<number>;
50
+ retryMode: string | import("@smithy/types").Provider<string>;
51
+ logger: import("@smithy/types").Logger;
52
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
53
+ defaultsMode:
54
+ | import("@smithy/smithy-client").DefaultsMode
55
+ | import("@smithy/types").Provider<
56
+ import("@smithy/smithy-client").DefaultsMode
57
+ >;
58
+ endpointDiscoveryEnabledProvider: import("@smithy/types").Provider<
59
+ boolean | undefined
60
+ >;
61
+ customUserAgent?: string | import("@smithy/types").UserAgent;
62
+ userAgentAppId?:
63
+ | string
64
+ | undefined
65
+ | import("@smithy/types").Provider<string | undefined>;
66
+ retryStrategy?:
67
+ | import("@smithy/types").RetryStrategy
68
+ | import("@smithy/types").RetryStrategyV2;
69
+ endpoint?:
70
+ | ((
71
+ | string
72
+ | import("@smithy/types").Endpoint
73
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
74
+ | import("@smithy/types").EndpointV2
75
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
76
+ ) &
77
+ (
78
+ | string
79
+ | import("@smithy/types").Provider<string>
80
+ | import("@smithy/types").Endpoint
81
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
82
+ | import("@smithy/types").EndpointV2
83
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
84
+ ))
85
+ | undefined;
86
+ endpointProvider: (
87
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
88
+ context?: {
89
+ logger?: import("@smithy/types").Logger;
90
+ }
91
+ ) => import("@smithy/types").EndpointV2;
92
+ tls?: boolean;
93
+ serviceConfiguredEndpoint?: never;
94
+ authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
95
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
96
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").DynamoDBHttpAuthSchemeProvider;
97
+ credentials?:
98
+ | import("@smithy/types").AwsCredentialIdentity
99
+ | import("@smithy/types").AwsCredentialIdentityProvider;
100
+ signer?:
101
+ | import("@smithy/types").RequestSigner
102
+ | ((
103
+ authScheme?: import("@smithy/types").AuthScheme
104
+ ) => Promise<import("@smithy/types").RequestSigner>);
105
+ signingEscapePath?: boolean;
106
+ systemClockOffset?: number;
107
+ signingRegion?: string;
108
+ signerConstructor?: new (
109
+ options: import("@smithy/signature-v4").SignatureV4Init &
110
+ import("@smithy/signature-v4").SignatureV4CryptoInit
111
+ ) => import("@smithy/types").RequestSigner;
112
+ endpointCacheSize?: number;
113
+ endpointDiscoveryEnabled?: boolean | undefined;
114
+ accountId?:
115
+ | string
116
+ | undefined
117
+ | import("@smithy/types").Provider<string | undefined>;
118
+ };
@@ -0,0 +1,30 @@
1
+ import { AwsJson1_0Protocol } from "@aws-sdk/core/protocols";
2
+ import { DynamoDBClientConfig } from "./DynamoDBClient";
3
+ export declare const getRuntimeConfig: (config: DynamoDBClientConfig) => {
4
+ apiVersion: string;
5
+ base64Decoder: import("@smithy/types").Decoder;
6
+ base64Encoder: (_input: Uint8Array | string) => string;
7
+ disableHostPrefix: boolean;
8
+ endpointProvider: (
9
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
10
+ context?: {
11
+ logger?: import("@smithy/types").Logger;
12
+ }
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:
19
+ | import("@smithy/types").ClientProtocol<any, any>
20
+ | import("@smithy/types").ClientProtocolCtor<any, any>
21
+ | typeof AwsJson1_0Protocol;
22
+ protocolSettings: {
23
+ [setting: string]: unknown;
24
+ defaultNamespace?: string;
25
+ };
26
+ serviceId: string;
27
+ urlParser: import("@smithy/types").UrlParser;
28
+ utf8Decoder: import("@smithy/types").Decoder;
29
+ utf8Encoder: (input: Uint8Array | string) => string;
30
+ };
@@ -0,0 +1,11 @@
1
+ import { DynamoDBExtensionConfiguration } from "./extensionConfiguration";
2
+ export interface RuntimeExtension {
3
+ configure(extensionConfiguration: DynamoDBExtensionConfiguration): void;
4
+ }
5
+ export interface RuntimeExtensionsConfig {
6
+ extensions: RuntimeExtension[];
7
+ }
8
+ export declare const resolveRuntimeExtensions: (
9
+ runtimeConfig: any,
10
+ extensions: RuntimeExtension[]
11
+ ) => any;