@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,1557 @@
1
+ import {
2
+ ApproximateCreationDateTimePrecision,
3
+ AttributeAction,
4
+ BackupStatus,
5
+ BackupType,
6
+ BackupTypeFilter,
7
+ BatchStatementErrorCodeEnum,
8
+ BillingMode,
9
+ ComparisonOperator,
10
+ ConditionalOperator,
11
+ ContinuousBackupsStatus,
12
+ ContributorInsightsAction,
13
+ ContributorInsightsMode,
14
+ ContributorInsightsStatus,
15
+ DestinationStatus,
16
+ ExportFormat,
17
+ ExportStatus,
18
+ ExportType,
19
+ ExportViewType,
20
+ GlobalTableSettingsReplicationMode,
21
+ GlobalTableStatus,
22
+ ImportStatus,
23
+ IndexStatus,
24
+ InputCompressionType,
25
+ InputFormat,
26
+ KeyType,
27
+ MultiRegionConsistency,
28
+ PointInTimeRecoveryStatus,
29
+ ProjectionType,
30
+ ReplicaStatus,
31
+ ReturnConsumedCapacity,
32
+ ReturnItemCollectionMetrics,
33
+ ReturnValue,
34
+ ReturnValuesOnConditionCheckFailure,
35
+ S3SseAlgorithm,
36
+ ScalarAttributeType,
37
+ Select,
38
+ SSEStatus,
39
+ SSEType,
40
+ StreamViewType,
41
+ TableClass,
42
+ TableStatus,
43
+ TimeToLiveStatus,
44
+ WitnessStatus,
45
+ } from "./enums";
46
+ export interface ArchivalSummary {
47
+ ArchivalDateTime?: Date | undefined;
48
+ ArchivalReason?: string | undefined;
49
+ ArchivalBackupArn?: string | undefined;
50
+ }
51
+ export interface AttributeDefinition {
52
+ AttributeName: string | undefined;
53
+ AttributeType: ScalarAttributeType | undefined;
54
+ }
55
+ export interface AutoScalingTargetTrackingScalingPolicyConfigurationDescription {
56
+ DisableScaleIn?: boolean | undefined;
57
+ ScaleInCooldown?: number | undefined;
58
+ ScaleOutCooldown?: number | undefined;
59
+ TargetValue: number | undefined;
60
+ }
61
+ export interface AutoScalingPolicyDescription {
62
+ PolicyName?: string | undefined;
63
+ TargetTrackingScalingPolicyConfiguration?:
64
+ | AutoScalingTargetTrackingScalingPolicyConfigurationDescription
65
+ | undefined;
66
+ }
67
+ export interface AutoScalingTargetTrackingScalingPolicyConfigurationUpdate {
68
+ DisableScaleIn?: boolean | undefined;
69
+ ScaleInCooldown?: number | undefined;
70
+ ScaleOutCooldown?: number | undefined;
71
+ TargetValue: number | undefined;
72
+ }
73
+ export interface AutoScalingPolicyUpdate {
74
+ PolicyName?: string | undefined;
75
+ TargetTrackingScalingPolicyConfiguration:
76
+ | AutoScalingTargetTrackingScalingPolicyConfigurationUpdate
77
+ | undefined;
78
+ }
79
+ export interface AutoScalingSettingsDescription {
80
+ MinimumUnits?: number | undefined;
81
+ MaximumUnits?: number | undefined;
82
+ AutoScalingDisabled?: boolean | undefined;
83
+ AutoScalingRoleArn?: string | undefined;
84
+ ScalingPolicies?: AutoScalingPolicyDescription[] | undefined;
85
+ }
86
+ export interface AutoScalingSettingsUpdate {
87
+ MinimumUnits?: number | undefined;
88
+ MaximumUnits?: number | undefined;
89
+ AutoScalingDisabled?: boolean | undefined;
90
+ AutoScalingRoleArn?: string | undefined;
91
+ ScalingPolicyUpdate?: AutoScalingPolicyUpdate | undefined;
92
+ }
93
+ export interface BackupDetails {
94
+ BackupArn: string | undefined;
95
+ BackupName: string | undefined;
96
+ BackupSizeBytes?: number | undefined;
97
+ BackupStatus: BackupStatus | undefined;
98
+ BackupType: BackupType | undefined;
99
+ BackupCreationDateTime: Date | undefined;
100
+ BackupExpiryDateTime?: Date | undefined;
101
+ }
102
+ export interface KeySchemaElement {
103
+ AttributeName: string | undefined;
104
+ KeyType: KeyType | undefined;
105
+ }
106
+ export interface OnDemandThroughput {
107
+ MaxReadRequestUnits?: number | undefined;
108
+ MaxWriteRequestUnits?: number | undefined;
109
+ }
110
+ export interface ProvisionedThroughput {
111
+ ReadCapacityUnits: number | undefined;
112
+ WriteCapacityUnits: number | undefined;
113
+ }
114
+ export interface SourceTableDetails {
115
+ TableName: string | undefined;
116
+ TableId: string | undefined;
117
+ TableArn?: string | undefined;
118
+ TableSizeBytes?: number | undefined;
119
+ KeySchema: KeySchemaElement[] | undefined;
120
+ TableCreationDateTime: Date | undefined;
121
+ ProvisionedThroughput: ProvisionedThroughput | undefined;
122
+ OnDemandThroughput?: OnDemandThroughput | undefined;
123
+ ItemCount?: number | undefined;
124
+ BillingMode?: BillingMode | undefined;
125
+ }
126
+ export interface Projection {
127
+ ProjectionType?: ProjectionType | undefined;
128
+ NonKeyAttributes?: string[] | undefined;
129
+ }
130
+ export interface GlobalSecondaryIndexInfo {
131
+ IndexName?: string | undefined;
132
+ KeySchema?: KeySchemaElement[] | undefined;
133
+ Projection?: Projection | undefined;
134
+ ProvisionedThroughput?: ProvisionedThroughput | undefined;
135
+ OnDemandThroughput?: OnDemandThroughput | undefined;
136
+ }
137
+ export interface LocalSecondaryIndexInfo {
138
+ IndexName?: string | undefined;
139
+ KeySchema?: KeySchemaElement[] | undefined;
140
+ Projection?: Projection | undefined;
141
+ }
142
+ export interface SSEDescription {
143
+ Status?: SSEStatus | undefined;
144
+ SSEType?: SSEType | undefined;
145
+ KMSMasterKeyArn?: string | undefined;
146
+ InaccessibleEncryptionDateTime?: Date | undefined;
147
+ }
148
+ export interface StreamSpecification {
149
+ StreamEnabled: boolean | undefined;
150
+ StreamViewType?: StreamViewType | undefined;
151
+ }
152
+ export interface TimeToLiveDescription {
153
+ TimeToLiveStatus?: TimeToLiveStatus | undefined;
154
+ AttributeName?: string | undefined;
155
+ }
156
+ export interface SourceTableFeatureDetails {
157
+ LocalSecondaryIndexes?: LocalSecondaryIndexInfo[] | undefined;
158
+ GlobalSecondaryIndexes?: GlobalSecondaryIndexInfo[] | undefined;
159
+ StreamDescription?: StreamSpecification | undefined;
160
+ TimeToLiveDescription?: TimeToLiveDescription | undefined;
161
+ SSEDescription?: SSEDescription | undefined;
162
+ }
163
+ export interface BackupDescription {
164
+ BackupDetails?: BackupDetails | undefined;
165
+ SourceTableDetails?: SourceTableDetails | undefined;
166
+ SourceTableFeatureDetails?: SourceTableFeatureDetails | undefined;
167
+ }
168
+ export interface BackupSummary {
169
+ TableName?: string | undefined;
170
+ TableId?: string | undefined;
171
+ TableArn?: string | undefined;
172
+ BackupArn?: string | undefined;
173
+ BackupName?: string | undefined;
174
+ BackupCreationDateTime?: Date | undefined;
175
+ BackupExpiryDateTime?: Date | undefined;
176
+ BackupStatus?: BackupStatus | undefined;
177
+ BackupType?: BackupType | undefined;
178
+ BackupSizeBytes?: number | undefined;
179
+ }
180
+ export interface Capacity {
181
+ ReadCapacityUnits?: number | undefined;
182
+ WriteCapacityUnits?: number | undefined;
183
+ CapacityUnits?: number | undefined;
184
+ }
185
+ export interface ConsumedCapacity {
186
+ TableName?: string | undefined;
187
+ CapacityUnits?: number | undefined;
188
+ ReadCapacityUnits?: number | undefined;
189
+ WriteCapacityUnits?: number | undefined;
190
+ Table?: Capacity | undefined;
191
+ LocalSecondaryIndexes?: Record<string, Capacity> | undefined;
192
+ GlobalSecondaryIndexes?: Record<string, Capacity> | undefined;
193
+ }
194
+ export interface ThrottlingReason {
195
+ reason?: string | undefined;
196
+ resource?: string | undefined;
197
+ }
198
+ export interface BillingModeSummary {
199
+ BillingMode?: BillingMode | undefined;
200
+ LastUpdateToPayPerRequestDateTime?: Date | undefined;
201
+ }
202
+ export interface PointInTimeRecoveryDescription {
203
+ PointInTimeRecoveryStatus?: PointInTimeRecoveryStatus | undefined;
204
+ RecoveryPeriodInDays?: number | undefined;
205
+ EarliestRestorableDateTime?: Date | undefined;
206
+ LatestRestorableDateTime?: Date | undefined;
207
+ }
208
+ export interface ContinuousBackupsDescription {
209
+ ContinuousBackupsStatus: ContinuousBackupsStatus | undefined;
210
+ PointInTimeRecoveryDescription?: PointInTimeRecoveryDescription | undefined;
211
+ }
212
+ export interface ContributorInsightsSummary {
213
+ TableName?: string | undefined;
214
+ IndexName?: string | undefined;
215
+ ContributorInsightsStatus?: ContributorInsightsStatus | undefined;
216
+ ContributorInsightsMode?: ContributorInsightsMode | undefined;
217
+ }
218
+ export interface CreateBackupInput {
219
+ TableName: string | undefined;
220
+ BackupName: string | undefined;
221
+ }
222
+ export interface CreateBackupOutput {
223
+ BackupDetails?: BackupDetails | undefined;
224
+ }
225
+ export interface WarmThroughput {
226
+ ReadUnitsPerSecond?: number | undefined;
227
+ WriteUnitsPerSecond?: number | undefined;
228
+ }
229
+ export interface CreateGlobalSecondaryIndexAction {
230
+ IndexName: string | undefined;
231
+ KeySchema: KeySchemaElement[] | undefined;
232
+ Projection: Projection | undefined;
233
+ ProvisionedThroughput?: ProvisionedThroughput | undefined;
234
+ OnDemandThroughput?: OnDemandThroughput | undefined;
235
+ WarmThroughput?: WarmThroughput | undefined;
236
+ }
237
+ export interface Replica {
238
+ RegionName?: string | undefined;
239
+ }
240
+ export interface CreateGlobalTableInput {
241
+ GlobalTableName: string | undefined;
242
+ ReplicationGroup: Replica[] | undefined;
243
+ }
244
+ export interface OnDemandThroughputOverride {
245
+ MaxReadRequestUnits?: number | undefined;
246
+ }
247
+ export interface ProvisionedThroughputOverride {
248
+ ReadCapacityUnits?: number | undefined;
249
+ }
250
+ export interface GlobalSecondaryIndexWarmThroughputDescription {
251
+ ReadUnitsPerSecond?: number | undefined;
252
+ WriteUnitsPerSecond?: number | undefined;
253
+ Status?: IndexStatus | undefined;
254
+ }
255
+ export interface ReplicaGlobalSecondaryIndexDescription {
256
+ IndexName?: string | undefined;
257
+ ProvisionedThroughputOverride?: ProvisionedThroughputOverride | undefined;
258
+ OnDemandThroughputOverride?: OnDemandThroughputOverride | undefined;
259
+ WarmThroughput?: GlobalSecondaryIndexWarmThroughputDescription | undefined;
260
+ }
261
+ export interface TableClassSummary {
262
+ TableClass?: TableClass | undefined;
263
+ LastUpdateDateTime?: Date | undefined;
264
+ }
265
+ export interface TableWarmThroughputDescription {
266
+ ReadUnitsPerSecond?: number | undefined;
267
+ WriteUnitsPerSecond?: number | undefined;
268
+ Status?: TableStatus | undefined;
269
+ }
270
+ export interface ReplicaDescription {
271
+ RegionName?: string | undefined;
272
+ ReplicaStatus?: ReplicaStatus | undefined;
273
+ ReplicaStatusDescription?: string | undefined;
274
+ ReplicaStatusPercentProgress?: string | undefined;
275
+ KMSMasterKeyId?: string | undefined;
276
+ ProvisionedThroughputOverride?: ProvisionedThroughputOverride | undefined;
277
+ OnDemandThroughputOverride?: OnDemandThroughputOverride | undefined;
278
+ WarmThroughput?: TableWarmThroughputDescription | undefined;
279
+ GlobalSecondaryIndexes?: ReplicaGlobalSecondaryIndexDescription[] | undefined;
280
+ ReplicaInaccessibleDateTime?: Date | undefined;
281
+ ReplicaTableClassSummary?: TableClassSummary | undefined;
282
+ GlobalTableSettingsReplicationMode?:
283
+ | GlobalTableSettingsReplicationMode
284
+ | undefined;
285
+ }
286
+ export interface GlobalTableDescription {
287
+ ReplicationGroup?: ReplicaDescription[] | undefined;
288
+ GlobalTableArn?: string | undefined;
289
+ CreationDateTime?: Date | undefined;
290
+ GlobalTableStatus?: GlobalTableStatus | undefined;
291
+ GlobalTableName?: string | undefined;
292
+ }
293
+ export interface CreateGlobalTableOutput {
294
+ GlobalTableDescription?: GlobalTableDescription | undefined;
295
+ }
296
+ export interface CreateGlobalTableWitnessGroupMemberAction {
297
+ RegionName: string | undefined;
298
+ }
299
+ export interface CreateReplicaAction {
300
+ RegionName: string | undefined;
301
+ }
302
+ export interface ReplicaGlobalSecondaryIndex {
303
+ IndexName: string | undefined;
304
+ ProvisionedThroughputOverride?: ProvisionedThroughputOverride | undefined;
305
+ OnDemandThroughputOverride?: OnDemandThroughputOverride | undefined;
306
+ }
307
+ export interface CreateReplicationGroupMemberAction {
308
+ RegionName: string | undefined;
309
+ KMSMasterKeyId?: string | undefined;
310
+ ProvisionedThroughputOverride?: ProvisionedThroughputOverride | undefined;
311
+ OnDemandThroughputOverride?: OnDemandThroughputOverride | undefined;
312
+ GlobalSecondaryIndexes?: ReplicaGlobalSecondaryIndex[] | undefined;
313
+ TableClassOverride?: TableClass | undefined;
314
+ }
315
+ export interface GlobalSecondaryIndex {
316
+ IndexName: string | undefined;
317
+ KeySchema: KeySchemaElement[] | undefined;
318
+ Projection: Projection | undefined;
319
+ ProvisionedThroughput?: ProvisionedThroughput | undefined;
320
+ OnDemandThroughput?: OnDemandThroughput | undefined;
321
+ WarmThroughput?: WarmThroughput | undefined;
322
+ }
323
+ export interface LocalSecondaryIndex {
324
+ IndexName: string | undefined;
325
+ KeySchema: KeySchemaElement[] | undefined;
326
+ Projection: Projection | undefined;
327
+ }
328
+ export interface SSESpecification {
329
+ Enabled?: boolean | undefined;
330
+ SSEType?: SSEType | undefined;
331
+ KMSMasterKeyId?: string | undefined;
332
+ }
333
+ export interface Tag {
334
+ Key: string | undefined;
335
+ Value: string | undefined;
336
+ }
337
+ export interface CreateTableInput {
338
+ AttributeDefinitions?: AttributeDefinition[] | undefined;
339
+ TableName: string | undefined;
340
+ KeySchema?: KeySchemaElement[] | undefined;
341
+ LocalSecondaryIndexes?: LocalSecondaryIndex[] | undefined;
342
+ GlobalSecondaryIndexes?: GlobalSecondaryIndex[] | undefined;
343
+ BillingMode?: BillingMode | undefined;
344
+ ProvisionedThroughput?: ProvisionedThroughput | undefined;
345
+ StreamSpecification?: StreamSpecification | undefined;
346
+ SSESpecification?: SSESpecification | undefined;
347
+ Tags?: Tag[] | undefined;
348
+ TableClass?: TableClass | undefined;
349
+ DeletionProtectionEnabled?: boolean | undefined;
350
+ WarmThroughput?: WarmThroughput | undefined;
351
+ ResourcePolicy?: string | undefined;
352
+ OnDemandThroughput?: OnDemandThroughput | undefined;
353
+ GlobalTableSourceArn?: string | undefined;
354
+ GlobalTableSettingsReplicationMode?:
355
+ | GlobalTableSettingsReplicationMode
356
+ | undefined;
357
+ }
358
+ export interface ProvisionedThroughputDescription {
359
+ LastIncreaseDateTime?: Date | undefined;
360
+ LastDecreaseDateTime?: Date | undefined;
361
+ NumberOfDecreasesToday?: number | undefined;
362
+ ReadCapacityUnits?: number | undefined;
363
+ WriteCapacityUnits?: number | undefined;
364
+ }
365
+ export interface GlobalSecondaryIndexDescription {
366
+ IndexName?: string | undefined;
367
+ KeySchema?: KeySchemaElement[] | undefined;
368
+ Projection?: Projection | undefined;
369
+ IndexStatus?: IndexStatus | undefined;
370
+ Backfilling?: boolean | undefined;
371
+ ProvisionedThroughput?: ProvisionedThroughputDescription | undefined;
372
+ IndexSizeBytes?: number | undefined;
373
+ ItemCount?: number | undefined;
374
+ IndexArn?: string | undefined;
375
+ OnDemandThroughput?: OnDemandThroughput | undefined;
376
+ WarmThroughput?: GlobalSecondaryIndexWarmThroughputDescription | undefined;
377
+ }
378
+ export interface GlobalTableWitnessDescription {
379
+ RegionName?: string | undefined;
380
+ WitnessStatus?: WitnessStatus | undefined;
381
+ }
382
+ export interface LocalSecondaryIndexDescription {
383
+ IndexName?: string | undefined;
384
+ KeySchema?: KeySchemaElement[] | undefined;
385
+ Projection?: Projection | undefined;
386
+ IndexSizeBytes?: number | undefined;
387
+ ItemCount?: number | undefined;
388
+ IndexArn?: string | undefined;
389
+ }
390
+ export interface RestoreSummary {
391
+ SourceBackupArn?: string | undefined;
392
+ SourceTableArn?: string | undefined;
393
+ RestoreDateTime: Date | undefined;
394
+ RestoreInProgress: boolean | undefined;
395
+ }
396
+ export interface TableDescription {
397
+ AttributeDefinitions?: AttributeDefinition[] | undefined;
398
+ TableName?: string | undefined;
399
+ KeySchema?: KeySchemaElement[] | undefined;
400
+ TableStatus?: TableStatus | undefined;
401
+ CreationDateTime?: Date | undefined;
402
+ ProvisionedThroughput?: ProvisionedThroughputDescription | undefined;
403
+ TableSizeBytes?: number | undefined;
404
+ ItemCount?: number | undefined;
405
+ TableArn?: string | undefined;
406
+ TableId?: string | undefined;
407
+ BillingModeSummary?: BillingModeSummary | undefined;
408
+ LocalSecondaryIndexes?: LocalSecondaryIndexDescription[] | undefined;
409
+ GlobalSecondaryIndexes?: GlobalSecondaryIndexDescription[] | undefined;
410
+ StreamSpecification?: StreamSpecification | undefined;
411
+ LatestStreamLabel?: string | undefined;
412
+ LatestStreamArn?: string | undefined;
413
+ GlobalTableVersion?: string | undefined;
414
+ Replicas?: ReplicaDescription[] | undefined;
415
+ GlobalTableWitnesses?: GlobalTableWitnessDescription[] | undefined;
416
+ GlobalTableSettingsReplicationMode?:
417
+ | GlobalTableSettingsReplicationMode
418
+ | undefined;
419
+ RestoreSummary?: RestoreSummary | undefined;
420
+ SSEDescription?: SSEDescription | undefined;
421
+ ArchivalSummary?: ArchivalSummary | undefined;
422
+ TableClassSummary?: TableClassSummary | undefined;
423
+ DeletionProtectionEnabled?: boolean | undefined;
424
+ OnDemandThroughput?: OnDemandThroughput | undefined;
425
+ WarmThroughput?: TableWarmThroughputDescription | undefined;
426
+ MultiRegionConsistency?: MultiRegionConsistency | undefined;
427
+ }
428
+ export interface CreateTableOutput {
429
+ TableDescription?: TableDescription | undefined;
430
+ }
431
+ export interface CsvOptions {
432
+ Delimiter?: string | undefined;
433
+ HeaderList?: string[] | undefined;
434
+ }
435
+ export interface DeleteBackupInput {
436
+ BackupArn: string | undefined;
437
+ }
438
+ export interface DeleteBackupOutput {
439
+ BackupDescription?: BackupDescription | undefined;
440
+ }
441
+ export interface DeleteGlobalSecondaryIndexAction {
442
+ IndexName: string | undefined;
443
+ }
444
+ export interface DeleteGlobalTableWitnessGroupMemberAction {
445
+ RegionName: string | undefined;
446
+ }
447
+ export interface DeleteReplicaAction {
448
+ RegionName: string | undefined;
449
+ }
450
+ export interface DeleteReplicationGroupMemberAction {
451
+ RegionName: string | undefined;
452
+ }
453
+ export interface DeleteResourcePolicyInput {
454
+ ResourceArn: string | undefined;
455
+ ExpectedRevisionId?: string | undefined;
456
+ }
457
+ export interface DeleteResourcePolicyOutput {
458
+ RevisionId?: string | undefined;
459
+ }
460
+ export interface DeleteTableInput {
461
+ TableName: string | undefined;
462
+ }
463
+ export interface DeleteTableOutput {
464
+ TableDescription?: TableDescription | undefined;
465
+ }
466
+ export interface DescribeBackupInput {
467
+ BackupArn: string | undefined;
468
+ }
469
+ export interface DescribeBackupOutput {
470
+ BackupDescription?: BackupDescription | undefined;
471
+ }
472
+ export interface DescribeContinuousBackupsInput {
473
+ TableName: string | undefined;
474
+ }
475
+ export interface DescribeContinuousBackupsOutput {
476
+ ContinuousBackupsDescription?: ContinuousBackupsDescription | undefined;
477
+ }
478
+ export interface DescribeContributorInsightsInput {
479
+ TableName: string | undefined;
480
+ IndexName?: string | undefined;
481
+ }
482
+ export interface FailureException {
483
+ ExceptionName?: string | undefined;
484
+ ExceptionDescription?: string | undefined;
485
+ }
486
+ export interface DescribeContributorInsightsOutput {
487
+ TableName?: string | undefined;
488
+ IndexName?: string | undefined;
489
+ ContributorInsightsRuleList?: string[] | undefined;
490
+ ContributorInsightsStatus?: ContributorInsightsStatus | undefined;
491
+ LastUpdateDateTime?: Date | undefined;
492
+ FailureException?: FailureException | undefined;
493
+ ContributorInsightsMode?: ContributorInsightsMode | undefined;
494
+ }
495
+ export interface DescribeEndpointsRequest {}
496
+ export interface Endpoint {
497
+ Address: string | undefined;
498
+ CachePeriodInMinutes: number | undefined;
499
+ }
500
+ export interface DescribeEndpointsResponse {
501
+ Endpoints: Endpoint[] | undefined;
502
+ }
503
+ export interface DescribeExportInput {
504
+ ExportArn: string | undefined;
505
+ }
506
+ export interface IncrementalExportSpecification {
507
+ ExportFromTime?: Date | undefined;
508
+ ExportToTime?: Date | undefined;
509
+ ExportViewType?: ExportViewType | undefined;
510
+ }
511
+ export interface ExportDescription {
512
+ ExportArn?: string | undefined;
513
+ ExportStatus?: ExportStatus | undefined;
514
+ StartTime?: Date | undefined;
515
+ EndTime?: Date | undefined;
516
+ ExportManifest?: string | undefined;
517
+ TableArn?: string | undefined;
518
+ TableId?: string | undefined;
519
+ ExportTime?: Date | undefined;
520
+ ClientToken?: string | undefined;
521
+ S3Bucket?: string | undefined;
522
+ S3BucketOwner?: string | undefined;
523
+ S3Prefix?: string | undefined;
524
+ S3SseAlgorithm?: S3SseAlgorithm | undefined;
525
+ S3SseKmsKeyId?: string | undefined;
526
+ FailureCode?: string | undefined;
527
+ FailureMessage?: string | undefined;
528
+ ExportFormat?: ExportFormat | undefined;
529
+ BilledSizeBytes?: number | undefined;
530
+ ItemCount?: number | undefined;
531
+ ExportType?: ExportType | undefined;
532
+ IncrementalExportSpecification?: IncrementalExportSpecification | undefined;
533
+ }
534
+ export interface DescribeExportOutput {
535
+ ExportDescription?: ExportDescription | undefined;
536
+ }
537
+ export interface DescribeGlobalTableInput {
538
+ GlobalTableName: string | undefined;
539
+ }
540
+ export interface DescribeGlobalTableOutput {
541
+ GlobalTableDescription?: GlobalTableDescription | undefined;
542
+ }
543
+ export interface DescribeGlobalTableSettingsInput {
544
+ GlobalTableName: string | undefined;
545
+ }
546
+ export interface ReplicaGlobalSecondaryIndexSettingsDescription {
547
+ IndexName: string | undefined;
548
+ IndexStatus?: IndexStatus | undefined;
549
+ ProvisionedReadCapacityUnits?: number | undefined;
550
+ ProvisionedReadCapacityAutoScalingSettings?:
551
+ | AutoScalingSettingsDescription
552
+ | undefined;
553
+ ProvisionedWriteCapacityUnits?: number | undefined;
554
+ ProvisionedWriteCapacityAutoScalingSettings?:
555
+ | AutoScalingSettingsDescription
556
+ | undefined;
557
+ }
558
+ export interface ReplicaSettingsDescription {
559
+ RegionName: string | undefined;
560
+ ReplicaStatus?: ReplicaStatus | undefined;
561
+ ReplicaBillingModeSummary?: BillingModeSummary | undefined;
562
+ ReplicaProvisionedReadCapacityUnits?: number | undefined;
563
+ ReplicaProvisionedReadCapacityAutoScalingSettings?:
564
+ | AutoScalingSettingsDescription
565
+ | undefined;
566
+ ReplicaProvisionedWriteCapacityUnits?: number | undefined;
567
+ ReplicaProvisionedWriteCapacityAutoScalingSettings?:
568
+ | AutoScalingSettingsDescription
569
+ | undefined;
570
+ ReplicaGlobalSecondaryIndexSettings?:
571
+ | ReplicaGlobalSecondaryIndexSettingsDescription[]
572
+ | undefined;
573
+ ReplicaTableClassSummary?: TableClassSummary | undefined;
574
+ }
575
+ export interface DescribeGlobalTableSettingsOutput {
576
+ GlobalTableName?: string | undefined;
577
+ ReplicaSettings?: ReplicaSettingsDescription[] | undefined;
578
+ }
579
+ export interface DescribeImportInput {
580
+ ImportArn: string | undefined;
581
+ }
582
+ export interface InputFormatOptions {
583
+ Csv?: CsvOptions | undefined;
584
+ }
585
+ export interface S3BucketSource {
586
+ S3BucketOwner?: string | undefined;
587
+ S3Bucket: string | undefined;
588
+ S3KeyPrefix?: string | undefined;
589
+ }
590
+ export interface TableCreationParameters {
591
+ TableName: string | undefined;
592
+ AttributeDefinitions: AttributeDefinition[] | undefined;
593
+ KeySchema: KeySchemaElement[] | undefined;
594
+ BillingMode?: BillingMode | undefined;
595
+ ProvisionedThroughput?: ProvisionedThroughput | undefined;
596
+ OnDemandThroughput?: OnDemandThroughput | undefined;
597
+ SSESpecification?: SSESpecification | undefined;
598
+ GlobalSecondaryIndexes?: GlobalSecondaryIndex[] | undefined;
599
+ }
600
+ export interface ImportTableDescription {
601
+ ImportArn?: string | undefined;
602
+ ImportStatus?: ImportStatus | undefined;
603
+ TableArn?: string | undefined;
604
+ TableId?: string | undefined;
605
+ ClientToken?: string | undefined;
606
+ S3BucketSource?: S3BucketSource | undefined;
607
+ ErrorCount?: number | undefined;
608
+ CloudWatchLogGroupArn?: string | undefined;
609
+ InputFormat?: InputFormat | undefined;
610
+ InputFormatOptions?: InputFormatOptions | undefined;
611
+ InputCompressionType?: InputCompressionType | undefined;
612
+ TableCreationParameters?: TableCreationParameters | undefined;
613
+ StartTime?: Date | undefined;
614
+ EndTime?: Date | undefined;
615
+ ProcessedSizeBytes?: number | undefined;
616
+ ProcessedItemCount?: number | undefined;
617
+ ImportedItemCount?: number | undefined;
618
+ FailureCode?: string | undefined;
619
+ FailureMessage?: string | undefined;
620
+ }
621
+ export interface DescribeImportOutput {
622
+ ImportTableDescription: ImportTableDescription | undefined;
623
+ }
624
+ export interface DescribeKinesisStreamingDestinationInput {
625
+ TableName: string | undefined;
626
+ }
627
+ export interface KinesisDataStreamDestination {
628
+ StreamArn?: string | undefined;
629
+ DestinationStatus?: DestinationStatus | undefined;
630
+ DestinationStatusDescription?: string | undefined;
631
+ ApproximateCreationDateTimePrecision?:
632
+ | ApproximateCreationDateTimePrecision
633
+ | undefined;
634
+ }
635
+ export interface DescribeKinesisStreamingDestinationOutput {
636
+ TableName?: string | undefined;
637
+ KinesisDataStreamDestinations?: KinesisDataStreamDestination[] | undefined;
638
+ }
639
+ export interface DescribeLimitsInput {}
640
+ export interface DescribeLimitsOutput {
641
+ AccountMaxReadCapacityUnits?: number | undefined;
642
+ AccountMaxWriteCapacityUnits?: number | undefined;
643
+ TableMaxReadCapacityUnits?: number | undefined;
644
+ TableMaxWriteCapacityUnits?: number | undefined;
645
+ }
646
+ export interface DescribeTableInput {
647
+ TableName: string | undefined;
648
+ }
649
+ export interface DescribeTableOutput {
650
+ Table?: TableDescription | undefined;
651
+ }
652
+ export interface DescribeTableReplicaAutoScalingInput {
653
+ TableName: string | undefined;
654
+ }
655
+ export interface ReplicaGlobalSecondaryIndexAutoScalingDescription {
656
+ IndexName?: string | undefined;
657
+ IndexStatus?: IndexStatus | undefined;
658
+ ProvisionedReadCapacityAutoScalingSettings?:
659
+ | AutoScalingSettingsDescription
660
+ | undefined;
661
+ ProvisionedWriteCapacityAutoScalingSettings?:
662
+ | AutoScalingSettingsDescription
663
+ | undefined;
664
+ }
665
+ export interface ReplicaAutoScalingDescription {
666
+ RegionName?: string | undefined;
667
+ GlobalSecondaryIndexes?:
668
+ | ReplicaGlobalSecondaryIndexAutoScalingDescription[]
669
+ | undefined;
670
+ ReplicaProvisionedReadCapacityAutoScalingSettings?:
671
+ | AutoScalingSettingsDescription
672
+ | undefined;
673
+ ReplicaProvisionedWriteCapacityAutoScalingSettings?:
674
+ | AutoScalingSettingsDescription
675
+ | undefined;
676
+ ReplicaStatus?: ReplicaStatus | undefined;
677
+ }
678
+ export interface TableAutoScalingDescription {
679
+ TableName?: string | undefined;
680
+ TableStatus?: TableStatus | undefined;
681
+ Replicas?: ReplicaAutoScalingDescription[] | undefined;
682
+ }
683
+ export interface DescribeTableReplicaAutoScalingOutput {
684
+ TableAutoScalingDescription?: TableAutoScalingDescription | undefined;
685
+ }
686
+ export interface DescribeTimeToLiveInput {
687
+ TableName: string | undefined;
688
+ }
689
+ export interface DescribeTimeToLiveOutput {
690
+ TimeToLiveDescription?: TimeToLiveDescription | undefined;
691
+ }
692
+ export interface EnableKinesisStreamingConfiguration {
693
+ ApproximateCreationDateTimePrecision?:
694
+ | ApproximateCreationDateTimePrecision
695
+ | undefined;
696
+ }
697
+ export interface KinesisStreamingDestinationInput {
698
+ TableName: string | undefined;
699
+ StreamArn: string | undefined;
700
+ EnableKinesisStreamingConfiguration?:
701
+ | EnableKinesisStreamingConfiguration
702
+ | undefined;
703
+ }
704
+ export interface KinesisStreamingDestinationOutput {
705
+ TableName?: string | undefined;
706
+ StreamArn?: string | undefined;
707
+ DestinationStatus?: DestinationStatus | undefined;
708
+ EnableKinesisStreamingConfiguration?:
709
+ | EnableKinesisStreamingConfiguration
710
+ | undefined;
711
+ }
712
+ export interface ExportTableToPointInTimeInput {
713
+ TableArn: string | undefined;
714
+ ExportTime?: Date | undefined;
715
+ ClientToken?: string | undefined;
716
+ S3Bucket: string | undefined;
717
+ S3BucketOwner?: string | undefined;
718
+ S3Prefix?: string | undefined;
719
+ S3SseAlgorithm?: S3SseAlgorithm | undefined;
720
+ S3SseKmsKeyId?: string | undefined;
721
+ ExportFormat?: ExportFormat | undefined;
722
+ ExportType?: ExportType | undefined;
723
+ IncrementalExportSpecification?: IncrementalExportSpecification | undefined;
724
+ }
725
+ export interface ExportTableToPointInTimeOutput {
726
+ ExportDescription?: ExportDescription | undefined;
727
+ }
728
+ export interface GetResourcePolicyInput {
729
+ ResourceArn: string | undefined;
730
+ }
731
+ export interface GetResourcePolicyOutput {
732
+ Policy?: string | undefined;
733
+ RevisionId?: string | undefined;
734
+ }
735
+ export interface ImportTableInput {
736
+ ClientToken?: string | undefined;
737
+ S3BucketSource: S3BucketSource | undefined;
738
+ InputFormat: InputFormat | undefined;
739
+ InputFormatOptions?: InputFormatOptions | undefined;
740
+ InputCompressionType?: InputCompressionType | undefined;
741
+ TableCreationParameters: TableCreationParameters | undefined;
742
+ }
743
+ export interface ImportTableOutput {
744
+ ImportTableDescription: ImportTableDescription | undefined;
745
+ }
746
+ export interface ListBackupsInput {
747
+ TableName?: string | undefined;
748
+ Limit?: number | undefined;
749
+ TimeRangeLowerBound?: Date | undefined;
750
+ TimeRangeUpperBound?: Date | undefined;
751
+ ExclusiveStartBackupArn?: string | undefined;
752
+ BackupType?: BackupTypeFilter | undefined;
753
+ }
754
+ export interface ListBackupsOutput {
755
+ BackupSummaries?: BackupSummary[] | undefined;
756
+ LastEvaluatedBackupArn?: string | undefined;
757
+ }
758
+ export interface ListContributorInsightsInput {
759
+ TableName?: string | undefined;
760
+ NextToken?: string | undefined;
761
+ MaxResults?: number | undefined;
762
+ }
763
+ export interface ListContributorInsightsOutput {
764
+ ContributorInsightsSummaries?: ContributorInsightsSummary[] | undefined;
765
+ NextToken?: string | undefined;
766
+ }
767
+ export interface ListExportsInput {
768
+ TableArn?: string | undefined;
769
+ MaxResults?: number | undefined;
770
+ NextToken?: string | undefined;
771
+ }
772
+ export interface ExportSummary {
773
+ ExportArn?: string | undefined;
774
+ ExportStatus?: ExportStatus | undefined;
775
+ ExportType?: ExportType | undefined;
776
+ }
777
+ export interface ListExportsOutput {
778
+ ExportSummaries?: ExportSummary[] | undefined;
779
+ NextToken?: string | undefined;
780
+ }
781
+ export interface ListGlobalTablesInput {
782
+ ExclusiveStartGlobalTableName?: string | undefined;
783
+ Limit?: number | undefined;
784
+ RegionName?: string | undefined;
785
+ }
786
+ export interface GlobalTable {
787
+ GlobalTableName?: string | undefined;
788
+ ReplicationGroup?: Replica[] | undefined;
789
+ }
790
+ export interface ListGlobalTablesOutput {
791
+ GlobalTables?: GlobalTable[] | undefined;
792
+ LastEvaluatedGlobalTableName?: string | undefined;
793
+ }
794
+ export interface ListImportsInput {
795
+ TableArn?: string | undefined;
796
+ PageSize?: number | undefined;
797
+ NextToken?: string | undefined;
798
+ }
799
+ export interface ImportSummary {
800
+ ImportArn?: string | undefined;
801
+ ImportStatus?: ImportStatus | undefined;
802
+ TableArn?: string | undefined;
803
+ S3BucketSource?: S3BucketSource | undefined;
804
+ CloudWatchLogGroupArn?: string | undefined;
805
+ InputFormat?: InputFormat | undefined;
806
+ StartTime?: Date | undefined;
807
+ EndTime?: Date | undefined;
808
+ }
809
+ export interface ListImportsOutput {
810
+ ImportSummaryList?: ImportSummary[] | undefined;
811
+ NextToken?: string | undefined;
812
+ }
813
+ export interface ListTablesInput {
814
+ ExclusiveStartTableName?: string | undefined;
815
+ Limit?: number | undefined;
816
+ }
817
+ export interface ListTablesOutput {
818
+ TableNames?: string[] | undefined;
819
+ LastEvaluatedTableName?: string | undefined;
820
+ }
821
+ export interface ListTagsOfResourceInput {
822
+ ResourceArn: string | undefined;
823
+ NextToken?: string | undefined;
824
+ }
825
+ export interface ListTagsOfResourceOutput {
826
+ Tags?: Tag[] | undefined;
827
+ NextToken?: string | undefined;
828
+ }
829
+ export interface PutResourcePolicyInput {
830
+ ResourceArn: string | undefined;
831
+ Policy: string | undefined;
832
+ ExpectedRevisionId?: string | undefined;
833
+ ConfirmRemoveSelfResourceAccess?: boolean | undefined;
834
+ }
835
+ export interface PutResourcePolicyOutput {
836
+ RevisionId?: string | undefined;
837
+ }
838
+ export interface RestoreTableFromBackupInput {
839
+ TargetTableName: string | undefined;
840
+ BackupArn: string | undefined;
841
+ BillingModeOverride?: BillingMode | undefined;
842
+ GlobalSecondaryIndexOverride?: GlobalSecondaryIndex[] | undefined;
843
+ LocalSecondaryIndexOverride?: LocalSecondaryIndex[] | undefined;
844
+ ProvisionedThroughputOverride?: ProvisionedThroughput | undefined;
845
+ OnDemandThroughputOverride?: OnDemandThroughput | undefined;
846
+ SSESpecificationOverride?: SSESpecification | undefined;
847
+ }
848
+ export interface RestoreTableFromBackupOutput {
849
+ TableDescription?: TableDescription | undefined;
850
+ }
851
+ export interface RestoreTableToPointInTimeInput {
852
+ SourceTableArn?: string | undefined;
853
+ SourceTableName?: string | undefined;
854
+ TargetTableName: string | undefined;
855
+ UseLatestRestorableTime?: boolean | undefined;
856
+ RestoreDateTime?: Date | undefined;
857
+ BillingModeOverride?: BillingMode | undefined;
858
+ GlobalSecondaryIndexOverride?: GlobalSecondaryIndex[] | undefined;
859
+ LocalSecondaryIndexOverride?: LocalSecondaryIndex[] | undefined;
860
+ ProvisionedThroughputOverride?: ProvisionedThroughput | undefined;
861
+ OnDemandThroughputOverride?: OnDemandThroughput | undefined;
862
+ SSESpecificationOverride?: SSESpecification | undefined;
863
+ }
864
+ export interface RestoreTableToPointInTimeOutput {
865
+ TableDescription?: TableDescription | undefined;
866
+ }
867
+ export interface TagResourceInput {
868
+ ResourceArn: string | undefined;
869
+ Tags: Tag[] | undefined;
870
+ }
871
+ export interface UntagResourceInput {
872
+ ResourceArn: string | undefined;
873
+ TagKeys: string[] | undefined;
874
+ }
875
+ export interface PointInTimeRecoverySpecification {
876
+ PointInTimeRecoveryEnabled: boolean | undefined;
877
+ RecoveryPeriodInDays?: number | undefined;
878
+ }
879
+ export interface UpdateContinuousBackupsInput {
880
+ TableName: string | undefined;
881
+ PointInTimeRecoverySpecification:
882
+ | PointInTimeRecoverySpecification
883
+ | undefined;
884
+ }
885
+ export interface UpdateContinuousBackupsOutput {
886
+ ContinuousBackupsDescription?: ContinuousBackupsDescription | undefined;
887
+ }
888
+ export interface UpdateContributorInsightsInput {
889
+ TableName: string | undefined;
890
+ IndexName?: string | undefined;
891
+ ContributorInsightsAction: ContributorInsightsAction | undefined;
892
+ ContributorInsightsMode?: ContributorInsightsMode | undefined;
893
+ }
894
+ export interface UpdateContributorInsightsOutput {
895
+ TableName?: string | undefined;
896
+ IndexName?: string | undefined;
897
+ ContributorInsightsStatus?: ContributorInsightsStatus | undefined;
898
+ ContributorInsightsMode?: ContributorInsightsMode | undefined;
899
+ }
900
+ export interface ReplicaUpdate {
901
+ Create?: CreateReplicaAction | undefined;
902
+ Delete?: DeleteReplicaAction | undefined;
903
+ }
904
+ export interface UpdateGlobalTableInput {
905
+ GlobalTableName: string | undefined;
906
+ ReplicaUpdates: ReplicaUpdate[] | undefined;
907
+ }
908
+ export interface UpdateGlobalTableOutput {
909
+ GlobalTableDescription?: GlobalTableDescription | undefined;
910
+ }
911
+ export interface GlobalTableGlobalSecondaryIndexSettingsUpdate {
912
+ IndexName: string | undefined;
913
+ ProvisionedWriteCapacityUnits?: number | undefined;
914
+ ProvisionedWriteCapacityAutoScalingSettingsUpdate?:
915
+ | AutoScalingSettingsUpdate
916
+ | undefined;
917
+ }
918
+ export interface ReplicaGlobalSecondaryIndexSettingsUpdate {
919
+ IndexName: string | undefined;
920
+ ProvisionedReadCapacityUnits?: number | undefined;
921
+ ProvisionedReadCapacityAutoScalingSettingsUpdate?:
922
+ | AutoScalingSettingsUpdate
923
+ | undefined;
924
+ }
925
+ export interface ReplicaSettingsUpdate {
926
+ RegionName: string | undefined;
927
+ ReplicaProvisionedReadCapacityUnits?: number | undefined;
928
+ ReplicaProvisionedReadCapacityAutoScalingSettingsUpdate?:
929
+ | AutoScalingSettingsUpdate
930
+ | undefined;
931
+ ReplicaGlobalSecondaryIndexSettingsUpdate?:
932
+ | ReplicaGlobalSecondaryIndexSettingsUpdate[]
933
+ | undefined;
934
+ ReplicaTableClass?: TableClass | undefined;
935
+ }
936
+ export interface UpdateGlobalTableSettingsInput {
937
+ GlobalTableName: string | undefined;
938
+ GlobalTableBillingMode?: BillingMode | undefined;
939
+ GlobalTableProvisionedWriteCapacityUnits?: number | undefined;
940
+ GlobalTableProvisionedWriteCapacityAutoScalingSettingsUpdate?:
941
+ | AutoScalingSettingsUpdate
942
+ | undefined;
943
+ GlobalTableGlobalSecondaryIndexSettingsUpdate?:
944
+ | GlobalTableGlobalSecondaryIndexSettingsUpdate[]
945
+ | undefined;
946
+ ReplicaSettingsUpdate?: ReplicaSettingsUpdate[] | undefined;
947
+ }
948
+ export interface UpdateGlobalTableSettingsOutput {
949
+ GlobalTableName?: string | undefined;
950
+ ReplicaSettings?: ReplicaSettingsDescription[] | undefined;
951
+ }
952
+ export interface UpdateKinesisStreamingConfiguration {
953
+ ApproximateCreationDateTimePrecision?:
954
+ | ApproximateCreationDateTimePrecision
955
+ | undefined;
956
+ }
957
+ export interface UpdateKinesisStreamingDestinationInput {
958
+ TableName: string | undefined;
959
+ StreamArn: string | undefined;
960
+ UpdateKinesisStreamingConfiguration?:
961
+ | UpdateKinesisStreamingConfiguration
962
+ | undefined;
963
+ }
964
+ export interface UpdateKinesisStreamingDestinationOutput {
965
+ TableName?: string | undefined;
966
+ StreamArn?: string | undefined;
967
+ DestinationStatus?: DestinationStatus | undefined;
968
+ UpdateKinesisStreamingConfiguration?:
969
+ | UpdateKinesisStreamingConfiguration
970
+ | undefined;
971
+ }
972
+ export interface UpdateGlobalSecondaryIndexAction {
973
+ IndexName: string | undefined;
974
+ ProvisionedThroughput?: ProvisionedThroughput | undefined;
975
+ OnDemandThroughput?: OnDemandThroughput | undefined;
976
+ WarmThroughput?: WarmThroughput | undefined;
977
+ }
978
+ export interface GlobalSecondaryIndexUpdate {
979
+ Update?: UpdateGlobalSecondaryIndexAction | undefined;
980
+ Create?: CreateGlobalSecondaryIndexAction | undefined;
981
+ Delete?: DeleteGlobalSecondaryIndexAction | undefined;
982
+ }
983
+ export interface GlobalTableWitnessGroupUpdate {
984
+ Create?: CreateGlobalTableWitnessGroupMemberAction | undefined;
985
+ Delete?: DeleteGlobalTableWitnessGroupMemberAction | undefined;
986
+ }
987
+ export interface UpdateReplicationGroupMemberAction {
988
+ RegionName: string | undefined;
989
+ KMSMasterKeyId?: string | undefined;
990
+ ProvisionedThroughputOverride?: ProvisionedThroughputOverride | undefined;
991
+ OnDemandThroughputOverride?: OnDemandThroughputOverride | undefined;
992
+ GlobalSecondaryIndexes?: ReplicaGlobalSecondaryIndex[] | undefined;
993
+ TableClassOverride?: TableClass | undefined;
994
+ }
995
+ export interface ReplicationGroupUpdate {
996
+ Create?: CreateReplicationGroupMemberAction | undefined;
997
+ Update?: UpdateReplicationGroupMemberAction | undefined;
998
+ Delete?: DeleteReplicationGroupMemberAction | undefined;
999
+ }
1000
+ export interface UpdateTableInput {
1001
+ AttributeDefinitions?: AttributeDefinition[] | undefined;
1002
+ TableName: string | undefined;
1003
+ BillingMode?: BillingMode | undefined;
1004
+ ProvisionedThroughput?: ProvisionedThroughput | undefined;
1005
+ GlobalSecondaryIndexUpdates?: GlobalSecondaryIndexUpdate[] | undefined;
1006
+ StreamSpecification?: StreamSpecification | undefined;
1007
+ SSESpecification?: SSESpecification | undefined;
1008
+ ReplicaUpdates?: ReplicationGroupUpdate[] | undefined;
1009
+ TableClass?: TableClass | undefined;
1010
+ DeletionProtectionEnabled?: boolean | undefined;
1011
+ MultiRegionConsistency?: MultiRegionConsistency | undefined;
1012
+ GlobalTableWitnessUpdates?: GlobalTableWitnessGroupUpdate[] | undefined;
1013
+ OnDemandThroughput?: OnDemandThroughput | undefined;
1014
+ WarmThroughput?: WarmThroughput | undefined;
1015
+ GlobalTableSettingsReplicationMode?:
1016
+ | GlobalTableSettingsReplicationMode
1017
+ | undefined;
1018
+ }
1019
+ export interface UpdateTableOutput {
1020
+ TableDescription?: TableDescription | undefined;
1021
+ }
1022
+ export interface GlobalSecondaryIndexAutoScalingUpdate {
1023
+ IndexName?: string | undefined;
1024
+ ProvisionedWriteCapacityAutoScalingUpdate?:
1025
+ | AutoScalingSettingsUpdate
1026
+ | undefined;
1027
+ }
1028
+ export interface ReplicaGlobalSecondaryIndexAutoScalingUpdate {
1029
+ IndexName?: string | undefined;
1030
+ ProvisionedReadCapacityAutoScalingUpdate?:
1031
+ | AutoScalingSettingsUpdate
1032
+ | undefined;
1033
+ }
1034
+ export interface ReplicaAutoScalingUpdate {
1035
+ RegionName: string | undefined;
1036
+ ReplicaGlobalSecondaryIndexUpdates?:
1037
+ | ReplicaGlobalSecondaryIndexAutoScalingUpdate[]
1038
+ | undefined;
1039
+ ReplicaProvisionedReadCapacityAutoScalingUpdate?:
1040
+ | AutoScalingSettingsUpdate
1041
+ | undefined;
1042
+ }
1043
+ export interface UpdateTableReplicaAutoScalingInput {
1044
+ GlobalSecondaryIndexUpdates?:
1045
+ | GlobalSecondaryIndexAutoScalingUpdate[]
1046
+ | undefined;
1047
+ TableName: string | undefined;
1048
+ ProvisionedWriteCapacityAutoScalingUpdate?:
1049
+ | AutoScalingSettingsUpdate
1050
+ | undefined;
1051
+ ReplicaUpdates?: ReplicaAutoScalingUpdate[] | undefined;
1052
+ }
1053
+ export interface UpdateTableReplicaAutoScalingOutput {
1054
+ TableAutoScalingDescription?: TableAutoScalingDescription | undefined;
1055
+ }
1056
+ export interface TimeToLiveSpecification {
1057
+ Enabled: boolean | undefined;
1058
+ AttributeName: string | undefined;
1059
+ }
1060
+ export interface UpdateTimeToLiveInput {
1061
+ TableName: string | undefined;
1062
+ TimeToLiveSpecification: TimeToLiveSpecification | undefined;
1063
+ }
1064
+ export interface UpdateTimeToLiveOutput {
1065
+ TimeToLiveSpecification?: TimeToLiveSpecification | undefined;
1066
+ }
1067
+ export type AttributeValue =
1068
+ | AttributeValue.BMember
1069
+ | AttributeValue.BOOLMember
1070
+ | AttributeValue.BSMember
1071
+ | AttributeValue.LMember
1072
+ | AttributeValue.MMember
1073
+ | AttributeValue.NMember
1074
+ | AttributeValue.NSMember
1075
+ | AttributeValue.NULLMember
1076
+ | AttributeValue.SMember
1077
+ | AttributeValue.SSMember
1078
+ | AttributeValue.$UnknownMember;
1079
+ export declare namespace AttributeValue {
1080
+ interface SMember {
1081
+ S: string;
1082
+ N?: never;
1083
+ B?: never;
1084
+ SS?: never;
1085
+ NS?: never;
1086
+ BS?: never;
1087
+ M?: never;
1088
+ L?: never;
1089
+ NULL?: never;
1090
+ BOOL?: never;
1091
+ $unknown?: never;
1092
+ }
1093
+ interface NMember {
1094
+ S?: never;
1095
+ N: string;
1096
+ B?: never;
1097
+ SS?: never;
1098
+ NS?: never;
1099
+ BS?: never;
1100
+ M?: never;
1101
+ L?: never;
1102
+ NULL?: never;
1103
+ BOOL?: never;
1104
+ $unknown?: never;
1105
+ }
1106
+ interface BMember {
1107
+ S?: never;
1108
+ N?: never;
1109
+ B: Uint8Array;
1110
+ SS?: never;
1111
+ NS?: never;
1112
+ BS?: never;
1113
+ M?: never;
1114
+ L?: never;
1115
+ NULL?: never;
1116
+ BOOL?: never;
1117
+ $unknown?: never;
1118
+ }
1119
+ interface SSMember {
1120
+ S?: never;
1121
+ N?: never;
1122
+ B?: never;
1123
+ SS: string[];
1124
+ NS?: never;
1125
+ BS?: never;
1126
+ M?: never;
1127
+ L?: never;
1128
+ NULL?: never;
1129
+ BOOL?: never;
1130
+ $unknown?: never;
1131
+ }
1132
+ interface NSMember {
1133
+ S?: never;
1134
+ N?: never;
1135
+ B?: never;
1136
+ SS?: never;
1137
+ NS: string[];
1138
+ BS?: never;
1139
+ M?: never;
1140
+ L?: never;
1141
+ NULL?: never;
1142
+ BOOL?: never;
1143
+ $unknown?: never;
1144
+ }
1145
+ interface BSMember {
1146
+ S?: never;
1147
+ N?: never;
1148
+ B?: never;
1149
+ SS?: never;
1150
+ NS?: never;
1151
+ BS: Uint8Array[];
1152
+ M?: never;
1153
+ L?: never;
1154
+ NULL?: never;
1155
+ BOOL?: never;
1156
+ $unknown?: never;
1157
+ }
1158
+ interface MMember {
1159
+ S?: never;
1160
+ N?: never;
1161
+ B?: never;
1162
+ SS?: never;
1163
+ NS?: never;
1164
+ BS?: never;
1165
+ M: Record<string, AttributeValue>;
1166
+ L?: never;
1167
+ NULL?: never;
1168
+ BOOL?: never;
1169
+ $unknown?: never;
1170
+ }
1171
+ interface LMember {
1172
+ S?: never;
1173
+ N?: never;
1174
+ B?: never;
1175
+ SS?: never;
1176
+ NS?: never;
1177
+ BS?: never;
1178
+ M?: never;
1179
+ L: AttributeValue[];
1180
+ NULL?: never;
1181
+ BOOL?: never;
1182
+ $unknown?: never;
1183
+ }
1184
+ interface NULLMember {
1185
+ S?: never;
1186
+ N?: never;
1187
+ B?: never;
1188
+ SS?: never;
1189
+ NS?: never;
1190
+ BS?: never;
1191
+ M?: never;
1192
+ L?: never;
1193
+ NULL: boolean;
1194
+ BOOL?: never;
1195
+ $unknown?: never;
1196
+ }
1197
+ interface BOOLMember {
1198
+ S?: never;
1199
+ N?: never;
1200
+ B?: never;
1201
+ SS?: never;
1202
+ NS?: never;
1203
+ BS?: never;
1204
+ M?: never;
1205
+ L?: never;
1206
+ NULL?: never;
1207
+ BOOL: boolean;
1208
+ $unknown?: never;
1209
+ }
1210
+ interface $UnknownMember {
1211
+ S?: never;
1212
+ N?: never;
1213
+ B?: never;
1214
+ SS?: never;
1215
+ NS?: never;
1216
+ BS?: never;
1217
+ M?: never;
1218
+ L?: never;
1219
+ NULL?: never;
1220
+ BOOL?: never;
1221
+ $unknown: [string, any];
1222
+ }
1223
+ interface Visitor<T> {
1224
+ S: (value: string) => T;
1225
+ N: (value: string) => T;
1226
+ B: (value: Uint8Array) => T;
1227
+ SS: (value: string[]) => T;
1228
+ NS: (value: string[]) => T;
1229
+ BS: (value: Uint8Array[]) => T;
1230
+ M: (value: Record<string, AttributeValue>) => T;
1231
+ L: (value: AttributeValue[]) => T;
1232
+ NULL: (value: boolean) => T;
1233
+ BOOL: (value: boolean) => T;
1234
+ _: (name: string, value: any) => T;
1235
+ }
1236
+ }
1237
+ export interface AttributeValueUpdate {
1238
+ Value?: AttributeValue | undefined;
1239
+ Action?: AttributeAction | undefined;
1240
+ }
1241
+ export interface BatchStatementError {
1242
+ Code?: BatchStatementErrorCodeEnum | undefined;
1243
+ Message?: string | undefined;
1244
+ Item?: Record<string, AttributeValue> | undefined;
1245
+ }
1246
+ export interface BatchStatementRequest {
1247
+ Statement: string | undefined;
1248
+ Parameters?: AttributeValue[] | undefined;
1249
+ ConsistentRead?: boolean | undefined;
1250
+ ReturnValuesOnConditionCheckFailure?:
1251
+ | ReturnValuesOnConditionCheckFailure
1252
+ | undefined;
1253
+ }
1254
+ export interface CancellationReason {
1255
+ Item?: Record<string, AttributeValue> | undefined;
1256
+ Code?: string | undefined;
1257
+ Message?: string | undefined;
1258
+ }
1259
+ export interface Condition {
1260
+ AttributeValueList?: AttributeValue[] | undefined;
1261
+ ComparisonOperator: ComparisonOperator | undefined;
1262
+ }
1263
+ export interface DeleteRequest {
1264
+ Key: Record<string, AttributeValue> | undefined;
1265
+ }
1266
+ export interface ExecuteStatementInput {
1267
+ Statement: string | undefined;
1268
+ Parameters?: AttributeValue[] | undefined;
1269
+ ConsistentRead?: boolean | undefined;
1270
+ NextToken?: string | undefined;
1271
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1272
+ Limit?: number | undefined;
1273
+ ReturnValuesOnConditionCheckFailure?:
1274
+ | ReturnValuesOnConditionCheckFailure
1275
+ | undefined;
1276
+ }
1277
+ export interface Get {
1278
+ Key: Record<string, AttributeValue> | undefined;
1279
+ TableName: string | undefined;
1280
+ ProjectionExpression?: string | undefined;
1281
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1282
+ }
1283
+ export interface GetItemInput {
1284
+ TableName: string | undefined;
1285
+ Key: Record<string, AttributeValue> | undefined;
1286
+ AttributesToGet?: string[] | undefined;
1287
+ ConsistentRead?: boolean | undefined;
1288
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1289
+ ProjectionExpression?: string | undefined;
1290
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1291
+ }
1292
+ export interface GetItemOutput {
1293
+ Item?: Record<string, AttributeValue> | undefined;
1294
+ ConsumedCapacity?: ConsumedCapacity | undefined;
1295
+ }
1296
+ export interface ItemCollectionMetrics {
1297
+ ItemCollectionKey?: Record<string, AttributeValue> | undefined;
1298
+ SizeEstimateRangeGB?: number[] | undefined;
1299
+ }
1300
+ export interface ItemResponse {
1301
+ Item?: Record<string, AttributeValue> | undefined;
1302
+ }
1303
+ export interface ParameterizedStatement {
1304
+ Statement: string | undefined;
1305
+ Parameters?: AttributeValue[] | undefined;
1306
+ ReturnValuesOnConditionCheckFailure?:
1307
+ | ReturnValuesOnConditionCheckFailure
1308
+ | undefined;
1309
+ }
1310
+ export interface PutRequest {
1311
+ Item: Record<string, AttributeValue> | undefined;
1312
+ }
1313
+ export interface KeysAndAttributes {
1314
+ Keys: Record<string, AttributeValue>[] | undefined;
1315
+ AttributesToGet?: string[] | undefined;
1316
+ ConsistentRead?: boolean | undefined;
1317
+ ProjectionExpression?: string | undefined;
1318
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1319
+ }
1320
+ export interface TransactGetItem {
1321
+ Get: Get | undefined;
1322
+ }
1323
+ export interface BatchExecuteStatementInput {
1324
+ Statements: BatchStatementRequest[] | undefined;
1325
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1326
+ }
1327
+ export interface ExecuteTransactionInput {
1328
+ TransactStatements: ParameterizedStatement[] | undefined;
1329
+ ClientRequestToken?: string | undefined;
1330
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1331
+ }
1332
+ export interface ExecuteTransactionOutput {
1333
+ Responses?: ItemResponse[] | undefined;
1334
+ ConsumedCapacity?: ConsumedCapacity[] | undefined;
1335
+ }
1336
+ export interface TransactGetItemsOutput {
1337
+ ConsumedCapacity?: ConsumedCapacity[] | undefined;
1338
+ Responses?: ItemResponse[] | undefined;
1339
+ }
1340
+ export interface BatchGetItemInput {
1341
+ RequestItems: Record<string, KeysAndAttributes> | undefined;
1342
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1343
+ }
1344
+ export interface ExpectedAttributeValue {
1345
+ Value?: AttributeValue | undefined;
1346
+ Exists?: boolean | undefined;
1347
+ ComparisonOperator?: ComparisonOperator | undefined;
1348
+ AttributeValueList?: AttributeValue[] | undefined;
1349
+ }
1350
+ export interface TransactGetItemsInput {
1351
+ TransactItems: TransactGetItem[] | undefined;
1352
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1353
+ }
1354
+ export interface TransactWriteItemsOutput {
1355
+ ConsumedCapacity?: ConsumedCapacity[] | undefined;
1356
+ ItemCollectionMetrics?: Record<string, ItemCollectionMetrics[]> | undefined;
1357
+ }
1358
+ export interface ConditionCheck {
1359
+ Key: Record<string, AttributeValue> | undefined;
1360
+ TableName: string | undefined;
1361
+ ConditionExpression: string | undefined;
1362
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1363
+ ExpressionAttributeValues?: Record<string, AttributeValue> | undefined;
1364
+ ReturnValuesOnConditionCheckFailure?:
1365
+ | ReturnValuesOnConditionCheckFailure
1366
+ | undefined;
1367
+ }
1368
+ export interface Delete {
1369
+ Key: Record<string, AttributeValue> | undefined;
1370
+ TableName: string | undefined;
1371
+ ConditionExpression?: string | undefined;
1372
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1373
+ ExpressionAttributeValues?: Record<string, AttributeValue> | undefined;
1374
+ ReturnValuesOnConditionCheckFailure?:
1375
+ | ReturnValuesOnConditionCheckFailure
1376
+ | undefined;
1377
+ }
1378
+ export interface Put {
1379
+ Item: Record<string, AttributeValue> | undefined;
1380
+ TableName: string | undefined;
1381
+ ConditionExpression?: string | undefined;
1382
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1383
+ ExpressionAttributeValues?: Record<string, AttributeValue> | undefined;
1384
+ ReturnValuesOnConditionCheckFailure?:
1385
+ | ReturnValuesOnConditionCheckFailure
1386
+ | undefined;
1387
+ }
1388
+ export interface Update {
1389
+ Key: Record<string, AttributeValue> | undefined;
1390
+ UpdateExpression: string | undefined;
1391
+ TableName: string | undefined;
1392
+ ConditionExpression?: string | undefined;
1393
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1394
+ ExpressionAttributeValues?: Record<string, AttributeValue> | undefined;
1395
+ ReturnValuesOnConditionCheckFailure?:
1396
+ | ReturnValuesOnConditionCheckFailure
1397
+ | undefined;
1398
+ }
1399
+ export interface BatchStatementResponse {
1400
+ Error?: BatchStatementError | undefined;
1401
+ TableName?: string | undefined;
1402
+ Item?: Record<string, AttributeValue> | undefined;
1403
+ }
1404
+ export interface DeleteItemOutput {
1405
+ Attributes?: Record<string, AttributeValue> | undefined;
1406
+ ConsumedCapacity?: ConsumedCapacity | undefined;
1407
+ ItemCollectionMetrics?: ItemCollectionMetrics | undefined;
1408
+ }
1409
+ export interface ExecuteStatementOutput {
1410
+ Items?: Record<string, AttributeValue>[] | undefined;
1411
+ NextToken?: string | undefined;
1412
+ ConsumedCapacity?: ConsumedCapacity | undefined;
1413
+ LastEvaluatedKey?: Record<string, AttributeValue> | undefined;
1414
+ }
1415
+ export interface PutItemOutput {
1416
+ Attributes?: Record<string, AttributeValue> | undefined;
1417
+ ConsumedCapacity?: ConsumedCapacity | undefined;
1418
+ ItemCollectionMetrics?: ItemCollectionMetrics | undefined;
1419
+ }
1420
+ export interface QueryOutput {
1421
+ Items?: Record<string, AttributeValue>[] | undefined;
1422
+ Count?: number | undefined;
1423
+ ScannedCount?: number | undefined;
1424
+ LastEvaluatedKey?: Record<string, AttributeValue> | undefined;
1425
+ ConsumedCapacity?: ConsumedCapacity | undefined;
1426
+ }
1427
+ export interface ScanOutput {
1428
+ Items?: Record<string, AttributeValue>[] | undefined;
1429
+ Count?: number | undefined;
1430
+ ScannedCount?: number | undefined;
1431
+ LastEvaluatedKey?: Record<string, AttributeValue> | undefined;
1432
+ ConsumedCapacity?: ConsumedCapacity | undefined;
1433
+ }
1434
+ export interface UpdateItemOutput {
1435
+ Attributes?: Record<string, AttributeValue> | undefined;
1436
+ ConsumedCapacity?: ConsumedCapacity | undefined;
1437
+ ItemCollectionMetrics?: ItemCollectionMetrics | undefined;
1438
+ }
1439
+ export interface WriteRequest {
1440
+ PutRequest?: PutRequest | undefined;
1441
+ DeleteRequest?: DeleteRequest | undefined;
1442
+ }
1443
+ export interface BatchExecuteStatementOutput {
1444
+ Responses?: BatchStatementResponse[] | undefined;
1445
+ ConsumedCapacity?: ConsumedCapacity[] | undefined;
1446
+ }
1447
+ export interface BatchGetItemOutput {
1448
+ Responses?: Record<string, Record<string, AttributeValue>[]> | undefined;
1449
+ UnprocessedKeys?: Record<string, KeysAndAttributes> | undefined;
1450
+ ConsumedCapacity?: ConsumedCapacity[] | undefined;
1451
+ }
1452
+ export interface ScanInput {
1453
+ TableName: string | undefined;
1454
+ IndexName?: string | undefined;
1455
+ AttributesToGet?: string[] | undefined;
1456
+ Limit?: number | undefined;
1457
+ Select?: Select | undefined;
1458
+ ScanFilter?: Record<string, Condition> | undefined;
1459
+ ConditionalOperator?: ConditionalOperator | undefined;
1460
+ ExclusiveStartKey?: Record<string, AttributeValue> | undefined;
1461
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1462
+ TotalSegments?: number | undefined;
1463
+ Segment?: number | undefined;
1464
+ ProjectionExpression?: string | undefined;
1465
+ FilterExpression?: string | undefined;
1466
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1467
+ ExpressionAttributeValues?: Record<string, AttributeValue> | undefined;
1468
+ ConsistentRead?: boolean | undefined;
1469
+ }
1470
+ export interface BatchWriteItemInput {
1471
+ RequestItems: Record<string, WriteRequest[]> | undefined;
1472
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1473
+ ReturnItemCollectionMetrics?: ReturnItemCollectionMetrics | undefined;
1474
+ }
1475
+ export interface DeleteItemInput {
1476
+ TableName: string | undefined;
1477
+ Key: Record<string, AttributeValue> | undefined;
1478
+ Expected?: Record<string, ExpectedAttributeValue> | undefined;
1479
+ ConditionalOperator?: ConditionalOperator | undefined;
1480
+ ReturnValues?: ReturnValue | undefined;
1481
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1482
+ ReturnItemCollectionMetrics?: ReturnItemCollectionMetrics | undefined;
1483
+ ConditionExpression?: string | undefined;
1484
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1485
+ ExpressionAttributeValues?: Record<string, AttributeValue> | undefined;
1486
+ ReturnValuesOnConditionCheckFailure?:
1487
+ | ReturnValuesOnConditionCheckFailure
1488
+ | undefined;
1489
+ }
1490
+ export interface PutItemInput {
1491
+ TableName: string | undefined;
1492
+ Item: Record<string, AttributeValue> | undefined;
1493
+ Expected?: Record<string, ExpectedAttributeValue> | undefined;
1494
+ ReturnValues?: ReturnValue | undefined;
1495
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1496
+ ReturnItemCollectionMetrics?: ReturnItemCollectionMetrics | undefined;
1497
+ ConditionalOperator?: ConditionalOperator | undefined;
1498
+ ConditionExpression?: string | undefined;
1499
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1500
+ ExpressionAttributeValues?: Record<string, AttributeValue> | undefined;
1501
+ ReturnValuesOnConditionCheckFailure?:
1502
+ | ReturnValuesOnConditionCheckFailure
1503
+ | undefined;
1504
+ }
1505
+ export interface QueryInput {
1506
+ TableName: string | undefined;
1507
+ IndexName?: string | undefined;
1508
+ Select?: Select | undefined;
1509
+ AttributesToGet?: string[] | undefined;
1510
+ Limit?: number | undefined;
1511
+ ConsistentRead?: boolean | undefined;
1512
+ KeyConditions?: Record<string, Condition> | undefined;
1513
+ QueryFilter?: Record<string, Condition> | undefined;
1514
+ ConditionalOperator?: ConditionalOperator | undefined;
1515
+ ScanIndexForward?: boolean | undefined;
1516
+ ExclusiveStartKey?: Record<string, AttributeValue> | undefined;
1517
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1518
+ ProjectionExpression?: string | undefined;
1519
+ FilterExpression?: string | undefined;
1520
+ KeyConditionExpression?: string | undefined;
1521
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1522
+ ExpressionAttributeValues?: Record<string, AttributeValue> | undefined;
1523
+ }
1524
+ export interface BatchWriteItemOutput {
1525
+ UnprocessedItems?: Record<string, WriteRequest[]> | undefined;
1526
+ ItemCollectionMetrics?: Record<string, ItemCollectionMetrics[]> | undefined;
1527
+ ConsumedCapacity?: ConsumedCapacity[] | undefined;
1528
+ }
1529
+ export interface UpdateItemInput {
1530
+ TableName: string | undefined;
1531
+ Key: Record<string, AttributeValue> | undefined;
1532
+ AttributeUpdates?: Record<string, AttributeValueUpdate> | undefined;
1533
+ Expected?: Record<string, ExpectedAttributeValue> | undefined;
1534
+ ConditionalOperator?: ConditionalOperator | undefined;
1535
+ ReturnValues?: ReturnValue | undefined;
1536
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1537
+ ReturnItemCollectionMetrics?: ReturnItemCollectionMetrics | undefined;
1538
+ UpdateExpression?: string | undefined;
1539
+ ConditionExpression?: string | undefined;
1540
+ ExpressionAttributeNames?: Record<string, string> | undefined;
1541
+ ExpressionAttributeValues?: Record<string, AttributeValue> | undefined;
1542
+ ReturnValuesOnConditionCheckFailure?:
1543
+ | ReturnValuesOnConditionCheckFailure
1544
+ | undefined;
1545
+ }
1546
+ export interface TransactWriteItem {
1547
+ ConditionCheck?: ConditionCheck | undefined;
1548
+ Put?: Put | undefined;
1549
+ Delete?: Delete | undefined;
1550
+ Update?: Update | undefined;
1551
+ }
1552
+ export interface TransactWriteItemsInput {
1553
+ TransactItems: TransactWriteItem[] | undefined;
1554
+ ReturnConsumedCapacity?: ReturnConsumedCapacity | undefined;
1555
+ ReturnItemCollectionMetrics?: ReturnItemCollectionMetrics | undefined;
1556
+ ClientRequestToken?: string | undefined;
1557
+ }