@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,589 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ApproximateCreationDateTimePrecision: {
6
+ readonly MICROSECOND: "MICROSECOND";
7
+ readonly MILLISECOND: "MILLISECOND";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type ApproximateCreationDateTimePrecision = (typeof ApproximateCreationDateTimePrecision)[keyof typeof ApproximateCreationDateTimePrecision];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const AttributeAction: {
18
+ readonly ADD: "ADD";
19
+ readonly DELETE: "DELETE";
20
+ readonly PUT: "PUT";
21
+ };
22
+ /**
23
+ * @public
24
+ */
25
+ export type AttributeAction = (typeof AttributeAction)[keyof typeof AttributeAction];
26
+ /**
27
+ * @public
28
+ * @enum
29
+ */
30
+ export declare const ScalarAttributeType: {
31
+ readonly B: "B";
32
+ readonly N: "N";
33
+ readonly S: "S";
34
+ };
35
+ /**
36
+ * @public
37
+ */
38
+ export type ScalarAttributeType = (typeof ScalarAttributeType)[keyof typeof ScalarAttributeType];
39
+ /**
40
+ * @public
41
+ * @enum
42
+ */
43
+ export declare const BackupStatus: {
44
+ readonly AVAILABLE: "AVAILABLE";
45
+ readonly CREATING: "CREATING";
46
+ readonly DELETED: "DELETED";
47
+ };
48
+ /**
49
+ * @public
50
+ */
51
+ export type BackupStatus = (typeof BackupStatus)[keyof typeof BackupStatus];
52
+ /**
53
+ * @public
54
+ * @enum
55
+ */
56
+ export declare const BackupType: {
57
+ readonly AWS_BACKUP: "AWS_BACKUP";
58
+ readonly SYSTEM: "SYSTEM";
59
+ readonly USER: "USER";
60
+ };
61
+ /**
62
+ * @public
63
+ */
64
+ export type BackupType = (typeof BackupType)[keyof typeof BackupType];
65
+ /**
66
+ * @public
67
+ * @enum
68
+ */
69
+ export declare const BillingMode: {
70
+ readonly PAY_PER_REQUEST: "PAY_PER_REQUEST";
71
+ readonly PROVISIONED: "PROVISIONED";
72
+ };
73
+ /**
74
+ * @public
75
+ */
76
+ export type BillingMode = (typeof BillingMode)[keyof typeof BillingMode];
77
+ /**
78
+ * @public
79
+ * @enum
80
+ */
81
+ export declare const KeyType: {
82
+ readonly HASH: "HASH";
83
+ readonly RANGE: "RANGE";
84
+ };
85
+ /**
86
+ * @public
87
+ */
88
+ export type KeyType = (typeof KeyType)[keyof typeof KeyType];
89
+ /**
90
+ * @public
91
+ * @enum
92
+ */
93
+ export declare const ProjectionType: {
94
+ readonly ALL: "ALL";
95
+ readonly INCLUDE: "INCLUDE";
96
+ readonly KEYS_ONLY: "KEYS_ONLY";
97
+ };
98
+ /**
99
+ * @public
100
+ */
101
+ export type ProjectionType = (typeof ProjectionType)[keyof typeof ProjectionType];
102
+ /**
103
+ * @public
104
+ * @enum
105
+ */
106
+ export declare const SSEType: {
107
+ readonly AES256: "AES256";
108
+ readonly KMS: "KMS";
109
+ };
110
+ /**
111
+ * @public
112
+ */
113
+ export type SSEType = (typeof SSEType)[keyof typeof SSEType];
114
+ /**
115
+ * @public
116
+ * @enum
117
+ */
118
+ export declare const SSEStatus: {
119
+ readonly DISABLED: "DISABLED";
120
+ readonly DISABLING: "DISABLING";
121
+ readonly ENABLED: "ENABLED";
122
+ readonly ENABLING: "ENABLING";
123
+ readonly UPDATING: "UPDATING";
124
+ };
125
+ /**
126
+ * @public
127
+ */
128
+ export type SSEStatus = (typeof SSEStatus)[keyof typeof SSEStatus];
129
+ /**
130
+ * @public
131
+ * @enum
132
+ */
133
+ export declare const StreamViewType: {
134
+ readonly KEYS_ONLY: "KEYS_ONLY";
135
+ readonly NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES";
136
+ readonly NEW_IMAGE: "NEW_IMAGE";
137
+ readonly OLD_IMAGE: "OLD_IMAGE";
138
+ };
139
+ /**
140
+ * @public
141
+ */
142
+ export type StreamViewType = (typeof StreamViewType)[keyof typeof StreamViewType];
143
+ /**
144
+ * @public
145
+ * @enum
146
+ */
147
+ export declare const TimeToLiveStatus: {
148
+ readonly DISABLED: "DISABLED";
149
+ readonly DISABLING: "DISABLING";
150
+ readonly ENABLED: "ENABLED";
151
+ readonly ENABLING: "ENABLING";
152
+ };
153
+ /**
154
+ * @public
155
+ */
156
+ export type TimeToLiveStatus = (typeof TimeToLiveStatus)[keyof typeof TimeToLiveStatus];
157
+ /**
158
+ * @public
159
+ * @enum
160
+ */
161
+ export declare const BackupTypeFilter: {
162
+ readonly ALL: "ALL";
163
+ readonly AWS_BACKUP: "AWS_BACKUP";
164
+ readonly SYSTEM: "SYSTEM";
165
+ readonly USER: "USER";
166
+ };
167
+ /**
168
+ * @public
169
+ */
170
+ export type BackupTypeFilter = (typeof BackupTypeFilter)[keyof typeof BackupTypeFilter];
171
+ /**
172
+ * @public
173
+ * @enum
174
+ */
175
+ export declare const ReturnConsumedCapacity: {
176
+ readonly INDEXES: "INDEXES";
177
+ readonly NONE: "NONE";
178
+ readonly TOTAL: "TOTAL";
179
+ };
180
+ /**
181
+ * @public
182
+ */
183
+ export type ReturnConsumedCapacity = (typeof ReturnConsumedCapacity)[keyof typeof ReturnConsumedCapacity];
184
+ /**
185
+ * @public
186
+ * @enum
187
+ */
188
+ export declare const ReturnValuesOnConditionCheckFailure: {
189
+ readonly ALL_OLD: "ALL_OLD";
190
+ readonly NONE: "NONE";
191
+ };
192
+ /**
193
+ * @public
194
+ */
195
+ export type ReturnValuesOnConditionCheckFailure = (typeof ReturnValuesOnConditionCheckFailure)[keyof typeof ReturnValuesOnConditionCheckFailure];
196
+ /**
197
+ * @public
198
+ * @enum
199
+ */
200
+ export declare const BatchStatementErrorCodeEnum: {
201
+ readonly AccessDenied: "AccessDenied";
202
+ readonly ConditionalCheckFailed: "ConditionalCheckFailed";
203
+ readonly DuplicateItem: "DuplicateItem";
204
+ readonly InternalServerError: "InternalServerError";
205
+ readonly ItemCollectionSizeLimitExceeded: "ItemCollectionSizeLimitExceeded";
206
+ readonly ProvisionedThroughputExceeded: "ProvisionedThroughputExceeded";
207
+ readonly RequestLimitExceeded: "RequestLimitExceeded";
208
+ readonly ResourceNotFound: "ResourceNotFound";
209
+ readonly ThrottlingError: "ThrottlingError";
210
+ readonly TransactionConflict: "TransactionConflict";
211
+ readonly ValidationError: "ValidationError";
212
+ };
213
+ /**
214
+ * @public
215
+ */
216
+ export type BatchStatementErrorCodeEnum = (typeof BatchStatementErrorCodeEnum)[keyof typeof BatchStatementErrorCodeEnum];
217
+ /**
218
+ * @public
219
+ * @enum
220
+ */
221
+ export declare const ReturnItemCollectionMetrics: {
222
+ readonly NONE: "NONE";
223
+ readonly SIZE: "SIZE";
224
+ };
225
+ /**
226
+ * @public
227
+ */
228
+ export type ReturnItemCollectionMetrics = (typeof ReturnItemCollectionMetrics)[keyof typeof ReturnItemCollectionMetrics];
229
+ /**
230
+ * @public
231
+ * @enum
232
+ */
233
+ export declare const ComparisonOperator: {
234
+ readonly BEGINS_WITH: "BEGINS_WITH";
235
+ readonly BETWEEN: "BETWEEN";
236
+ readonly CONTAINS: "CONTAINS";
237
+ readonly EQ: "EQ";
238
+ readonly GE: "GE";
239
+ readonly GT: "GT";
240
+ readonly IN: "IN";
241
+ readonly LE: "LE";
242
+ readonly LT: "LT";
243
+ readonly NE: "NE";
244
+ readonly NOT_CONTAINS: "NOT_CONTAINS";
245
+ readonly NOT_NULL: "NOT_NULL";
246
+ readonly NULL: "NULL";
247
+ };
248
+ /**
249
+ * @public
250
+ */
251
+ export type ComparisonOperator = (typeof ComparisonOperator)[keyof typeof ComparisonOperator];
252
+ /**
253
+ * @public
254
+ * @enum
255
+ */
256
+ export declare const ConditionalOperator: {
257
+ readonly AND: "AND";
258
+ readonly OR: "OR";
259
+ };
260
+ /**
261
+ * @public
262
+ */
263
+ export type ConditionalOperator = (typeof ConditionalOperator)[keyof typeof ConditionalOperator];
264
+ /**
265
+ * @public
266
+ * @enum
267
+ */
268
+ export declare const ContinuousBackupsStatus: {
269
+ readonly DISABLED: "DISABLED";
270
+ readonly ENABLED: "ENABLED";
271
+ };
272
+ /**
273
+ * @public
274
+ */
275
+ export type ContinuousBackupsStatus = (typeof ContinuousBackupsStatus)[keyof typeof ContinuousBackupsStatus];
276
+ /**
277
+ * @public
278
+ * @enum
279
+ */
280
+ export declare const PointInTimeRecoveryStatus: {
281
+ readonly DISABLED: "DISABLED";
282
+ readonly ENABLED: "ENABLED";
283
+ };
284
+ /**
285
+ * @public
286
+ */
287
+ export type PointInTimeRecoveryStatus = (typeof PointInTimeRecoveryStatus)[keyof typeof PointInTimeRecoveryStatus];
288
+ /**
289
+ * @public
290
+ * @enum
291
+ */
292
+ export declare const ContributorInsightsAction: {
293
+ readonly DISABLE: "DISABLE";
294
+ readonly ENABLE: "ENABLE";
295
+ };
296
+ /**
297
+ * @public
298
+ */
299
+ export type ContributorInsightsAction = (typeof ContributorInsightsAction)[keyof typeof ContributorInsightsAction];
300
+ /**
301
+ * @public
302
+ * @enum
303
+ */
304
+ export declare const ContributorInsightsMode: {
305
+ readonly ACCESSED_AND_THROTTLED_KEYS: "ACCESSED_AND_THROTTLED_KEYS";
306
+ readonly THROTTLED_KEYS: "THROTTLED_KEYS";
307
+ };
308
+ /**
309
+ * @public
310
+ */
311
+ export type ContributorInsightsMode = (typeof ContributorInsightsMode)[keyof typeof ContributorInsightsMode];
312
+ /**
313
+ * @public
314
+ * @enum
315
+ */
316
+ export declare const ContributorInsightsStatus: {
317
+ readonly DISABLED: "DISABLED";
318
+ readonly DISABLING: "DISABLING";
319
+ readonly ENABLED: "ENABLED";
320
+ readonly ENABLING: "ENABLING";
321
+ readonly FAILED: "FAILED";
322
+ };
323
+ /**
324
+ * @public
325
+ */
326
+ export type ContributorInsightsStatus = (typeof ContributorInsightsStatus)[keyof typeof ContributorInsightsStatus];
327
+ /**
328
+ * @public
329
+ * @enum
330
+ */
331
+ export declare const GlobalTableStatus: {
332
+ readonly ACTIVE: "ACTIVE";
333
+ readonly CREATING: "CREATING";
334
+ readonly DELETING: "DELETING";
335
+ readonly UPDATING: "UPDATING";
336
+ };
337
+ /**
338
+ * @public
339
+ */
340
+ export type GlobalTableStatus = (typeof GlobalTableStatus)[keyof typeof GlobalTableStatus];
341
+ /**
342
+ * @public
343
+ * @enum
344
+ */
345
+ export declare const IndexStatus: {
346
+ readonly ACTIVE: "ACTIVE";
347
+ readonly CREATING: "CREATING";
348
+ readonly DELETING: "DELETING";
349
+ readonly UPDATING: "UPDATING";
350
+ };
351
+ /**
352
+ * @public
353
+ */
354
+ export type IndexStatus = (typeof IndexStatus)[keyof typeof IndexStatus];
355
+ /**
356
+ * @public
357
+ * @enum
358
+ */
359
+ export declare const GlobalTableSettingsReplicationMode: {
360
+ readonly DISABLED: "DISABLED";
361
+ readonly ENABLED: "ENABLED";
362
+ readonly ENABLED_WITH_OVERRIDES: "ENABLED_WITH_OVERRIDES";
363
+ };
364
+ /**
365
+ * @public
366
+ */
367
+ export type GlobalTableSettingsReplicationMode = (typeof GlobalTableSettingsReplicationMode)[keyof typeof GlobalTableSettingsReplicationMode];
368
+ /**
369
+ * @public
370
+ * @enum
371
+ */
372
+ export declare const ReplicaStatus: {
373
+ readonly ACTIVE: "ACTIVE";
374
+ readonly ARCHIVED: "ARCHIVED";
375
+ readonly ARCHIVING: "ARCHIVING";
376
+ readonly CREATING: "CREATING";
377
+ readonly CREATION_FAILED: "CREATION_FAILED";
378
+ readonly DELETING: "DELETING";
379
+ readonly INACCESSIBLE_ENCRYPTION_CREDENTIALS: "INACCESSIBLE_ENCRYPTION_CREDENTIALS";
380
+ readonly REGION_DISABLED: "REGION_DISABLED";
381
+ readonly REPLICATION_NOT_AUTHORIZED: "REPLICATION_NOT_AUTHORIZED";
382
+ readonly UPDATING: "UPDATING";
383
+ };
384
+ /**
385
+ * @public
386
+ */
387
+ export type ReplicaStatus = (typeof ReplicaStatus)[keyof typeof ReplicaStatus];
388
+ /**
389
+ * @public
390
+ * @enum
391
+ */
392
+ export declare const TableClass: {
393
+ readonly STANDARD: "STANDARD";
394
+ readonly STANDARD_INFREQUENT_ACCESS: "STANDARD_INFREQUENT_ACCESS";
395
+ };
396
+ /**
397
+ * @public
398
+ */
399
+ export type TableClass = (typeof TableClass)[keyof typeof TableClass];
400
+ /**
401
+ * @public
402
+ * @enum
403
+ */
404
+ export declare const TableStatus: {
405
+ readonly ACTIVE: "ACTIVE";
406
+ readonly ARCHIVED: "ARCHIVED";
407
+ readonly ARCHIVING: "ARCHIVING";
408
+ readonly CREATING: "CREATING";
409
+ readonly DELETING: "DELETING";
410
+ readonly INACCESSIBLE_ENCRYPTION_CREDENTIALS: "INACCESSIBLE_ENCRYPTION_CREDENTIALS";
411
+ readonly REPLICATION_NOT_AUTHORIZED: "REPLICATION_NOT_AUTHORIZED";
412
+ readonly UPDATING: "UPDATING";
413
+ };
414
+ /**
415
+ * @public
416
+ */
417
+ export type TableStatus = (typeof TableStatus)[keyof typeof TableStatus];
418
+ /**
419
+ * @public
420
+ * @enum
421
+ */
422
+ export declare const WitnessStatus: {
423
+ readonly ACTIVE: "ACTIVE";
424
+ readonly CREATING: "CREATING";
425
+ readonly DELETING: "DELETING";
426
+ };
427
+ /**
428
+ * @public
429
+ */
430
+ export type WitnessStatus = (typeof WitnessStatus)[keyof typeof WitnessStatus];
431
+ /**
432
+ * @public
433
+ * @enum
434
+ */
435
+ export declare const MultiRegionConsistency: {
436
+ readonly EVENTUAL: "EVENTUAL";
437
+ readonly STRONG: "STRONG";
438
+ };
439
+ /**
440
+ * @public
441
+ */
442
+ export type MultiRegionConsistency = (typeof MultiRegionConsistency)[keyof typeof MultiRegionConsistency];
443
+ /**
444
+ * @public
445
+ * @enum
446
+ */
447
+ export declare const ReturnValue: {
448
+ readonly ALL_NEW: "ALL_NEW";
449
+ readonly ALL_OLD: "ALL_OLD";
450
+ readonly NONE: "NONE";
451
+ readonly UPDATED_NEW: "UPDATED_NEW";
452
+ readonly UPDATED_OLD: "UPDATED_OLD";
453
+ };
454
+ /**
455
+ * @public
456
+ */
457
+ export type ReturnValue = (typeof ReturnValue)[keyof typeof ReturnValue];
458
+ /**
459
+ * @public
460
+ * @enum
461
+ */
462
+ export declare const ExportFormat: {
463
+ readonly DYNAMODB_JSON: "DYNAMODB_JSON";
464
+ readonly ION: "ION";
465
+ };
466
+ /**
467
+ * @public
468
+ */
469
+ export type ExportFormat = (typeof ExportFormat)[keyof typeof ExportFormat];
470
+ /**
471
+ * @public
472
+ * @enum
473
+ */
474
+ export declare const ExportStatus: {
475
+ readonly COMPLETED: "COMPLETED";
476
+ readonly FAILED: "FAILED";
477
+ readonly IN_PROGRESS: "IN_PROGRESS";
478
+ };
479
+ /**
480
+ * @public
481
+ */
482
+ export type ExportStatus = (typeof ExportStatus)[keyof typeof ExportStatus];
483
+ /**
484
+ * @public
485
+ * @enum
486
+ */
487
+ export declare const ExportType: {
488
+ readonly FULL_EXPORT: "FULL_EXPORT";
489
+ readonly INCREMENTAL_EXPORT: "INCREMENTAL_EXPORT";
490
+ };
491
+ /**
492
+ * @public
493
+ */
494
+ export type ExportType = (typeof ExportType)[keyof typeof ExportType];
495
+ /**
496
+ * @public
497
+ * @enum
498
+ */
499
+ export declare const ExportViewType: {
500
+ readonly NEW_AND_OLD_IMAGES: "NEW_AND_OLD_IMAGES";
501
+ readonly NEW_IMAGE: "NEW_IMAGE";
502
+ };
503
+ /**
504
+ * @public
505
+ */
506
+ export type ExportViewType = (typeof ExportViewType)[keyof typeof ExportViewType];
507
+ /**
508
+ * @public
509
+ * @enum
510
+ */
511
+ export declare const S3SseAlgorithm: {
512
+ readonly AES256: "AES256";
513
+ readonly KMS: "KMS";
514
+ };
515
+ /**
516
+ * @public
517
+ */
518
+ export type S3SseAlgorithm = (typeof S3SseAlgorithm)[keyof typeof S3SseAlgorithm];
519
+ /**
520
+ * @public
521
+ * @enum
522
+ */
523
+ export declare const ImportStatus: {
524
+ readonly CANCELLED: "CANCELLED";
525
+ readonly CANCELLING: "CANCELLING";
526
+ readonly COMPLETED: "COMPLETED";
527
+ readonly FAILED: "FAILED";
528
+ readonly IN_PROGRESS: "IN_PROGRESS";
529
+ };
530
+ /**
531
+ * @public
532
+ */
533
+ export type ImportStatus = (typeof ImportStatus)[keyof typeof ImportStatus];
534
+ /**
535
+ * @public
536
+ * @enum
537
+ */
538
+ export declare const InputCompressionType: {
539
+ readonly GZIP: "GZIP";
540
+ readonly NONE: "NONE";
541
+ readonly ZSTD: "ZSTD";
542
+ };
543
+ /**
544
+ * @public
545
+ */
546
+ export type InputCompressionType = (typeof InputCompressionType)[keyof typeof InputCompressionType];
547
+ /**
548
+ * @public
549
+ * @enum
550
+ */
551
+ export declare const InputFormat: {
552
+ readonly CSV: "CSV";
553
+ readonly DYNAMODB_JSON: "DYNAMODB_JSON";
554
+ readonly ION: "ION";
555
+ };
556
+ /**
557
+ * @public
558
+ */
559
+ export type InputFormat = (typeof InputFormat)[keyof typeof InputFormat];
560
+ /**
561
+ * @public
562
+ * @enum
563
+ */
564
+ export declare const DestinationStatus: {
565
+ readonly ACTIVE: "ACTIVE";
566
+ readonly DISABLED: "DISABLED";
567
+ readonly DISABLING: "DISABLING";
568
+ readonly ENABLE_FAILED: "ENABLE_FAILED";
569
+ readonly ENABLING: "ENABLING";
570
+ readonly UPDATING: "UPDATING";
571
+ };
572
+ /**
573
+ * @public
574
+ */
575
+ export type DestinationStatus = (typeof DestinationStatus)[keyof typeof DestinationStatus];
576
+ /**
577
+ * @public
578
+ * @enum
579
+ */
580
+ export declare const Select: {
581
+ readonly ALL_ATTRIBUTES: "ALL_ATTRIBUTES";
582
+ readonly ALL_PROJECTED_ATTRIBUTES: "ALL_PROJECTED_ATTRIBUTES";
583
+ readonly COUNT: "COUNT";
584
+ readonly SPECIFIC_ATTRIBUTES: "SPECIFIC_ATTRIBUTES";
585
+ };
586
+ /**
587
+ * @public
588
+ */
589
+ export type Select = (typeof Select)[keyof typeof Select];