@tachybase/module-file 0.23.8

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 (500) hide show
  1. package/README.md +9 -0
  2. package/README.zh-CN.md +9 -0
  3. package/client.d.ts +2 -0
  4. package/client.js +1 -0
  5. package/dist/client/FileManagerProvider.d.ts +4 -0
  6. package/dist/client/FileStorage.d.ts +4 -0
  7. package/dist/client/StorageOptions.d.ts +2 -0
  8. package/dist/client/hooks/index.d.ts +1 -0
  9. package/dist/client/hooks/useUploadFiles.d.ts +9 -0
  10. package/dist/client/index.d.ts +7 -0
  11. package/dist/client/index.js +1 -0
  12. package/dist/client/initializers/UploadActionInitializer.d.ts +2 -0
  13. package/dist/client/initializers/index.d.ts +1 -0
  14. package/dist/client/interfaces/attachment.d.ts +103 -0
  15. package/dist/client/locale/index.d.ts +2 -0
  16. package/dist/client/schemas/storage.d.ts +11 -0
  17. package/dist/client/schemas/storageTypes/ali-oss.d.ts +82 -0
  18. package/dist/client/schemas/storageTypes/index.d.ts +284 -0
  19. package/dist/client/schemas/storageTypes/local.d.ts +56 -0
  20. package/dist/client/schemas/storageTypes/s3.d.ts +77 -0
  21. package/dist/client/schemas/storageTypes/tx-cos.d.ts +71 -0
  22. package/dist/client/templates/file.d.ts +133 -0
  23. package/dist/client/templates/index.d.ts +1 -0
  24. package/dist/externalVersion.js +16 -0
  25. package/dist/index.d.ts +2 -0
  26. package/dist/index.js +39 -0
  27. package/dist/locale/en-US.json +22 -0
  28. package/dist/locale/fr-FR.json +21 -0
  29. package/dist/locale/ja-JP.json +18 -0
  30. package/dist/locale/ko_KR.json +32 -0
  31. package/dist/locale/ru-RU.json +18 -0
  32. package/dist/locale/tr-TR.json +17 -0
  33. package/dist/locale/zh-CN.json +32 -0
  34. package/dist/node_modules/@aws-sdk/client-s3/LICENSE +201 -0
  35. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/auth/httpAuthSchemeProvider.js +127 -0
  36. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/endpointResolver.js +33 -0
  37. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/endpoint/ruleset.js +7 -0
  38. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/index.js +1 -0
  39. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.browser.js +47 -0
  40. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.js +69 -0
  41. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.native.js +15 -0
  42. package/dist/node_modules/@aws-sdk/client-s3/dist-cjs/runtimeConfig.shared.js +46 -0
  43. package/dist/node_modules/@aws-sdk/client-s3/dist-es/S3.js +203 -0
  44. package/dist/node_modules/@aws-sdk/client-s3/dist-es/S3Client.js +60 -0
  45. package/dist/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  46. package/dist/node_modules/@aws-sdk/client-s3/dist-es/auth/httpAuthSchemeProvider.js +123 -0
  47. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/AbortMultipartUploadCommand.js +28 -0
  48. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CompleteMultipartUploadCommand.js +31 -0
  49. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CopyObjectCommand.js +33 -0
  50. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketCommand.js +31 -0
  51. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateBucketMetadataTableConfigurationCommand.js +31 -0
  52. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateMultipartUploadCommand.js +31 -0
  53. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/CreateSessionCommand.js +29 -0
  54. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketAnalyticsConfigurationCommand.js +26 -0
  55. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCommand.js +26 -0
  56. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketCorsCommand.js +26 -0
  57. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketEncryptionCommand.js +26 -0
  58. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketIntelligentTieringConfigurationCommand.js +26 -0
  59. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketInventoryConfigurationCommand.js +26 -0
  60. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketLifecycleCommand.js +26 -0
  61. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetadataTableConfigurationCommand.js +26 -0
  62. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketMetricsConfigurationCommand.js +26 -0
  63. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketOwnershipControlsCommand.js +26 -0
  64. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketPolicyCommand.js +26 -0
  65. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketReplicationCommand.js +26 -0
  66. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketTaggingCommand.js +26 -0
  67. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteBucketWebsiteCommand.js +26 -0
  68. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectCommand.js +28 -0
  69. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectTaggingCommand.js +27 -0
  70. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeleteObjectsCommand.js +32 -0
  71. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/DeletePublicAccessBlockCommand.js +26 -0
  72. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAccelerateConfigurationCommand.js +28 -0
  73. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAclCommand.js +28 -0
  74. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketAnalyticsConfigurationCommand.js +28 -0
  75. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketCorsCommand.js +28 -0
  76. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketEncryptionCommand.js +29 -0
  77. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketIntelligentTieringConfigurationCommand.js +28 -0
  78. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketInventoryConfigurationCommand.js +29 -0
  79. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLifecycleConfigurationCommand.js +28 -0
  80. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLocationCommand.js +28 -0
  81. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketLoggingCommand.js +28 -0
  82. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetadataTableConfigurationCommand.js +28 -0
  83. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketMetricsConfigurationCommand.js +28 -0
  84. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketNotificationConfigurationCommand.js +28 -0
  85. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketOwnershipControlsCommand.js +28 -0
  86. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyCommand.js +28 -0
  87. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketPolicyStatusCommand.js +28 -0
  88. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketReplicationCommand.js +28 -0
  89. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketRequestPaymentCommand.js +28 -0
  90. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketTaggingCommand.js +28 -0
  91. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketVersioningCommand.js +28 -0
  92. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetBucketWebsiteCommand.js +28 -0
  93. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAclCommand.js +28 -0
  94. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectAttributesCommand.js +30 -0
  95. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectCommand.js +37 -0
  96. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLegalHoldCommand.js +27 -0
  97. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectLockConfigurationCommand.js +27 -0
  98. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectRetentionCommand.js +27 -0
  99. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTaggingCommand.js +27 -0
  100. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetObjectTorrentCommand.js +26 -0
  101. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/GetPublicAccessBlockCommand.js +28 -0
  102. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadBucketCommand.js +27 -0
  103. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/HeadObjectCommand.js +32 -0
  104. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketAnalyticsConfigurationsCommand.js +28 -0
  105. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketIntelligentTieringConfigurationsCommand.js +28 -0
  106. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketInventoryConfigurationsCommand.js +29 -0
  107. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketMetricsConfigurationsCommand.js +27 -0
  108. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListBucketsCommand.js +24 -0
  109. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListDirectoryBucketsCommand.js +27 -0
  110. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListMultipartUploadsCommand.js +28 -0
  111. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectVersionsCommand.js +28 -0
  112. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsCommand.js +28 -0
  113. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListObjectsV2Command.js +28 -0
  114. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/ListPartsCommand.js +31 -0
  115. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAccelerateConfigurationCommand.js +31 -0
  116. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAclCommand.js +31 -0
  117. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketAnalyticsConfigurationCommand.js +26 -0
  118. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketCorsCommand.js +31 -0
  119. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketEncryptionCommand.js +32 -0
  120. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketIntelligentTieringConfigurationCommand.js +26 -0
  121. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketInventoryConfigurationCommand.js +27 -0
  122. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLifecycleConfigurationCommand.js +33 -0
  123. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketLoggingCommand.js +31 -0
  124. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketMetricsConfigurationCommand.js +26 -0
  125. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketNotificationConfigurationCommand.js +26 -0
  126. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketOwnershipControlsCommand.js +30 -0
  127. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketPolicyCommand.js +31 -0
  128. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketReplicationCommand.js +31 -0
  129. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketRequestPaymentCommand.js +31 -0
  130. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketTaggingCommand.js +31 -0
  131. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketVersioningCommand.js +31 -0
  132. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutBucketWebsiteCommand.js +31 -0
  133. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectAclCommand.js +33 -0
  134. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectCommand.js +37 -0
  135. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLegalHoldCommand.js +32 -0
  136. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectLockConfigurationCommand.js +32 -0
  137. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectRetentionCommand.js +32 -0
  138. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutObjectTaggingCommand.js +32 -0
  139. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/PutPublicAccessBlockCommand.js +31 -0
  140. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/RestoreObjectCommand.js +33 -0
  141. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/SelectObjectContentCommand.js +34 -0
  142. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCommand.js +36 -0
  143. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/UploadPartCopyCommand.js +31 -0
  144. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/WriteGetObjectResponseCommand.js +26 -0
  145. package/dist/node_modules/@aws-sdk/client-s3/dist-es/commands/index.js +98 -0
  146. package/dist/node_modules/@aws-sdk/client-s3/dist-es/endpoint/EndpointParameters.js +24 -0
  147. package/dist/node_modules/@aws-sdk/client-s3/dist-es/endpoint/endpointResolver.js +29 -0
  148. package/dist/node_modules/@aws-sdk/client-s3/dist-es/endpoint/ruleset.js +4 -0
  149. package/dist/node_modules/@aws-sdk/client-s3/dist-es/extensionConfiguration.js +1 -0
  150. package/dist/node_modules/@aws-sdk/client-s3/dist-es/index.js +7 -0
  151. package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/S3ServiceException.js +8 -0
  152. package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/index.js +2 -0
  153. package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/models_0.js +580 -0
  154. package/dist/node_modules/@aws-sdk/client-s3/dist-es/models/models_1.js +198 -0
  155. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/Interfaces.js +1 -0
  156. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListBucketsPaginator.js +4 -0
  157. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListDirectoryBucketsPaginator.js +4 -0
  158. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListObjectsV2Paginator.js +4 -0
  159. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/ListPartsPaginator.js +4 -0
  160. package/dist/node_modules/@aws-sdk/client-s3/dist-es/pagination/index.js +5 -0
  161. package/dist/node_modules/@aws-sdk/client-s3/dist-es/protocols/Aws_restXml.js +7635 -0
  162. package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.browser.js +42 -0
  163. package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.js +64 -0
  164. package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.native.js +11 -0
  165. package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeConfig.shared.js +42 -0
  166. package/dist/node_modules/@aws-sdk/client-s3/dist-es/runtimeExtensions.js +21 -0
  167. package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/index.js +4 -0
  168. package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketExists.js +26 -0
  169. package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForBucketNotExists.js +25 -0
  170. package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectExists.js +26 -0
  171. package/dist/node_modules/@aws-sdk/client-s3/dist-es/waiters/waitForObjectNotExists.js +25 -0
  172. package/dist/node_modules/@aws-sdk/client-s3/dist-types/S3.d.ts +698 -0
  173. package/dist/node_modules/@aws-sdk/client-s3/dist-types/S3Client.d.ts +331 -0
  174. package/dist/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  175. package/dist/node_modules/@aws-sdk/client-s3/dist-types/auth/httpAuthSchemeProvider.d.ts +69 -0
  176. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/AbortMultipartUploadCommand.d.ts +179 -0
  177. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CompleteMultipartUploadCommand.d.ts +311 -0
  178. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CopyObjectCommand.d.ts +348 -0
  179. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketCommand.d.ts +283 -0
  180. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +134 -0
  181. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateMultipartUploadCommand.d.ts +399 -0
  182. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/CreateSessionCommand.d.ts +196 -0
  183. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +101 -0
  184. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCommand.d.ts +138 -0
  185. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketCorsCommand.d.ts +104 -0
  186. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketEncryptionCommand.d.ts +130 -0
  187. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +94 -0
  188. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketInventoryConfigurationCommand.d.ts +99 -0
  189. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketLifecycleCommand.d.ts +150 -0
  190. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +95 -0
  191. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketMetricsConfigurationCommand.d.ts +107 -0
  192. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketOwnershipControlsCommand.d.ts +91 -0
  193. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketPolicyCommand.d.ts +147 -0
  194. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketReplicationCommand.d.ts +108 -0
  195. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketTaggingCommand.d.ts +100 -0
  196. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteBucketWebsiteCommand.d.ts +107 -0
  197. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectCommand.d.ts +205 -0
  198. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectTaggingCommand.d.ts +131 -0
  199. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeleteObjectsCommand.d.ts +317 -0
  200. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/DeletePublicAccessBlockCommand.d.ts +100 -0
  201. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAccelerateConfigurationCommand.d.ts +102 -0
  202. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAclCommand.d.ts +115 -0
  203. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketAnalyticsConfigurationCommand.d.ts +135 -0
  204. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketCorsCommand.d.ts +145 -0
  205. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketEncryptionCommand.d.ts +143 -0
  206. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +121 -0
  207. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketInventoryConfigurationCommand.d.ts +129 -0
  208. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +254 -0
  209. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLocationCommand.d.ts +116 -0
  210. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketLoggingCommand.d.ts +110 -0
  211. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetadataTableConfigurationCommand.d.ts +111 -0
  212. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketMetricsConfigurationCommand.d.ts +128 -0
  213. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketNotificationConfigurationCommand.d.ts +154 -0
  214. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketOwnershipControlsCommand.d.ts +99 -0
  215. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyCommand.d.ts +159 -0
  216. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketPolicyStatusCommand.d.ts +105 -0
  217. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketReplicationCommand.d.ts +195 -0
  218. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketRequestPaymentCommand.d.ts +101 -0
  219. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketTaggingCommand.d.ts +134 -0
  220. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketVersioningCommand.d.ts +115 -0
  221. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetBucketWebsiteCommand.d.ts +139 -0
  222. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAclCommand.d.ts +189 -0
  223. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectAttributesCommand.d.ts +326 -0
  224. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectCommand.d.ts +367 -0
  225. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLegalHoldCommand.d.ts +90 -0
  226. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectLockConfigurationCommand.d.ts +94 -0
  227. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectRetentionCommand.d.ts +91 -0
  228. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTaggingCommand.d.ts +163 -0
  229. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetObjectTorrentCommand.d.ts +107 -0
  230. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/GetPublicAccessBlockCommand.d.ts +116 -0
  231. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadBucketCommand.d.ts +157 -0
  232. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/HeadObjectCommand.d.ts +315 -0
  233. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +147 -0
  234. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +126 -0
  235. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketInventoryConfigurationsCommand.d.ts +142 -0
  236. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketMetricsConfigurationsCommand.d.ts +136 -0
  237. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListBucketsCommand.d.ts +130 -0
  238. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListDirectoryBucketsCommand.d.ts +107 -0
  239. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListMultipartUploadsCommand.d.ts +344 -0
  240. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectVersionsCommand.d.ts +213 -0
  241. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsCommand.d.ts +196 -0
  242. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListObjectsV2Command.d.ts +261 -0
  243. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/ListPartsCommand.d.ts +238 -0
  244. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAccelerateConfigurationCommand.d.ts +115 -0
  245. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAclCommand.d.ts +309 -0
  246. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketAnalyticsConfigurationCommand.d.ts +208 -0
  247. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketCorsCommand.d.ts +193 -0
  248. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketEncryptionCommand.d.ts +209 -0
  249. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +153 -0
  250. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketInventoryConfigurationCommand.d.ts +185 -0
  251. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +293 -0
  252. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketLoggingCommand.d.ts +209 -0
  253. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketMetricsConfigurationCommand.d.ts +141 -0
  254. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketNotificationConfigurationCommand.d.ts +206 -0
  255. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketOwnershipControlsCommand.d.ts +99 -0
  256. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketPolicyCommand.d.ts +162 -0
  257. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketReplicationCommand.d.ts +233 -0
  258. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketRequestPaymentCommand.d.ts +109 -0
  259. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketTaggingCommand.d.ts +163 -0
  260. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketVersioningCommand.d.ts +143 -0
  261. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutBucketWebsiteCommand.d.ts +244 -0
  262. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectAclCommand.d.ts +307 -0
  263. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectCommand.d.ts +449 -0
  264. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLegalHoldCommand.d.ts +86 -0
  265. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectLockConfigurationCommand.d.ts +109 -0
  266. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectRetentionCommand.d.ts +89 -0
  267. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutObjectTaggingCommand.d.ts +169 -0
  268. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/PutPublicAccessBlockCommand.d.ts +117 -0
  269. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/RestoreObjectCommand.d.ts +383 -0
  270. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/SelectObjectContentCommand.d.ts +254 -0
  271. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCommand.d.ts +307 -0
  272. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/UploadPartCopyCommand.d.ts +375 -0
  273. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/WriteGetObjectResponseCommand.d.ts +147 -0
  274. package/dist/node_modules/@aws-sdk/client-s3/dist-types/commands/index.d.ts +98 -0
  275. package/dist/node_modules/@aws-sdk/client-s3/dist-types/endpoint/EndpointParameters.d.ts +83 -0
  276. package/dist/node_modules/@aws-sdk/client-s3/dist-types/endpoint/endpointResolver.d.ts +5 -0
  277. package/dist/node_modules/@aws-sdk/client-s3/dist-types/endpoint/ruleset.d.ts +2 -0
  278. package/dist/node_modules/@aws-sdk/client-s3/dist-types/extensionConfiguration.d.ts +9 -0
  279. package/dist/node_modules/@aws-sdk/client-s3/dist-types/index.d.ts +15 -0
  280. package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/S3ServiceException.d.ts +14 -0
  281. package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/index.d.ts +2 -0
  282. package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/models_0.d.ts +13234 -0
  283. package/dist/node_modules/@aws-sdk/client-s3/dist-types/models/models_1.d.ts +3948 -0
  284. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/Interfaces.d.ts +8 -0
  285. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListBucketsPaginator.d.ts +7 -0
  286. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListDirectoryBucketsPaginator.d.ts +7 -0
  287. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListObjectsV2Paginator.d.ts +7 -0
  288. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/ListPartsPaginator.d.ts +7 -0
  289. package/dist/node_modules/@aws-sdk/client-s3/dist-types/pagination/index.d.ts +5 -0
  290. package/dist/node_modules/@aws-sdk/client-s3/dist-types/protocols/Aws_restXml.d.ts +884 -0
  291. package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.browser.d.ts +68 -0
  292. package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.d.ts +69 -0
  293. package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.native.d.ts +67 -0
  294. package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeConfig.shared.d.ts +28 -0
  295. package/dist/node_modules/@aws-sdk/client-s3/dist-types/runtimeExtensions.d.ts +17 -0
  296. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3.d.ts +1751 -0
  297. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/S3Client.d.ts +732 -0
  298. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  299. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +55 -0
  300. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/AbortMultipartUploadCommand.d.ts +51 -0
  301. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CompleteMultipartUploadCommand.d.ts +51 -0
  302. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CopyObjectCommand.d.ts +47 -0
  303. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketCommand.d.ts +47 -0
  304. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateBucketMetadataTableConfigurationCommand.d.ts +47 -0
  305. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateMultipartUploadCommand.d.ts +51 -0
  306. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/CreateSessionCommand.d.ts +47 -0
  307. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketAnalyticsConfigurationCommand.d.ts +47 -0
  308. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCommand.d.ts +45 -0
  309. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketCorsCommand.d.ts +45 -0
  310. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketEncryptionCommand.d.ts +46 -0
  311. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketIntelligentTieringConfigurationCommand.d.ts +47 -0
  312. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketInventoryConfigurationCommand.d.ts +47 -0
  313. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketLifecycleCommand.d.ts +46 -0
  314. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetadataTableConfigurationCommand.d.ts +47 -0
  315. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketMetricsConfigurationCommand.d.ts +47 -0
  316. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketOwnershipControlsCommand.d.ts +47 -0
  317. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketPolicyCommand.d.ts +46 -0
  318. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketReplicationCommand.d.ts +47 -0
  319. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketTaggingCommand.d.ts +46 -0
  320. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteBucketWebsiteCommand.d.ts +46 -0
  321. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +47 -0
  322. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectTaggingCommand.d.ts +51 -0
  323. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeleteObjectsCommand.d.ts +47 -0
  324. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/DeletePublicAccessBlockCommand.d.ts +47 -0
  325. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAccelerateConfigurationCommand.d.ts +51 -0
  326. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAclCommand.d.ts +47 -0
  327. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketAnalyticsConfigurationCommand.d.ts +51 -0
  328. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketCorsCommand.d.ts +47 -0
  329. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketEncryptionCommand.d.ts +51 -0
  330. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketIntelligentTieringConfigurationCommand.d.ts +51 -0
  331. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketInventoryConfigurationCommand.d.ts +51 -0
  332. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLifecycleConfigurationCommand.d.ts +51 -0
  333. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLocationCommand.d.ts +51 -0
  334. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketLoggingCommand.d.ts +50 -0
  335. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetadataTableConfigurationCommand.d.ts +51 -0
  336. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketMetricsConfigurationCommand.d.ts +51 -0
  337. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketNotificationConfigurationCommand.d.ts +51 -0
  338. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketOwnershipControlsCommand.d.ts +51 -0
  339. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyCommand.d.ts +50 -0
  340. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketPolicyStatusCommand.d.ts +51 -0
  341. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketReplicationCommand.d.ts +51 -0
  342. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketRequestPaymentCommand.d.ts +51 -0
  343. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketTaggingCommand.d.ts +50 -0
  344. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +51 -0
  345. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetBucketWebsiteCommand.d.ts +50 -0
  346. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAclCommand.d.ts +47 -0
  347. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectAttributesCommand.d.ts +51 -0
  348. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectCommand.d.ts +52 -0
  349. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLegalHoldCommand.d.ts +51 -0
  350. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectLockConfigurationCommand.d.ts +51 -0
  351. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectRetentionCommand.d.ts +51 -0
  352. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTaggingCommand.d.ts +50 -0
  353. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetObjectTorrentCommand.d.ts +58 -0
  354. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/GetPublicAccessBlockCommand.d.ts +51 -0
  355. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadBucketCommand.d.ts +47 -0
  356. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/HeadObjectCommand.d.ts +47 -0
  357. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketAnalyticsConfigurationsCommand.d.ts +51 -0
  358. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketIntelligentTieringConfigurationsCommand.d.ts +51 -0
  359. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketInventoryConfigurationsCommand.d.ts +51 -0
  360. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketMetricsConfigurationsCommand.d.ts +51 -0
  361. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListBucketsCommand.d.ts +47 -0
  362. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListDirectoryBucketsCommand.d.ts +51 -0
  363. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListMultipartUploadsCommand.d.ts +51 -0
  364. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectVersionsCommand.d.ts +51 -0
  365. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsCommand.d.ts +47 -0
  366. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListObjectsV2Command.d.ts +47 -0
  367. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/ListPartsCommand.d.ts +47 -0
  368. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAccelerateConfigurationCommand.d.ts +47 -0
  369. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAclCommand.d.ts +45 -0
  370. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketAnalyticsConfigurationCommand.d.ts +47 -0
  371. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketCorsCommand.d.ts +45 -0
  372. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketEncryptionCommand.d.ts +46 -0
  373. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketIntelligentTieringConfigurationCommand.d.ts +47 -0
  374. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketInventoryConfigurationCommand.d.ts +47 -0
  375. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +51 -0
  376. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketLoggingCommand.d.ts +45 -0
  377. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketMetricsConfigurationCommand.d.ts +47 -0
  378. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketNotificationConfigurationCommand.d.ts +47 -0
  379. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketOwnershipControlsCommand.d.ts +47 -0
  380. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +45 -0
  381. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +46 -0
  382. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketRequestPaymentCommand.d.ts +47 -0
  383. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +45 -0
  384. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +46 -0
  385. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutBucketWebsiteCommand.d.ts +45 -0
  386. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectAclCommand.d.ts +47 -0
  387. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectCommand.d.ts +53 -0
  388. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLegalHoldCommand.d.ts +51 -0
  389. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectLockConfigurationCommand.d.ts +51 -0
  390. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectRetentionCommand.d.ts +51 -0
  391. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutObjectTaggingCommand.d.ts +50 -0
  392. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +46 -0
  393. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/RestoreObjectCommand.d.ts +47 -0
  394. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/SelectObjectContentCommand.d.ts +51 -0
  395. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCommand.d.ts +53 -0
  396. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/UploadPartCopyCommand.d.ts +50 -0
  397. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/WriteGetObjectResponseCommand.d.ts +54 -0
  398. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/commands/index.d.ts +98 -0
  399. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +94 -0
  400. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  401. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  402. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  403. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/index.d.ts +10 -0
  404. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/S3ServiceException.d.ts +9 -0
  405. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/index.d.ts +2 -0
  406. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_0.d.ts +2074 -0
  407. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/models/models_1.d.ts +742 -0
  408. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
  409. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListBucketsPaginator.d.ts +11 -0
  410. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListDirectoryBucketsPaginator.d.ts +11 -0
  411. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListObjectsV2Paginator.d.ts +11 -0
  412. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/ListPartsPaginator.d.ts +11 -0
  413. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/pagination/index.d.ts +5 -0
  414. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/protocols/Aws_restXml.d.ts +1185 -0
  415. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.browser.d.ts +145 -0
  416. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.d.ts +147 -0
  417. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.native.d.ts +133 -0
  418. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeConfig.shared.d.ts +36 -0
  419. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  420. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/index.d.ts +4 -0
  421. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketExists.d.ts +11 -0
  422. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForBucketNotExists.d.ts +11 -0
  423. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectExists.d.ts +11 -0
  424. package/dist/node_modules/@aws-sdk/client-s3/dist-types/ts3.4/waiters/waitForObjectNotExists.d.ts +11 -0
  425. package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/index.d.ts +4 -0
  426. package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketExists.d.ts +14 -0
  427. package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForBucketNotExists.d.ts +14 -0
  428. package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectExists.d.ts +14 -0
  429. package/dist/node_modules/@aws-sdk/client-s3/dist-types/waiters/waitForObjectNotExists.d.ts +14 -0
  430. package/dist/node_modules/@aws-sdk/client-s3/package.json +1 -0
  431. package/dist/node_modules/mime-match/.travis.yml +11 -0
  432. package/dist/node_modules/mime-match/example.js +17 -0
  433. package/dist/node_modules/mime-match/index.js +1 -0
  434. package/dist/node_modules/mime-match/package.json +1 -0
  435. package/dist/node_modules/mime-match/test.js +45 -0
  436. package/dist/node_modules/mkdirp/LICENSE +21 -0
  437. package/dist/node_modules/mkdirp/bin/cmd.js +33 -0
  438. package/dist/node_modules/mkdirp/bin/usage.txt +12 -0
  439. package/dist/node_modules/mkdirp/index.js +1 -0
  440. package/dist/node_modules/mkdirp/package.json +1 -0
  441. package/dist/node_modules/mkdirp/readme.markdown +100 -0
  442. package/dist/node_modules/multer-aliyun-oss/index.js +74 -0
  443. package/dist/node_modules/multer-aliyun-oss/package.json +1 -0
  444. package/dist/node_modules/multer-cos/LICENSE +24 -0
  445. package/dist/node_modules/multer-cos/demo/index.js +39 -0
  446. package/dist/node_modules/multer-cos/demo/myMulter.js +88 -0
  447. package/dist/node_modules/multer-cos/index.js +220 -0
  448. package/dist/node_modules/multer-cos/package.json +1 -0
  449. package/dist/node_modules/multer-s3/.gitattributes +1 -0
  450. package/dist/node_modules/multer-s3/.travis.yml +6 -0
  451. package/dist/node_modules/multer-s3/LICENSE +22 -0
  452. package/dist/node_modules/multer-s3/index.js +5 -0
  453. package/dist/node_modules/multer-s3/package.json +1 -0
  454. package/dist/node_modules/multer-s3/test/basic.js +293 -0
  455. package/dist/node_modules/multer-s3/test/files/a.txt +1 -0
  456. package/dist/node_modules/multer-s3/test/files/test.svg +3 -0
  457. package/dist/node_modules/multer-s3/test/files/test2.svg +9 -0
  458. package/dist/node_modules/multer-s3/test/util/mock-s3.js +17 -0
  459. package/dist/server/FileModel.d.ts +4 -0
  460. package/dist/server/FileModel.js +45 -0
  461. package/dist/server/actions/attachments.d.ts +3 -0
  462. package/dist/server/actions/attachments.js +183 -0
  463. package/dist/server/actions/index.d.ts +3 -0
  464. package/dist/server/actions/index.js +39 -0
  465. package/dist/server/collections/attachments.d.ts +2 -0
  466. package/dist/server/collections/attachments.js +87 -0
  467. package/dist/server/collections/storages.d.ts +2 -0
  468. package/dist/server/collections/storages.js +85 -0
  469. package/dist/server/constants.d.ts +7 -0
  470. package/dist/server/constants.js +45 -0
  471. package/dist/server/index.d.ts +2 -0
  472. package/dist/server/index.js +39 -0
  473. package/dist/server/migrations/20230831160742-fix-attachment-field.d.ts +5 -0
  474. package/dist/server/migrations/20230831160742-fix-attachment-field.js +62 -0
  475. package/dist/server/migrations/20231120142523-fix-storage.d.ts +5 -0
  476. package/dist/server/migrations/20231120142523-fix-storage.js +63 -0
  477. package/dist/server/migrations/20240306223006-update-target.d.ts +6 -0
  478. package/dist/server/migrations/20240306223006-update-target.js +45 -0
  479. package/dist/server/rules/index.d.ts +1 -0
  480. package/dist/server/rules/index.js +37 -0
  481. package/dist/server/rules/mimetype.d.ts +1 -0
  482. package/dist/server/rules/mimetype.js +36 -0
  483. package/dist/server/server.d.ts +11 -0
  484. package/dist/server/server.js +130 -0
  485. package/dist/server/storages/ali-oss.d.ts +18 -0
  486. package/dist/server/storages/ali-oss.js +55 -0
  487. package/dist/server/storages/index.d.ts +33 -0
  488. package/dist/server/storages/index.js +52 -0
  489. package/dist/server/storages/local.d.ts +16 -0
  490. package/dist/server/storages/local.js +87 -0
  491. package/dist/server/storages/s3.d.ts +19 -0
  492. package/dist/server/storages/s3.js +82 -0
  493. package/dist/server/storages/tx-cos.d.ts +19 -0
  494. package/dist/server/storages/tx-cos.js +61 -0
  495. package/dist/server/utils.d.ts +2 -0
  496. package/dist/server/utils.js +53 -0
  497. package/dist/swagger/index.json +81 -0
  498. package/package.json +46 -0
  499. package/server.d.ts +2 -0
  500. package/server.js +1 -0
@@ -0,0 +1,2074 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { StreamingBlobTypes } from "@smithy/types";
3
+ import { S3ServiceException as __BaseException } from "./S3ServiceException";
4
+ export interface AbortIncompleteMultipartUpload {
5
+ DaysAfterInitiation?: number | undefined;
6
+ }
7
+ export declare const RequestCharged: {
8
+ readonly requester: "requester";
9
+ };
10
+ export type RequestCharged =
11
+ (typeof RequestCharged)[keyof typeof RequestCharged];
12
+ export interface AbortMultipartUploadOutput {
13
+ RequestCharged?: RequestCharged | undefined;
14
+ }
15
+ export declare const RequestPayer: {
16
+ readonly requester: "requester";
17
+ };
18
+ export type RequestPayer = (typeof RequestPayer)[keyof typeof RequestPayer];
19
+ export interface AbortMultipartUploadRequest {
20
+ Bucket: string | undefined;
21
+ Key: string | undefined;
22
+ UploadId: string | undefined;
23
+ RequestPayer?: RequestPayer | undefined;
24
+ ExpectedBucketOwner?: string | undefined;
25
+ IfMatchInitiatedTime?: Date | undefined;
26
+ }
27
+ export declare class NoSuchUpload extends __BaseException {
28
+ readonly name: "NoSuchUpload";
29
+ readonly $fault: "client";
30
+ constructor(opts: __ExceptionOptionType<NoSuchUpload, __BaseException>);
31
+ }
32
+ export declare const BucketAccelerateStatus: {
33
+ readonly Enabled: "Enabled";
34
+ readonly Suspended: "Suspended";
35
+ };
36
+ export type BucketAccelerateStatus =
37
+ (typeof BucketAccelerateStatus)[keyof typeof BucketAccelerateStatus];
38
+ export interface AccelerateConfiguration {
39
+ Status?: BucketAccelerateStatus | undefined;
40
+ }
41
+ export declare const Type: {
42
+ readonly AmazonCustomerByEmail: "AmazonCustomerByEmail";
43
+ readonly CanonicalUser: "CanonicalUser";
44
+ readonly Group: "Group";
45
+ };
46
+ export type Type = (typeof Type)[keyof typeof Type];
47
+ export interface Grantee {
48
+ DisplayName?: string | undefined;
49
+ EmailAddress?: string | undefined;
50
+ ID?: string | undefined;
51
+ URI?: string | undefined;
52
+ Type: Type | undefined;
53
+ }
54
+ export declare const Permission: {
55
+ readonly FULL_CONTROL: "FULL_CONTROL";
56
+ readonly READ: "READ";
57
+ readonly READ_ACP: "READ_ACP";
58
+ readonly WRITE: "WRITE";
59
+ readonly WRITE_ACP: "WRITE_ACP";
60
+ };
61
+ export type Permission = (typeof Permission)[keyof typeof Permission];
62
+ export interface Grant {
63
+ Grantee?: Grantee | undefined;
64
+ Permission?: Permission | undefined;
65
+ }
66
+ export interface Owner {
67
+ DisplayName?: string | undefined;
68
+ ID?: string | undefined;
69
+ }
70
+ export interface AccessControlPolicy {
71
+ Grants?: Grant[] | undefined;
72
+ Owner?: Owner | undefined;
73
+ }
74
+ export declare const OwnerOverride: {
75
+ readonly Destination: "Destination";
76
+ };
77
+ export type OwnerOverride = (typeof OwnerOverride)[keyof typeof OwnerOverride];
78
+ export interface AccessControlTranslation {
79
+ Owner: OwnerOverride | undefined;
80
+ }
81
+ export declare const ServerSideEncryption: {
82
+ readonly AES256: "AES256";
83
+ readonly aws_kms: "aws:kms";
84
+ readonly aws_kms_dsse: "aws:kms:dsse";
85
+ };
86
+ export type ServerSideEncryption =
87
+ (typeof ServerSideEncryption)[keyof typeof ServerSideEncryption];
88
+ export interface CompleteMultipartUploadOutput {
89
+ Location?: string | undefined;
90
+ Bucket?: string | undefined;
91
+ Key?: string | undefined;
92
+ Expiration?: string | undefined;
93
+ ETag?: string | undefined;
94
+ ChecksumCRC32?: string | undefined;
95
+ ChecksumCRC32C?: string | undefined;
96
+ ChecksumSHA1?: string | undefined;
97
+ ChecksumSHA256?: string | undefined;
98
+ ServerSideEncryption?: ServerSideEncryption | undefined;
99
+ VersionId?: string | undefined;
100
+ SSEKMSKeyId?: string | undefined;
101
+ BucketKeyEnabled?: boolean | undefined;
102
+ RequestCharged?: RequestCharged | undefined;
103
+ }
104
+ export interface CompletedPart {
105
+ ETag?: string | undefined;
106
+ ChecksumCRC32?: string | undefined;
107
+ ChecksumCRC32C?: string | undefined;
108
+ ChecksumSHA1?: string | undefined;
109
+ ChecksumSHA256?: string | undefined;
110
+ PartNumber?: number | undefined;
111
+ }
112
+ export interface CompletedMultipartUpload {
113
+ Parts?: CompletedPart[] | undefined;
114
+ }
115
+ export interface CompleteMultipartUploadRequest {
116
+ Bucket: string | undefined;
117
+ Key: string | undefined;
118
+ MultipartUpload?: CompletedMultipartUpload | undefined;
119
+ UploadId: string | undefined;
120
+ ChecksumCRC32?: string | undefined;
121
+ ChecksumCRC32C?: string | undefined;
122
+ ChecksumSHA1?: string | undefined;
123
+ ChecksumSHA256?: string | undefined;
124
+ RequestPayer?: RequestPayer | undefined;
125
+ ExpectedBucketOwner?: string | undefined;
126
+ IfMatch?: string | undefined;
127
+ IfNoneMatch?: string | undefined;
128
+ SSECustomerAlgorithm?: string | undefined;
129
+ SSECustomerKey?: string | undefined;
130
+ SSECustomerKeyMD5?: string | undefined;
131
+ }
132
+ export interface CopyObjectResult {
133
+ ETag?: string | undefined;
134
+ LastModified?: Date | undefined;
135
+ ChecksumCRC32?: string | undefined;
136
+ ChecksumCRC32C?: string | undefined;
137
+ ChecksumSHA1?: string | undefined;
138
+ ChecksumSHA256?: string | undefined;
139
+ }
140
+ export interface CopyObjectOutput {
141
+ CopyObjectResult?: CopyObjectResult | undefined;
142
+ Expiration?: string | undefined;
143
+ CopySourceVersionId?: string | undefined;
144
+ VersionId?: string | undefined;
145
+ ServerSideEncryption?: ServerSideEncryption | undefined;
146
+ SSECustomerAlgorithm?: string | undefined;
147
+ SSECustomerKeyMD5?: string | undefined;
148
+ SSEKMSKeyId?: string | undefined;
149
+ SSEKMSEncryptionContext?: string | undefined;
150
+ BucketKeyEnabled?: boolean | undefined;
151
+ RequestCharged?: RequestCharged | undefined;
152
+ }
153
+ export declare const ObjectCannedACL: {
154
+ readonly authenticated_read: "authenticated-read";
155
+ readonly aws_exec_read: "aws-exec-read";
156
+ readonly bucket_owner_full_control: "bucket-owner-full-control";
157
+ readonly bucket_owner_read: "bucket-owner-read";
158
+ readonly private: "private";
159
+ readonly public_read: "public-read";
160
+ readonly public_read_write: "public-read-write";
161
+ };
162
+ export type ObjectCannedACL =
163
+ (typeof ObjectCannedACL)[keyof typeof ObjectCannedACL];
164
+ export declare const ChecksumAlgorithm: {
165
+ readonly CRC32: "CRC32";
166
+ readonly CRC32C: "CRC32C";
167
+ readonly SHA1: "SHA1";
168
+ readonly SHA256: "SHA256";
169
+ };
170
+ export type ChecksumAlgorithm =
171
+ (typeof ChecksumAlgorithm)[keyof typeof ChecksumAlgorithm];
172
+ export declare const MetadataDirective: {
173
+ readonly COPY: "COPY";
174
+ readonly REPLACE: "REPLACE";
175
+ };
176
+ export type MetadataDirective =
177
+ (typeof MetadataDirective)[keyof typeof MetadataDirective];
178
+ export declare const ObjectLockLegalHoldStatus: {
179
+ readonly OFF: "OFF";
180
+ readonly ON: "ON";
181
+ };
182
+ export type ObjectLockLegalHoldStatus =
183
+ (typeof ObjectLockLegalHoldStatus)[keyof typeof ObjectLockLegalHoldStatus];
184
+ export declare const ObjectLockMode: {
185
+ readonly COMPLIANCE: "COMPLIANCE";
186
+ readonly GOVERNANCE: "GOVERNANCE";
187
+ };
188
+ export type ObjectLockMode =
189
+ (typeof ObjectLockMode)[keyof typeof ObjectLockMode];
190
+ export declare const StorageClass: {
191
+ readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
192
+ readonly EXPRESS_ONEZONE: "EXPRESS_ONEZONE";
193
+ readonly GLACIER: "GLACIER";
194
+ readonly GLACIER_IR: "GLACIER_IR";
195
+ readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
196
+ readonly ONEZONE_IA: "ONEZONE_IA";
197
+ readonly OUTPOSTS: "OUTPOSTS";
198
+ readonly REDUCED_REDUNDANCY: "REDUCED_REDUNDANCY";
199
+ readonly SNOW: "SNOW";
200
+ readonly STANDARD: "STANDARD";
201
+ readonly STANDARD_IA: "STANDARD_IA";
202
+ };
203
+ export type StorageClass = (typeof StorageClass)[keyof typeof StorageClass];
204
+ export declare const TaggingDirective: {
205
+ readonly COPY: "COPY";
206
+ readonly REPLACE: "REPLACE";
207
+ };
208
+ export type TaggingDirective =
209
+ (typeof TaggingDirective)[keyof typeof TaggingDirective];
210
+ export interface CopyObjectRequest {
211
+ ACL?: ObjectCannedACL | undefined;
212
+ Bucket: string | undefined;
213
+ CacheControl?: string | undefined;
214
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
215
+ ContentDisposition?: string | undefined;
216
+ ContentEncoding?: string | undefined;
217
+ ContentLanguage?: string | undefined;
218
+ ContentType?: string | undefined;
219
+ CopySource: string | undefined;
220
+ CopySourceIfMatch?: string | undefined;
221
+ CopySourceIfModifiedSince?: Date | undefined;
222
+ CopySourceIfNoneMatch?: string | undefined;
223
+ CopySourceIfUnmodifiedSince?: Date | undefined;
224
+ Expires?: Date | undefined;
225
+ GrantFullControl?: string | undefined;
226
+ GrantRead?: string | undefined;
227
+ GrantReadACP?: string | undefined;
228
+ GrantWriteACP?: string | undefined;
229
+ Key: string | undefined;
230
+ Metadata?: Record<string, string> | undefined;
231
+ MetadataDirective?: MetadataDirective | undefined;
232
+ TaggingDirective?: TaggingDirective | undefined;
233
+ ServerSideEncryption?: ServerSideEncryption | undefined;
234
+ StorageClass?: StorageClass | undefined;
235
+ WebsiteRedirectLocation?: string | undefined;
236
+ SSECustomerAlgorithm?: string | undefined;
237
+ SSECustomerKey?: string | undefined;
238
+ SSECustomerKeyMD5?: string | undefined;
239
+ SSEKMSKeyId?: string | undefined;
240
+ SSEKMSEncryptionContext?: string | undefined;
241
+ BucketKeyEnabled?: boolean | undefined;
242
+ CopySourceSSECustomerAlgorithm?: string | undefined;
243
+ CopySourceSSECustomerKey?: string | undefined;
244
+ CopySourceSSECustomerKeyMD5?: string | undefined;
245
+ RequestPayer?: RequestPayer | undefined;
246
+ Tagging?: string | undefined;
247
+ ObjectLockMode?: ObjectLockMode | undefined;
248
+ ObjectLockRetainUntilDate?: Date | undefined;
249
+ ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | undefined;
250
+ ExpectedBucketOwner?: string | undefined;
251
+ ExpectedSourceBucketOwner?: string | undefined;
252
+ }
253
+ export declare class ObjectNotInActiveTierError extends __BaseException {
254
+ readonly name: "ObjectNotInActiveTierError";
255
+ readonly $fault: "client";
256
+ constructor(
257
+ opts: __ExceptionOptionType<ObjectNotInActiveTierError, __BaseException>
258
+ );
259
+ }
260
+ export declare class BucketAlreadyExists extends __BaseException {
261
+ readonly name: "BucketAlreadyExists";
262
+ readonly $fault: "client";
263
+ constructor(
264
+ opts: __ExceptionOptionType<BucketAlreadyExists, __BaseException>
265
+ );
266
+ }
267
+ export declare class BucketAlreadyOwnedByYou extends __BaseException {
268
+ readonly name: "BucketAlreadyOwnedByYou";
269
+ readonly $fault: "client";
270
+ constructor(
271
+ opts: __ExceptionOptionType<BucketAlreadyOwnedByYou, __BaseException>
272
+ );
273
+ }
274
+ export interface CreateBucketOutput {
275
+ Location?: string | undefined;
276
+ }
277
+ export declare const BucketCannedACL: {
278
+ readonly authenticated_read: "authenticated-read";
279
+ readonly private: "private";
280
+ readonly public_read: "public-read";
281
+ readonly public_read_write: "public-read-write";
282
+ };
283
+ export type BucketCannedACL =
284
+ (typeof BucketCannedACL)[keyof typeof BucketCannedACL];
285
+ export declare const DataRedundancy: {
286
+ readonly SingleAvailabilityZone: "SingleAvailabilityZone";
287
+ readonly SingleLocalZone: "SingleLocalZone";
288
+ };
289
+ export type DataRedundancy =
290
+ (typeof DataRedundancy)[keyof typeof DataRedundancy];
291
+ export declare const BucketType: {
292
+ readonly Directory: "Directory";
293
+ };
294
+ export type BucketType = (typeof BucketType)[keyof typeof BucketType];
295
+ export interface BucketInfo {
296
+ DataRedundancy?: DataRedundancy | undefined;
297
+ Type?: BucketType | undefined;
298
+ }
299
+ export declare const LocationType: {
300
+ readonly AvailabilityZone: "AvailabilityZone";
301
+ readonly LocalZone: "LocalZone";
302
+ };
303
+ export type LocationType = (typeof LocationType)[keyof typeof LocationType];
304
+ export interface LocationInfo {
305
+ Type?: LocationType | undefined;
306
+ Name?: string | undefined;
307
+ }
308
+ export declare const BucketLocationConstraint: {
309
+ readonly EU: "EU";
310
+ readonly af_south_1: "af-south-1";
311
+ readonly ap_east_1: "ap-east-1";
312
+ readonly ap_northeast_1: "ap-northeast-1";
313
+ readonly ap_northeast_2: "ap-northeast-2";
314
+ readonly ap_northeast_3: "ap-northeast-3";
315
+ readonly ap_south_1: "ap-south-1";
316
+ readonly ap_south_2: "ap-south-2";
317
+ readonly ap_southeast_1: "ap-southeast-1";
318
+ readonly ap_southeast_2: "ap-southeast-2";
319
+ readonly ap_southeast_3: "ap-southeast-3";
320
+ readonly ca_central_1: "ca-central-1";
321
+ readonly cn_north_1: "cn-north-1";
322
+ readonly cn_northwest_1: "cn-northwest-1";
323
+ readonly eu_central_1: "eu-central-1";
324
+ readonly eu_north_1: "eu-north-1";
325
+ readonly eu_south_1: "eu-south-1";
326
+ readonly eu_south_2: "eu-south-2";
327
+ readonly eu_west_1: "eu-west-1";
328
+ readonly eu_west_2: "eu-west-2";
329
+ readonly eu_west_3: "eu-west-3";
330
+ readonly me_south_1: "me-south-1";
331
+ readonly sa_east_1: "sa-east-1";
332
+ readonly us_east_2: "us-east-2";
333
+ readonly us_gov_east_1: "us-gov-east-1";
334
+ readonly us_gov_west_1: "us-gov-west-1";
335
+ readonly us_west_1: "us-west-1";
336
+ readonly us_west_2: "us-west-2";
337
+ };
338
+ export type BucketLocationConstraint =
339
+ (typeof BucketLocationConstraint)[keyof typeof BucketLocationConstraint];
340
+ export interface CreateBucketConfiguration {
341
+ LocationConstraint?: BucketLocationConstraint | undefined;
342
+ Location?: LocationInfo | undefined;
343
+ Bucket?: BucketInfo | undefined;
344
+ }
345
+ export declare const ObjectOwnership: {
346
+ readonly BucketOwnerEnforced: "BucketOwnerEnforced";
347
+ readonly BucketOwnerPreferred: "BucketOwnerPreferred";
348
+ readonly ObjectWriter: "ObjectWriter";
349
+ };
350
+ export type ObjectOwnership =
351
+ (typeof ObjectOwnership)[keyof typeof ObjectOwnership];
352
+ export interface CreateBucketRequest {
353
+ ACL?: BucketCannedACL | undefined;
354
+ Bucket: string | undefined;
355
+ CreateBucketConfiguration?: CreateBucketConfiguration | undefined;
356
+ GrantFullControl?: string | undefined;
357
+ GrantRead?: string | undefined;
358
+ GrantReadACP?: string | undefined;
359
+ GrantWrite?: string | undefined;
360
+ GrantWriteACP?: string | undefined;
361
+ ObjectLockEnabledForBucket?: boolean | undefined;
362
+ ObjectOwnership?: ObjectOwnership | undefined;
363
+ }
364
+ export interface S3TablesDestination {
365
+ TableBucketArn: string | undefined;
366
+ TableName: string | undefined;
367
+ }
368
+ export interface MetadataTableConfiguration {
369
+ S3TablesDestination: S3TablesDestination | undefined;
370
+ }
371
+ export interface CreateBucketMetadataTableConfigurationRequest {
372
+ Bucket: string | undefined;
373
+ ContentMD5?: string | undefined;
374
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
375
+ MetadataTableConfiguration: MetadataTableConfiguration | undefined;
376
+ ExpectedBucketOwner?: string | undefined;
377
+ }
378
+ export interface CreateMultipartUploadOutput {
379
+ AbortDate?: Date | undefined;
380
+ AbortRuleId?: string | undefined;
381
+ Bucket?: string | undefined;
382
+ Key?: string | undefined;
383
+ UploadId?: string | undefined;
384
+ ServerSideEncryption?: ServerSideEncryption | undefined;
385
+ SSECustomerAlgorithm?: string | undefined;
386
+ SSECustomerKeyMD5?: string | undefined;
387
+ SSEKMSKeyId?: string | undefined;
388
+ SSEKMSEncryptionContext?: string | undefined;
389
+ BucketKeyEnabled?: boolean | undefined;
390
+ RequestCharged?: RequestCharged | undefined;
391
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
392
+ }
393
+ export interface CreateMultipartUploadRequest {
394
+ ACL?: ObjectCannedACL | undefined;
395
+ Bucket: string | undefined;
396
+ CacheControl?: string | undefined;
397
+ ContentDisposition?: string | undefined;
398
+ ContentEncoding?: string | undefined;
399
+ ContentLanguage?: string | undefined;
400
+ ContentType?: string | undefined;
401
+ Expires?: Date | undefined;
402
+ GrantFullControl?: string | undefined;
403
+ GrantRead?: string | undefined;
404
+ GrantReadACP?: string | undefined;
405
+ GrantWriteACP?: string | undefined;
406
+ Key: string | undefined;
407
+ Metadata?: Record<string, string> | undefined;
408
+ ServerSideEncryption?: ServerSideEncryption | undefined;
409
+ StorageClass?: StorageClass | undefined;
410
+ WebsiteRedirectLocation?: string | undefined;
411
+ SSECustomerAlgorithm?: string | undefined;
412
+ SSECustomerKey?: string | undefined;
413
+ SSECustomerKeyMD5?: string | undefined;
414
+ SSEKMSKeyId?: string | undefined;
415
+ SSEKMSEncryptionContext?: string | undefined;
416
+ BucketKeyEnabled?: boolean | undefined;
417
+ RequestPayer?: RequestPayer | undefined;
418
+ Tagging?: string | undefined;
419
+ ObjectLockMode?: ObjectLockMode | undefined;
420
+ ObjectLockRetainUntilDate?: Date | undefined;
421
+ ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | undefined;
422
+ ExpectedBucketOwner?: string | undefined;
423
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
424
+ }
425
+ export interface SessionCredentials {
426
+ AccessKeyId: string | undefined;
427
+ SecretAccessKey: string | undefined;
428
+ SessionToken: string | undefined;
429
+ Expiration: Date | undefined;
430
+ }
431
+ export interface CreateSessionOutput {
432
+ ServerSideEncryption?: ServerSideEncryption | undefined;
433
+ SSEKMSKeyId?: string | undefined;
434
+ SSEKMSEncryptionContext?: string | undefined;
435
+ BucketKeyEnabled?: boolean | undefined;
436
+ Credentials: SessionCredentials | undefined;
437
+ }
438
+ export declare const SessionMode: {
439
+ readonly ReadOnly: "ReadOnly";
440
+ readonly ReadWrite: "ReadWrite";
441
+ };
442
+ export type SessionMode = (typeof SessionMode)[keyof typeof SessionMode];
443
+ export interface CreateSessionRequest {
444
+ SessionMode?: SessionMode | undefined;
445
+ Bucket: string | undefined;
446
+ ServerSideEncryption?: ServerSideEncryption | undefined;
447
+ SSEKMSKeyId?: string | undefined;
448
+ SSEKMSEncryptionContext?: string | undefined;
449
+ BucketKeyEnabled?: boolean | undefined;
450
+ }
451
+ export declare class NoSuchBucket extends __BaseException {
452
+ readonly name: "NoSuchBucket";
453
+ readonly $fault: "client";
454
+ constructor(opts: __ExceptionOptionType<NoSuchBucket, __BaseException>);
455
+ }
456
+ export interface DeleteBucketRequest {
457
+ Bucket: string | undefined;
458
+ ExpectedBucketOwner?: string | undefined;
459
+ }
460
+ export interface DeleteBucketAnalyticsConfigurationRequest {
461
+ Bucket: string | undefined;
462
+ Id: string | undefined;
463
+ ExpectedBucketOwner?: string | undefined;
464
+ }
465
+ export interface DeleteBucketCorsRequest {
466
+ Bucket: string | undefined;
467
+ ExpectedBucketOwner?: string | undefined;
468
+ }
469
+ export interface DeleteBucketEncryptionRequest {
470
+ Bucket: string | undefined;
471
+ ExpectedBucketOwner?: string | undefined;
472
+ }
473
+ export interface DeleteBucketIntelligentTieringConfigurationRequest {
474
+ Bucket: string | undefined;
475
+ Id: string | undefined;
476
+ }
477
+ export interface DeleteBucketInventoryConfigurationRequest {
478
+ Bucket: string | undefined;
479
+ Id: string | undefined;
480
+ ExpectedBucketOwner?: string | undefined;
481
+ }
482
+ export interface DeleteBucketLifecycleRequest {
483
+ Bucket: string | undefined;
484
+ ExpectedBucketOwner?: string | undefined;
485
+ }
486
+ export interface DeleteBucketMetadataTableConfigurationRequest {
487
+ Bucket: string | undefined;
488
+ ExpectedBucketOwner?: string | undefined;
489
+ }
490
+ export interface DeleteBucketMetricsConfigurationRequest {
491
+ Bucket: string | undefined;
492
+ Id: string | undefined;
493
+ ExpectedBucketOwner?: string | undefined;
494
+ }
495
+ export interface DeleteBucketOwnershipControlsRequest {
496
+ Bucket: string | undefined;
497
+ ExpectedBucketOwner?: string | undefined;
498
+ }
499
+ export interface DeleteBucketPolicyRequest {
500
+ Bucket: string | undefined;
501
+ ExpectedBucketOwner?: string | undefined;
502
+ }
503
+ export interface DeleteBucketReplicationRequest {
504
+ Bucket: string | undefined;
505
+ ExpectedBucketOwner?: string | undefined;
506
+ }
507
+ export interface DeleteBucketTaggingRequest {
508
+ Bucket: string | undefined;
509
+ ExpectedBucketOwner?: string | undefined;
510
+ }
511
+ export interface DeleteBucketWebsiteRequest {
512
+ Bucket: string | undefined;
513
+ ExpectedBucketOwner?: string | undefined;
514
+ }
515
+ export interface DeleteObjectOutput {
516
+ DeleteMarker?: boolean | undefined;
517
+ VersionId?: string | undefined;
518
+ RequestCharged?: RequestCharged | undefined;
519
+ }
520
+ export interface DeleteObjectRequest {
521
+ Bucket: string | undefined;
522
+ Key: string | undefined;
523
+ MFA?: string | undefined;
524
+ VersionId?: string | undefined;
525
+ RequestPayer?: RequestPayer | undefined;
526
+ BypassGovernanceRetention?: boolean | undefined;
527
+ ExpectedBucketOwner?: string | undefined;
528
+ IfMatch?: string | undefined;
529
+ IfMatchLastModifiedTime?: Date | undefined;
530
+ IfMatchSize?: number | undefined;
531
+ }
532
+ export interface DeletedObject {
533
+ Key?: string | undefined;
534
+ VersionId?: string | undefined;
535
+ DeleteMarker?: boolean | undefined;
536
+ DeleteMarkerVersionId?: string | undefined;
537
+ }
538
+ export interface _Error {
539
+ Key?: string | undefined;
540
+ VersionId?: string | undefined;
541
+ Code?: string | undefined;
542
+ Message?: string | undefined;
543
+ }
544
+ export interface DeleteObjectsOutput {
545
+ Deleted?: DeletedObject[] | undefined;
546
+ RequestCharged?: RequestCharged | undefined;
547
+ Errors?: _Error[] | undefined;
548
+ }
549
+ export interface ObjectIdentifier {
550
+ Key: string | undefined;
551
+ VersionId?: string | undefined;
552
+ ETag?: string | undefined;
553
+ LastModifiedTime?: Date | undefined;
554
+ Size?: number | undefined;
555
+ }
556
+ export interface Delete {
557
+ Objects: ObjectIdentifier[] | undefined;
558
+ Quiet?: boolean | undefined;
559
+ }
560
+ export interface DeleteObjectsRequest {
561
+ Bucket: string | undefined;
562
+ Delete: Delete | undefined;
563
+ MFA?: string | undefined;
564
+ RequestPayer?: RequestPayer | undefined;
565
+ BypassGovernanceRetention?: boolean | undefined;
566
+ ExpectedBucketOwner?: string | undefined;
567
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
568
+ }
569
+ export interface DeleteObjectTaggingOutput {
570
+ VersionId?: string | undefined;
571
+ }
572
+ export interface DeleteObjectTaggingRequest {
573
+ Bucket: string | undefined;
574
+ Key: string | undefined;
575
+ VersionId?: string | undefined;
576
+ ExpectedBucketOwner?: string | undefined;
577
+ }
578
+ export interface DeletePublicAccessBlockRequest {
579
+ Bucket: string | undefined;
580
+ ExpectedBucketOwner?: string | undefined;
581
+ }
582
+ export interface GetBucketAccelerateConfigurationOutput {
583
+ Status?: BucketAccelerateStatus | undefined;
584
+ RequestCharged?: RequestCharged | undefined;
585
+ }
586
+ export interface GetBucketAccelerateConfigurationRequest {
587
+ Bucket: string | undefined;
588
+ ExpectedBucketOwner?: string | undefined;
589
+ RequestPayer?: RequestPayer | undefined;
590
+ }
591
+ export interface GetBucketAclOutput {
592
+ Owner?: Owner | undefined;
593
+ Grants?: Grant[] | undefined;
594
+ }
595
+ export interface GetBucketAclRequest {
596
+ Bucket: string | undefined;
597
+ ExpectedBucketOwner?: string | undefined;
598
+ }
599
+ export interface Tag {
600
+ Key: string | undefined;
601
+ Value: string | undefined;
602
+ }
603
+ export interface AnalyticsAndOperator {
604
+ Prefix?: string | undefined;
605
+ Tags?: Tag[] | undefined;
606
+ }
607
+ export type AnalyticsFilter =
608
+ | AnalyticsFilter.AndMember
609
+ | AnalyticsFilter.PrefixMember
610
+ | AnalyticsFilter.TagMember
611
+ | AnalyticsFilter.$UnknownMember;
612
+ export declare namespace AnalyticsFilter {
613
+ interface PrefixMember {
614
+ Prefix: string;
615
+ Tag?: never;
616
+ And?: never;
617
+ $unknown?: never;
618
+ }
619
+ interface TagMember {
620
+ Prefix?: never;
621
+ Tag: Tag;
622
+ And?: never;
623
+ $unknown?: never;
624
+ }
625
+ interface AndMember {
626
+ Prefix?: never;
627
+ Tag?: never;
628
+ And: AnalyticsAndOperator;
629
+ $unknown?: never;
630
+ }
631
+ interface $UnknownMember {
632
+ Prefix?: never;
633
+ Tag?: never;
634
+ And?: never;
635
+ $unknown: [string, any];
636
+ }
637
+ interface Visitor<T> {
638
+ Prefix: (value: string) => T;
639
+ Tag: (value: Tag) => T;
640
+ And: (value: AnalyticsAndOperator) => T;
641
+ _: (name: string, value: any) => T;
642
+ }
643
+ const visit: <T>(value: AnalyticsFilter, visitor: Visitor<T>) => T;
644
+ }
645
+ export declare const AnalyticsS3ExportFileFormat: {
646
+ readonly CSV: "CSV";
647
+ };
648
+ export type AnalyticsS3ExportFileFormat =
649
+ (typeof AnalyticsS3ExportFileFormat)[keyof typeof AnalyticsS3ExportFileFormat];
650
+ export interface AnalyticsS3BucketDestination {
651
+ Format: AnalyticsS3ExportFileFormat | undefined;
652
+ BucketAccountId?: string | undefined;
653
+ Bucket: string | undefined;
654
+ Prefix?: string | undefined;
655
+ }
656
+ export interface AnalyticsExportDestination {
657
+ S3BucketDestination: AnalyticsS3BucketDestination | undefined;
658
+ }
659
+ export declare const StorageClassAnalysisSchemaVersion: {
660
+ readonly V_1: "V_1";
661
+ };
662
+ export type StorageClassAnalysisSchemaVersion =
663
+ (typeof StorageClassAnalysisSchemaVersion)[keyof typeof StorageClassAnalysisSchemaVersion];
664
+ export interface StorageClassAnalysisDataExport {
665
+ OutputSchemaVersion: StorageClassAnalysisSchemaVersion | undefined;
666
+ Destination: AnalyticsExportDestination | undefined;
667
+ }
668
+ export interface StorageClassAnalysis {
669
+ DataExport?: StorageClassAnalysisDataExport | undefined;
670
+ }
671
+ export interface AnalyticsConfiguration {
672
+ Id: string | undefined;
673
+ Filter?: AnalyticsFilter | undefined;
674
+ StorageClassAnalysis: StorageClassAnalysis | undefined;
675
+ }
676
+ export interface GetBucketAnalyticsConfigurationOutput {
677
+ AnalyticsConfiguration?: AnalyticsConfiguration | undefined;
678
+ }
679
+ export interface GetBucketAnalyticsConfigurationRequest {
680
+ Bucket: string | undefined;
681
+ Id: string | undefined;
682
+ ExpectedBucketOwner?: string | undefined;
683
+ }
684
+ export interface CORSRule {
685
+ ID?: string | undefined;
686
+ AllowedHeaders?: string[] | undefined;
687
+ AllowedMethods: string[] | undefined;
688
+ AllowedOrigins: string[] | undefined;
689
+ ExposeHeaders?: string[] | undefined;
690
+ MaxAgeSeconds?: number | undefined;
691
+ }
692
+ export interface GetBucketCorsOutput {
693
+ CORSRules?: CORSRule[] | undefined;
694
+ }
695
+ export interface GetBucketCorsRequest {
696
+ Bucket: string | undefined;
697
+ ExpectedBucketOwner?: string | undefined;
698
+ }
699
+ export interface ServerSideEncryptionByDefault {
700
+ SSEAlgorithm: ServerSideEncryption | undefined;
701
+ KMSMasterKeyID?: string | undefined;
702
+ }
703
+ export interface ServerSideEncryptionRule {
704
+ ApplyServerSideEncryptionByDefault?:
705
+ | ServerSideEncryptionByDefault
706
+ | undefined;
707
+ BucketKeyEnabled?: boolean | undefined;
708
+ }
709
+ export interface ServerSideEncryptionConfiguration {
710
+ Rules: ServerSideEncryptionRule[] | undefined;
711
+ }
712
+ export interface GetBucketEncryptionOutput {
713
+ ServerSideEncryptionConfiguration?:
714
+ | ServerSideEncryptionConfiguration
715
+ | undefined;
716
+ }
717
+ export interface GetBucketEncryptionRequest {
718
+ Bucket: string | undefined;
719
+ ExpectedBucketOwner?: string | undefined;
720
+ }
721
+ export interface IntelligentTieringAndOperator {
722
+ Prefix?: string | undefined;
723
+ Tags?: Tag[] | undefined;
724
+ }
725
+ export interface IntelligentTieringFilter {
726
+ Prefix?: string | undefined;
727
+ Tag?: Tag | undefined;
728
+ And?: IntelligentTieringAndOperator | undefined;
729
+ }
730
+ export declare const IntelligentTieringStatus: {
731
+ readonly Disabled: "Disabled";
732
+ readonly Enabled: "Enabled";
733
+ };
734
+ export type IntelligentTieringStatus =
735
+ (typeof IntelligentTieringStatus)[keyof typeof IntelligentTieringStatus];
736
+ export declare const IntelligentTieringAccessTier: {
737
+ readonly ARCHIVE_ACCESS: "ARCHIVE_ACCESS";
738
+ readonly DEEP_ARCHIVE_ACCESS: "DEEP_ARCHIVE_ACCESS";
739
+ };
740
+ export type IntelligentTieringAccessTier =
741
+ (typeof IntelligentTieringAccessTier)[keyof typeof IntelligentTieringAccessTier];
742
+ export interface Tiering {
743
+ Days: number | undefined;
744
+ AccessTier: IntelligentTieringAccessTier | undefined;
745
+ }
746
+ export interface IntelligentTieringConfiguration {
747
+ Id: string | undefined;
748
+ Filter?: IntelligentTieringFilter | undefined;
749
+ Status: IntelligentTieringStatus | undefined;
750
+ Tierings: Tiering[] | undefined;
751
+ }
752
+ export interface GetBucketIntelligentTieringConfigurationOutput {
753
+ IntelligentTieringConfiguration?: IntelligentTieringConfiguration | undefined;
754
+ }
755
+ export interface GetBucketIntelligentTieringConfigurationRequest {
756
+ Bucket: string | undefined;
757
+ Id: string | undefined;
758
+ }
759
+ export interface SSEKMS {
760
+ KeyId: string | undefined;
761
+ }
762
+ export interface SSES3 {}
763
+ export interface InventoryEncryption {
764
+ SSES3?: SSES3 | undefined;
765
+ SSEKMS?: SSEKMS | undefined;
766
+ }
767
+ export declare const InventoryFormat: {
768
+ readonly CSV: "CSV";
769
+ readonly ORC: "ORC";
770
+ readonly Parquet: "Parquet";
771
+ };
772
+ export type InventoryFormat =
773
+ (typeof InventoryFormat)[keyof typeof InventoryFormat];
774
+ export interface InventoryS3BucketDestination {
775
+ AccountId?: string | undefined;
776
+ Bucket: string | undefined;
777
+ Format: InventoryFormat | undefined;
778
+ Prefix?: string | undefined;
779
+ Encryption?: InventoryEncryption | undefined;
780
+ }
781
+ export interface InventoryDestination {
782
+ S3BucketDestination: InventoryS3BucketDestination | undefined;
783
+ }
784
+ export interface InventoryFilter {
785
+ Prefix: string | undefined;
786
+ }
787
+ export declare const InventoryIncludedObjectVersions: {
788
+ readonly All: "All";
789
+ readonly Current: "Current";
790
+ };
791
+ export type InventoryIncludedObjectVersions =
792
+ (typeof InventoryIncludedObjectVersions)[keyof typeof InventoryIncludedObjectVersions];
793
+ export declare const InventoryOptionalField: {
794
+ readonly BucketKeyStatus: "BucketKeyStatus";
795
+ readonly ChecksumAlgorithm: "ChecksumAlgorithm";
796
+ readonly ETag: "ETag";
797
+ readonly EncryptionStatus: "EncryptionStatus";
798
+ readonly IntelligentTieringAccessTier: "IntelligentTieringAccessTier";
799
+ readonly IsMultipartUploaded: "IsMultipartUploaded";
800
+ readonly LastModifiedDate: "LastModifiedDate";
801
+ readonly ObjectAccessControlList: "ObjectAccessControlList";
802
+ readonly ObjectLockLegalHoldStatus: "ObjectLockLegalHoldStatus";
803
+ readonly ObjectLockMode: "ObjectLockMode";
804
+ readonly ObjectLockRetainUntilDate: "ObjectLockRetainUntilDate";
805
+ readonly ObjectOwner: "ObjectOwner";
806
+ readonly ReplicationStatus: "ReplicationStatus";
807
+ readonly Size: "Size";
808
+ readonly StorageClass: "StorageClass";
809
+ };
810
+ export type InventoryOptionalField =
811
+ (typeof InventoryOptionalField)[keyof typeof InventoryOptionalField];
812
+ export declare const InventoryFrequency: {
813
+ readonly Daily: "Daily";
814
+ readonly Weekly: "Weekly";
815
+ };
816
+ export type InventoryFrequency =
817
+ (typeof InventoryFrequency)[keyof typeof InventoryFrequency];
818
+ export interface InventorySchedule {
819
+ Frequency: InventoryFrequency | undefined;
820
+ }
821
+ export interface InventoryConfiguration {
822
+ Destination: InventoryDestination | undefined;
823
+ IsEnabled: boolean | undefined;
824
+ Filter?: InventoryFilter | undefined;
825
+ Id: string | undefined;
826
+ IncludedObjectVersions: InventoryIncludedObjectVersions | undefined;
827
+ OptionalFields?: InventoryOptionalField[] | undefined;
828
+ Schedule: InventorySchedule | undefined;
829
+ }
830
+ export interface GetBucketInventoryConfigurationOutput {
831
+ InventoryConfiguration?: InventoryConfiguration | undefined;
832
+ }
833
+ export interface GetBucketInventoryConfigurationRequest {
834
+ Bucket: string | undefined;
835
+ Id: string | undefined;
836
+ ExpectedBucketOwner?: string | undefined;
837
+ }
838
+ export interface LifecycleExpiration {
839
+ Date?: Date | undefined;
840
+ Days?: number | undefined;
841
+ ExpiredObjectDeleteMarker?: boolean | undefined;
842
+ }
843
+ export interface LifecycleRuleAndOperator {
844
+ Prefix?: string | undefined;
845
+ Tags?: Tag[] | undefined;
846
+ ObjectSizeGreaterThan?: number | undefined;
847
+ ObjectSizeLessThan?: number | undefined;
848
+ }
849
+ export interface LifecycleRuleFilter {
850
+ Prefix?: string | undefined;
851
+ Tag?: Tag | undefined;
852
+ ObjectSizeGreaterThan?: number | undefined;
853
+ ObjectSizeLessThan?: number | undefined;
854
+ And?: LifecycleRuleAndOperator | undefined;
855
+ }
856
+ export interface NoncurrentVersionExpiration {
857
+ NoncurrentDays?: number | undefined;
858
+ NewerNoncurrentVersions?: number | undefined;
859
+ }
860
+ export declare const TransitionStorageClass: {
861
+ readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
862
+ readonly GLACIER: "GLACIER";
863
+ readonly GLACIER_IR: "GLACIER_IR";
864
+ readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
865
+ readonly ONEZONE_IA: "ONEZONE_IA";
866
+ readonly STANDARD_IA: "STANDARD_IA";
867
+ };
868
+ export type TransitionStorageClass =
869
+ (typeof TransitionStorageClass)[keyof typeof TransitionStorageClass];
870
+ export interface NoncurrentVersionTransition {
871
+ NoncurrentDays?: number | undefined;
872
+ StorageClass?: TransitionStorageClass | undefined;
873
+ NewerNoncurrentVersions?: number | undefined;
874
+ }
875
+ export declare const ExpirationStatus: {
876
+ readonly Disabled: "Disabled";
877
+ readonly Enabled: "Enabled";
878
+ };
879
+ export type ExpirationStatus =
880
+ (typeof ExpirationStatus)[keyof typeof ExpirationStatus];
881
+ export interface Transition {
882
+ Date?: Date | undefined;
883
+ Days?: number | undefined;
884
+ StorageClass?: TransitionStorageClass | undefined;
885
+ }
886
+ export interface LifecycleRule {
887
+ Expiration?: LifecycleExpiration | undefined;
888
+ ID?: string | undefined;
889
+ Prefix?: string | undefined;
890
+ Filter?: LifecycleRuleFilter | undefined;
891
+ Status: ExpirationStatus | undefined;
892
+ Transitions?: Transition[] | undefined;
893
+ NoncurrentVersionTransitions?: NoncurrentVersionTransition[] | undefined;
894
+ NoncurrentVersionExpiration?: NoncurrentVersionExpiration | undefined;
895
+ AbortIncompleteMultipartUpload?: AbortIncompleteMultipartUpload | undefined;
896
+ }
897
+ export declare const TransitionDefaultMinimumObjectSize: {
898
+ readonly all_storage_classes_128K: "all_storage_classes_128K";
899
+ readonly varies_by_storage_class: "varies_by_storage_class";
900
+ };
901
+ export type TransitionDefaultMinimumObjectSize =
902
+ (typeof TransitionDefaultMinimumObjectSize)[keyof typeof TransitionDefaultMinimumObjectSize];
903
+ export interface GetBucketLifecycleConfigurationOutput {
904
+ Rules?: LifecycleRule[] | undefined;
905
+ TransitionDefaultMinimumObjectSize?:
906
+ | TransitionDefaultMinimumObjectSize
907
+ | undefined;
908
+ }
909
+ export interface GetBucketLifecycleConfigurationRequest {
910
+ Bucket: string | undefined;
911
+ ExpectedBucketOwner?: string | undefined;
912
+ }
913
+ export interface GetBucketLocationOutput {
914
+ LocationConstraint?: BucketLocationConstraint | undefined;
915
+ }
916
+ export interface GetBucketLocationRequest {
917
+ Bucket: string | undefined;
918
+ ExpectedBucketOwner?: string | undefined;
919
+ }
920
+ export declare const BucketLogsPermission: {
921
+ readonly FULL_CONTROL: "FULL_CONTROL";
922
+ readonly READ: "READ";
923
+ readonly WRITE: "WRITE";
924
+ };
925
+ export type BucketLogsPermission =
926
+ (typeof BucketLogsPermission)[keyof typeof BucketLogsPermission];
927
+ export interface TargetGrant {
928
+ Grantee?: Grantee | undefined;
929
+ Permission?: BucketLogsPermission | undefined;
930
+ }
931
+ export declare const PartitionDateSource: {
932
+ readonly DeliveryTime: "DeliveryTime";
933
+ readonly EventTime: "EventTime";
934
+ };
935
+ export type PartitionDateSource =
936
+ (typeof PartitionDateSource)[keyof typeof PartitionDateSource];
937
+ export interface PartitionedPrefix {
938
+ PartitionDateSource?: PartitionDateSource | undefined;
939
+ }
940
+ export interface SimplePrefix {}
941
+ export interface TargetObjectKeyFormat {
942
+ SimplePrefix?: SimplePrefix | undefined;
943
+ PartitionedPrefix?: PartitionedPrefix | undefined;
944
+ }
945
+ export interface LoggingEnabled {
946
+ TargetBucket: string | undefined;
947
+ TargetGrants?: TargetGrant[] | undefined;
948
+ TargetPrefix: string | undefined;
949
+ TargetObjectKeyFormat?: TargetObjectKeyFormat | undefined;
950
+ }
951
+ export interface GetBucketLoggingOutput {
952
+ LoggingEnabled?: LoggingEnabled | undefined;
953
+ }
954
+ export interface GetBucketLoggingRequest {
955
+ Bucket: string | undefined;
956
+ ExpectedBucketOwner?: string | undefined;
957
+ }
958
+ export interface ErrorDetails {
959
+ ErrorCode?: string | undefined;
960
+ ErrorMessage?: string | undefined;
961
+ }
962
+ export interface S3TablesDestinationResult {
963
+ TableBucketArn: string | undefined;
964
+ TableName: string | undefined;
965
+ TableArn: string | undefined;
966
+ TableNamespace: string | undefined;
967
+ }
968
+ export interface MetadataTableConfigurationResult {
969
+ S3TablesDestinationResult: S3TablesDestinationResult | undefined;
970
+ }
971
+ export interface GetBucketMetadataTableConfigurationResult {
972
+ MetadataTableConfigurationResult:
973
+ | MetadataTableConfigurationResult
974
+ | undefined;
975
+ Status: string | undefined;
976
+ Error?: ErrorDetails | undefined;
977
+ }
978
+ export interface GetBucketMetadataTableConfigurationOutput {
979
+ GetBucketMetadataTableConfigurationResult?:
980
+ | GetBucketMetadataTableConfigurationResult
981
+ | undefined;
982
+ }
983
+ export interface GetBucketMetadataTableConfigurationRequest {
984
+ Bucket: string | undefined;
985
+ ExpectedBucketOwner?: string | undefined;
986
+ }
987
+ export interface MetricsAndOperator {
988
+ Prefix?: string | undefined;
989
+ Tags?: Tag[] | undefined;
990
+ AccessPointArn?: string | undefined;
991
+ }
992
+ export type MetricsFilter =
993
+ | MetricsFilter.AccessPointArnMember
994
+ | MetricsFilter.AndMember
995
+ | MetricsFilter.PrefixMember
996
+ | MetricsFilter.TagMember
997
+ | MetricsFilter.$UnknownMember;
998
+ export declare namespace MetricsFilter {
999
+ interface PrefixMember {
1000
+ Prefix: string;
1001
+ Tag?: never;
1002
+ AccessPointArn?: never;
1003
+ And?: never;
1004
+ $unknown?: never;
1005
+ }
1006
+ interface TagMember {
1007
+ Prefix?: never;
1008
+ Tag: Tag;
1009
+ AccessPointArn?: never;
1010
+ And?: never;
1011
+ $unknown?: never;
1012
+ }
1013
+ interface AccessPointArnMember {
1014
+ Prefix?: never;
1015
+ Tag?: never;
1016
+ AccessPointArn: string;
1017
+ And?: never;
1018
+ $unknown?: never;
1019
+ }
1020
+ interface AndMember {
1021
+ Prefix?: never;
1022
+ Tag?: never;
1023
+ AccessPointArn?: never;
1024
+ And: MetricsAndOperator;
1025
+ $unknown?: never;
1026
+ }
1027
+ interface $UnknownMember {
1028
+ Prefix?: never;
1029
+ Tag?: never;
1030
+ AccessPointArn?: never;
1031
+ And?: never;
1032
+ $unknown: [string, any];
1033
+ }
1034
+ interface Visitor<T> {
1035
+ Prefix: (value: string) => T;
1036
+ Tag: (value: Tag) => T;
1037
+ AccessPointArn: (value: string) => T;
1038
+ And: (value: MetricsAndOperator) => T;
1039
+ _: (name: string, value: any) => T;
1040
+ }
1041
+ const visit: <T>(value: MetricsFilter, visitor: Visitor<T>) => T;
1042
+ }
1043
+ export interface MetricsConfiguration {
1044
+ Id: string | undefined;
1045
+ Filter?: MetricsFilter | undefined;
1046
+ }
1047
+ export interface GetBucketMetricsConfigurationOutput {
1048
+ MetricsConfiguration?: MetricsConfiguration | undefined;
1049
+ }
1050
+ export interface GetBucketMetricsConfigurationRequest {
1051
+ Bucket: string | undefined;
1052
+ Id: string | undefined;
1053
+ ExpectedBucketOwner?: string | undefined;
1054
+ }
1055
+ export interface GetBucketNotificationConfigurationRequest {
1056
+ Bucket: string | undefined;
1057
+ ExpectedBucketOwner?: string | undefined;
1058
+ }
1059
+ export interface EventBridgeConfiguration {}
1060
+ export declare const Event: {
1061
+ readonly s3_IntelligentTiering: "s3:IntelligentTiering";
1062
+ readonly s3_LifecycleExpiration_: "s3:LifecycleExpiration:*";
1063
+ readonly s3_LifecycleExpiration_Delete: "s3:LifecycleExpiration:Delete";
1064
+ readonly s3_LifecycleExpiration_DeleteMarkerCreated: "s3:LifecycleExpiration:DeleteMarkerCreated";
1065
+ readonly s3_LifecycleTransition: "s3:LifecycleTransition";
1066
+ readonly s3_ObjectAcl_Put: "s3:ObjectAcl:Put";
1067
+ readonly s3_ObjectCreated_: "s3:ObjectCreated:*";
1068
+ readonly s3_ObjectCreated_CompleteMultipartUpload: "s3:ObjectCreated:CompleteMultipartUpload";
1069
+ readonly s3_ObjectCreated_Copy: "s3:ObjectCreated:Copy";
1070
+ readonly s3_ObjectCreated_Post: "s3:ObjectCreated:Post";
1071
+ readonly s3_ObjectCreated_Put: "s3:ObjectCreated:Put";
1072
+ readonly s3_ObjectRemoved_: "s3:ObjectRemoved:*";
1073
+ readonly s3_ObjectRemoved_Delete: "s3:ObjectRemoved:Delete";
1074
+ readonly s3_ObjectRemoved_DeleteMarkerCreated: "s3:ObjectRemoved:DeleteMarkerCreated";
1075
+ readonly s3_ObjectRestore_: "s3:ObjectRestore:*";
1076
+ readonly s3_ObjectRestore_Completed: "s3:ObjectRestore:Completed";
1077
+ readonly s3_ObjectRestore_Delete: "s3:ObjectRestore:Delete";
1078
+ readonly s3_ObjectRestore_Post: "s3:ObjectRestore:Post";
1079
+ readonly s3_ObjectTagging_: "s3:ObjectTagging:*";
1080
+ readonly s3_ObjectTagging_Delete: "s3:ObjectTagging:Delete";
1081
+ readonly s3_ObjectTagging_Put: "s3:ObjectTagging:Put";
1082
+ readonly s3_ReducedRedundancyLostObject: "s3:ReducedRedundancyLostObject";
1083
+ readonly s3_Replication_: "s3:Replication:*";
1084
+ readonly s3_Replication_OperationFailedReplication: "s3:Replication:OperationFailedReplication";
1085
+ readonly s3_Replication_OperationMissedThreshold: "s3:Replication:OperationMissedThreshold";
1086
+ readonly s3_Replication_OperationNotTracked: "s3:Replication:OperationNotTracked";
1087
+ readonly s3_Replication_OperationReplicatedAfterThreshold: "s3:Replication:OperationReplicatedAfterThreshold";
1088
+ };
1089
+ export type Event = (typeof Event)[keyof typeof Event];
1090
+ export declare const FilterRuleName: {
1091
+ readonly prefix: "prefix";
1092
+ readonly suffix: "suffix";
1093
+ };
1094
+ export type FilterRuleName =
1095
+ (typeof FilterRuleName)[keyof typeof FilterRuleName];
1096
+ export interface FilterRule {
1097
+ Name?: FilterRuleName | undefined;
1098
+ Value?: string | undefined;
1099
+ }
1100
+ export interface S3KeyFilter {
1101
+ FilterRules?: FilterRule[] | undefined;
1102
+ }
1103
+ export interface NotificationConfigurationFilter {
1104
+ Key?: S3KeyFilter | undefined;
1105
+ }
1106
+ export interface LambdaFunctionConfiguration {
1107
+ Id?: string | undefined;
1108
+ LambdaFunctionArn: string | undefined;
1109
+ Events: Event[] | undefined;
1110
+ Filter?: NotificationConfigurationFilter | undefined;
1111
+ }
1112
+ export interface QueueConfiguration {
1113
+ Id?: string | undefined;
1114
+ QueueArn: string | undefined;
1115
+ Events: Event[] | undefined;
1116
+ Filter?: NotificationConfigurationFilter | undefined;
1117
+ }
1118
+ export interface TopicConfiguration {
1119
+ Id?: string | undefined;
1120
+ TopicArn: string | undefined;
1121
+ Events: Event[] | undefined;
1122
+ Filter?: NotificationConfigurationFilter | undefined;
1123
+ }
1124
+ export interface NotificationConfiguration {
1125
+ TopicConfigurations?: TopicConfiguration[] | undefined;
1126
+ QueueConfigurations?: QueueConfiguration[] | undefined;
1127
+ LambdaFunctionConfigurations?: LambdaFunctionConfiguration[] | undefined;
1128
+ EventBridgeConfiguration?: EventBridgeConfiguration | undefined;
1129
+ }
1130
+ export interface OwnershipControlsRule {
1131
+ ObjectOwnership: ObjectOwnership | undefined;
1132
+ }
1133
+ export interface OwnershipControls {
1134
+ Rules: OwnershipControlsRule[] | undefined;
1135
+ }
1136
+ export interface GetBucketOwnershipControlsOutput {
1137
+ OwnershipControls?: OwnershipControls | undefined;
1138
+ }
1139
+ export interface GetBucketOwnershipControlsRequest {
1140
+ Bucket: string | undefined;
1141
+ ExpectedBucketOwner?: string | undefined;
1142
+ }
1143
+ export interface GetBucketPolicyOutput {
1144
+ Policy?: string | undefined;
1145
+ }
1146
+ export interface GetBucketPolicyRequest {
1147
+ Bucket: string | undefined;
1148
+ ExpectedBucketOwner?: string | undefined;
1149
+ }
1150
+ export interface PolicyStatus {
1151
+ IsPublic?: boolean | undefined;
1152
+ }
1153
+ export interface GetBucketPolicyStatusOutput {
1154
+ PolicyStatus?: PolicyStatus | undefined;
1155
+ }
1156
+ export interface GetBucketPolicyStatusRequest {
1157
+ Bucket: string | undefined;
1158
+ ExpectedBucketOwner?: string | undefined;
1159
+ }
1160
+ export declare const DeleteMarkerReplicationStatus: {
1161
+ readonly Disabled: "Disabled";
1162
+ readonly Enabled: "Enabled";
1163
+ };
1164
+ export type DeleteMarkerReplicationStatus =
1165
+ (typeof DeleteMarkerReplicationStatus)[keyof typeof DeleteMarkerReplicationStatus];
1166
+ export interface DeleteMarkerReplication {
1167
+ Status?: DeleteMarkerReplicationStatus | undefined;
1168
+ }
1169
+ export interface EncryptionConfiguration {
1170
+ ReplicaKmsKeyID?: string | undefined;
1171
+ }
1172
+ export interface ReplicationTimeValue {
1173
+ Minutes?: number | undefined;
1174
+ }
1175
+ export declare const MetricsStatus: {
1176
+ readonly Disabled: "Disabled";
1177
+ readonly Enabled: "Enabled";
1178
+ };
1179
+ export type MetricsStatus = (typeof MetricsStatus)[keyof typeof MetricsStatus];
1180
+ export interface Metrics {
1181
+ Status: MetricsStatus | undefined;
1182
+ EventThreshold?: ReplicationTimeValue | undefined;
1183
+ }
1184
+ export declare const ReplicationTimeStatus: {
1185
+ readonly Disabled: "Disabled";
1186
+ readonly Enabled: "Enabled";
1187
+ };
1188
+ export type ReplicationTimeStatus =
1189
+ (typeof ReplicationTimeStatus)[keyof typeof ReplicationTimeStatus];
1190
+ export interface ReplicationTime {
1191
+ Status: ReplicationTimeStatus | undefined;
1192
+ Time: ReplicationTimeValue | undefined;
1193
+ }
1194
+ export interface Destination {
1195
+ Bucket: string | undefined;
1196
+ Account?: string | undefined;
1197
+ StorageClass?: StorageClass | undefined;
1198
+ AccessControlTranslation?: AccessControlTranslation | undefined;
1199
+ EncryptionConfiguration?: EncryptionConfiguration | undefined;
1200
+ ReplicationTime?: ReplicationTime | undefined;
1201
+ Metrics?: Metrics | undefined;
1202
+ }
1203
+ export declare const ExistingObjectReplicationStatus: {
1204
+ readonly Disabled: "Disabled";
1205
+ readonly Enabled: "Enabled";
1206
+ };
1207
+ export type ExistingObjectReplicationStatus =
1208
+ (typeof ExistingObjectReplicationStatus)[keyof typeof ExistingObjectReplicationStatus];
1209
+ export interface ExistingObjectReplication {
1210
+ Status: ExistingObjectReplicationStatus | undefined;
1211
+ }
1212
+ export interface ReplicationRuleAndOperator {
1213
+ Prefix?: string | undefined;
1214
+ Tags?: Tag[] | undefined;
1215
+ }
1216
+ export interface ReplicationRuleFilter {
1217
+ Prefix?: string | undefined;
1218
+ Tag?: Tag | undefined;
1219
+ And?: ReplicationRuleAndOperator | undefined;
1220
+ }
1221
+ export declare const ReplicaModificationsStatus: {
1222
+ readonly Disabled: "Disabled";
1223
+ readonly Enabled: "Enabled";
1224
+ };
1225
+ export type ReplicaModificationsStatus =
1226
+ (typeof ReplicaModificationsStatus)[keyof typeof ReplicaModificationsStatus];
1227
+ export interface ReplicaModifications {
1228
+ Status: ReplicaModificationsStatus | undefined;
1229
+ }
1230
+ export declare const SseKmsEncryptedObjectsStatus: {
1231
+ readonly Disabled: "Disabled";
1232
+ readonly Enabled: "Enabled";
1233
+ };
1234
+ export type SseKmsEncryptedObjectsStatus =
1235
+ (typeof SseKmsEncryptedObjectsStatus)[keyof typeof SseKmsEncryptedObjectsStatus];
1236
+ export interface SseKmsEncryptedObjects {
1237
+ Status: SseKmsEncryptedObjectsStatus | undefined;
1238
+ }
1239
+ export interface SourceSelectionCriteria {
1240
+ SseKmsEncryptedObjects?: SseKmsEncryptedObjects | undefined;
1241
+ ReplicaModifications?: ReplicaModifications | undefined;
1242
+ }
1243
+ export declare const ReplicationRuleStatus: {
1244
+ readonly Disabled: "Disabled";
1245
+ readonly Enabled: "Enabled";
1246
+ };
1247
+ export type ReplicationRuleStatus =
1248
+ (typeof ReplicationRuleStatus)[keyof typeof ReplicationRuleStatus];
1249
+ export interface ReplicationRule {
1250
+ ID?: string | undefined;
1251
+ Priority?: number | undefined;
1252
+ Prefix?: string | undefined;
1253
+ Filter?: ReplicationRuleFilter | undefined;
1254
+ Status: ReplicationRuleStatus | undefined;
1255
+ SourceSelectionCriteria?: SourceSelectionCriteria | undefined;
1256
+ ExistingObjectReplication?: ExistingObjectReplication | undefined;
1257
+ Destination: Destination | undefined;
1258
+ DeleteMarkerReplication?: DeleteMarkerReplication | undefined;
1259
+ }
1260
+ export interface ReplicationConfiguration {
1261
+ Role: string | undefined;
1262
+ Rules: ReplicationRule[] | undefined;
1263
+ }
1264
+ export interface GetBucketReplicationOutput {
1265
+ ReplicationConfiguration?: ReplicationConfiguration | undefined;
1266
+ }
1267
+ export interface GetBucketReplicationRequest {
1268
+ Bucket: string | undefined;
1269
+ ExpectedBucketOwner?: string | undefined;
1270
+ }
1271
+ export declare const Payer: {
1272
+ readonly BucketOwner: "BucketOwner";
1273
+ readonly Requester: "Requester";
1274
+ };
1275
+ export type Payer = (typeof Payer)[keyof typeof Payer];
1276
+ export interface GetBucketRequestPaymentOutput {
1277
+ Payer?: Payer | undefined;
1278
+ }
1279
+ export interface GetBucketRequestPaymentRequest {
1280
+ Bucket: string | undefined;
1281
+ ExpectedBucketOwner?: string | undefined;
1282
+ }
1283
+ export interface GetBucketTaggingOutput {
1284
+ TagSet: Tag[] | undefined;
1285
+ }
1286
+ export interface GetBucketTaggingRequest {
1287
+ Bucket: string | undefined;
1288
+ ExpectedBucketOwner?: string | undefined;
1289
+ }
1290
+ export declare const MFADeleteStatus: {
1291
+ readonly Disabled: "Disabled";
1292
+ readonly Enabled: "Enabled";
1293
+ };
1294
+ export type MFADeleteStatus =
1295
+ (typeof MFADeleteStatus)[keyof typeof MFADeleteStatus];
1296
+ export declare const BucketVersioningStatus: {
1297
+ readonly Enabled: "Enabled";
1298
+ readonly Suspended: "Suspended";
1299
+ };
1300
+ export type BucketVersioningStatus =
1301
+ (typeof BucketVersioningStatus)[keyof typeof BucketVersioningStatus];
1302
+ export interface GetBucketVersioningOutput {
1303
+ Status?: BucketVersioningStatus | undefined;
1304
+ MFADelete?: MFADeleteStatus | undefined;
1305
+ }
1306
+ export interface GetBucketVersioningRequest {
1307
+ Bucket: string | undefined;
1308
+ ExpectedBucketOwner?: string | undefined;
1309
+ }
1310
+ export interface ErrorDocument {
1311
+ Key: string | undefined;
1312
+ }
1313
+ export interface IndexDocument {
1314
+ Suffix: string | undefined;
1315
+ }
1316
+ export declare const Protocol: {
1317
+ readonly http: "http";
1318
+ readonly https: "https";
1319
+ };
1320
+ export type Protocol = (typeof Protocol)[keyof typeof Protocol];
1321
+ export interface RedirectAllRequestsTo {
1322
+ HostName: string | undefined;
1323
+ Protocol?: Protocol | undefined;
1324
+ }
1325
+ export interface Condition {
1326
+ HttpErrorCodeReturnedEquals?: string | undefined;
1327
+ KeyPrefixEquals?: string | undefined;
1328
+ }
1329
+ export interface Redirect {
1330
+ HostName?: string | undefined;
1331
+ HttpRedirectCode?: string | undefined;
1332
+ Protocol?: Protocol | undefined;
1333
+ ReplaceKeyPrefixWith?: string | undefined;
1334
+ ReplaceKeyWith?: string | undefined;
1335
+ }
1336
+ export interface RoutingRule {
1337
+ Condition?: Condition | undefined;
1338
+ Redirect: Redirect | undefined;
1339
+ }
1340
+ export interface GetBucketWebsiteOutput {
1341
+ RedirectAllRequestsTo?: RedirectAllRequestsTo | undefined;
1342
+ IndexDocument?: IndexDocument | undefined;
1343
+ ErrorDocument?: ErrorDocument | undefined;
1344
+ RoutingRules?: RoutingRule[] | undefined;
1345
+ }
1346
+ export interface GetBucketWebsiteRequest {
1347
+ Bucket: string | undefined;
1348
+ ExpectedBucketOwner?: string | undefined;
1349
+ }
1350
+ export declare const ReplicationStatus: {
1351
+ readonly COMPLETE: "COMPLETE";
1352
+ readonly COMPLETED: "COMPLETED";
1353
+ readonly FAILED: "FAILED";
1354
+ readonly PENDING: "PENDING";
1355
+ readonly REPLICA: "REPLICA";
1356
+ };
1357
+ export type ReplicationStatus =
1358
+ (typeof ReplicationStatus)[keyof typeof ReplicationStatus];
1359
+ export interface GetObjectOutput {
1360
+ Body?: StreamingBlobTypes | undefined;
1361
+ DeleteMarker?: boolean | undefined;
1362
+ AcceptRanges?: string | undefined;
1363
+ Expiration?: string | undefined;
1364
+ Restore?: string | undefined;
1365
+ LastModified?: Date | undefined;
1366
+ ContentLength?: number | undefined;
1367
+ ETag?: string | undefined;
1368
+ ChecksumCRC32?: string | undefined;
1369
+ ChecksumCRC32C?: string | undefined;
1370
+ ChecksumSHA1?: string | undefined;
1371
+ ChecksumSHA256?: string | undefined;
1372
+ MissingMeta?: number | undefined;
1373
+ VersionId?: string | undefined;
1374
+ CacheControl?: string | undefined;
1375
+ ContentDisposition?: string | undefined;
1376
+ ContentEncoding?: string | undefined;
1377
+ ContentLanguage?: string | undefined;
1378
+ ContentRange?: string | undefined;
1379
+ ContentType?: string | undefined;
1380
+ Expires?: Date | undefined;
1381
+ ExpiresString?: string | undefined;
1382
+ WebsiteRedirectLocation?: string | undefined;
1383
+ ServerSideEncryption?: ServerSideEncryption | undefined;
1384
+ Metadata?: Record<string, string> | undefined;
1385
+ SSECustomerAlgorithm?: string | undefined;
1386
+ SSECustomerKeyMD5?: string | undefined;
1387
+ SSEKMSKeyId?: string | undefined;
1388
+ BucketKeyEnabled?: boolean | undefined;
1389
+ StorageClass?: StorageClass | undefined;
1390
+ RequestCharged?: RequestCharged | undefined;
1391
+ ReplicationStatus?: ReplicationStatus | undefined;
1392
+ PartsCount?: number | undefined;
1393
+ TagCount?: number | undefined;
1394
+ ObjectLockMode?: ObjectLockMode | undefined;
1395
+ ObjectLockRetainUntilDate?: Date | undefined;
1396
+ ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | undefined;
1397
+ }
1398
+ export declare const ChecksumMode: {
1399
+ readonly ENABLED: "ENABLED";
1400
+ };
1401
+ export type ChecksumMode = (typeof ChecksumMode)[keyof typeof ChecksumMode];
1402
+ export interface GetObjectRequest {
1403
+ Bucket: string | undefined;
1404
+ IfMatch?: string | undefined;
1405
+ IfModifiedSince?: Date | undefined;
1406
+ IfNoneMatch?: string | undefined;
1407
+ IfUnmodifiedSince?: Date | undefined;
1408
+ Key: string | undefined;
1409
+ Range?: string | undefined;
1410
+ ResponseCacheControl?: string | undefined;
1411
+ ResponseContentDisposition?: string | undefined;
1412
+ ResponseContentEncoding?: string | undefined;
1413
+ ResponseContentLanguage?: string | undefined;
1414
+ ResponseContentType?: string | undefined;
1415
+ ResponseExpires?: Date | undefined;
1416
+ VersionId?: string | undefined;
1417
+ SSECustomerAlgorithm?: string | undefined;
1418
+ SSECustomerKey?: string | undefined;
1419
+ SSECustomerKeyMD5?: string | undefined;
1420
+ RequestPayer?: RequestPayer | undefined;
1421
+ PartNumber?: number | undefined;
1422
+ ExpectedBucketOwner?: string | undefined;
1423
+ ChecksumMode?: ChecksumMode | undefined;
1424
+ }
1425
+ export declare class InvalidObjectState extends __BaseException {
1426
+ readonly name: "InvalidObjectState";
1427
+ readonly $fault: "client";
1428
+ StorageClass?: StorageClass | undefined;
1429
+ AccessTier?: IntelligentTieringAccessTier | undefined;
1430
+ constructor(opts: __ExceptionOptionType<InvalidObjectState, __BaseException>);
1431
+ }
1432
+ export declare class NoSuchKey extends __BaseException {
1433
+ readonly name: "NoSuchKey";
1434
+ readonly $fault: "client";
1435
+ constructor(opts: __ExceptionOptionType<NoSuchKey, __BaseException>);
1436
+ }
1437
+ export interface GetObjectAclOutput {
1438
+ Owner?: Owner | undefined;
1439
+ Grants?: Grant[] | undefined;
1440
+ RequestCharged?: RequestCharged | undefined;
1441
+ }
1442
+ export interface GetObjectAclRequest {
1443
+ Bucket: string | undefined;
1444
+ Key: string | undefined;
1445
+ VersionId?: string | undefined;
1446
+ RequestPayer?: RequestPayer | undefined;
1447
+ ExpectedBucketOwner?: string | undefined;
1448
+ }
1449
+ export interface Checksum {
1450
+ ChecksumCRC32?: string | undefined;
1451
+ ChecksumCRC32C?: string | undefined;
1452
+ ChecksumSHA1?: string | undefined;
1453
+ ChecksumSHA256?: string | undefined;
1454
+ }
1455
+ export interface ObjectPart {
1456
+ PartNumber?: number | undefined;
1457
+ Size?: number | undefined;
1458
+ ChecksumCRC32?: string | undefined;
1459
+ ChecksumCRC32C?: string | undefined;
1460
+ ChecksumSHA1?: string | undefined;
1461
+ ChecksumSHA256?: string | undefined;
1462
+ }
1463
+ export interface GetObjectAttributesParts {
1464
+ TotalPartsCount?: number | undefined;
1465
+ PartNumberMarker?: string | undefined;
1466
+ NextPartNumberMarker?: string | undefined;
1467
+ MaxParts?: number | undefined;
1468
+ IsTruncated?: boolean | undefined;
1469
+ Parts?: ObjectPart[] | undefined;
1470
+ }
1471
+ export interface GetObjectAttributesOutput {
1472
+ DeleteMarker?: boolean | undefined;
1473
+ LastModified?: Date | undefined;
1474
+ VersionId?: string | undefined;
1475
+ RequestCharged?: RequestCharged | undefined;
1476
+ ETag?: string | undefined;
1477
+ Checksum?: Checksum | undefined;
1478
+ ObjectParts?: GetObjectAttributesParts | undefined;
1479
+ StorageClass?: StorageClass | undefined;
1480
+ ObjectSize?: number | undefined;
1481
+ }
1482
+ export declare const ObjectAttributes: {
1483
+ readonly CHECKSUM: "Checksum";
1484
+ readonly ETAG: "ETag";
1485
+ readonly OBJECT_PARTS: "ObjectParts";
1486
+ readonly OBJECT_SIZE: "ObjectSize";
1487
+ readonly STORAGE_CLASS: "StorageClass";
1488
+ };
1489
+ export type ObjectAttributes =
1490
+ (typeof ObjectAttributes)[keyof typeof ObjectAttributes];
1491
+ export interface GetObjectAttributesRequest {
1492
+ Bucket: string | undefined;
1493
+ Key: string | undefined;
1494
+ VersionId?: string | undefined;
1495
+ MaxParts?: number | undefined;
1496
+ PartNumberMarker?: string | undefined;
1497
+ SSECustomerAlgorithm?: string | undefined;
1498
+ SSECustomerKey?: string | undefined;
1499
+ SSECustomerKeyMD5?: string | undefined;
1500
+ RequestPayer?: RequestPayer | undefined;
1501
+ ExpectedBucketOwner?: string | undefined;
1502
+ ObjectAttributes: ObjectAttributes[] | undefined;
1503
+ }
1504
+ export interface ObjectLockLegalHold {
1505
+ Status?: ObjectLockLegalHoldStatus | undefined;
1506
+ }
1507
+ export interface GetObjectLegalHoldOutput {
1508
+ LegalHold?: ObjectLockLegalHold | undefined;
1509
+ }
1510
+ export interface GetObjectLegalHoldRequest {
1511
+ Bucket: string | undefined;
1512
+ Key: string | undefined;
1513
+ VersionId?: string | undefined;
1514
+ RequestPayer?: RequestPayer | undefined;
1515
+ ExpectedBucketOwner?: string | undefined;
1516
+ }
1517
+ export declare const ObjectLockEnabled: {
1518
+ readonly Enabled: "Enabled";
1519
+ };
1520
+ export type ObjectLockEnabled =
1521
+ (typeof ObjectLockEnabled)[keyof typeof ObjectLockEnabled];
1522
+ export declare const ObjectLockRetentionMode: {
1523
+ readonly COMPLIANCE: "COMPLIANCE";
1524
+ readonly GOVERNANCE: "GOVERNANCE";
1525
+ };
1526
+ export type ObjectLockRetentionMode =
1527
+ (typeof ObjectLockRetentionMode)[keyof typeof ObjectLockRetentionMode];
1528
+ export interface DefaultRetention {
1529
+ Mode?: ObjectLockRetentionMode | undefined;
1530
+ Days?: number | undefined;
1531
+ Years?: number | undefined;
1532
+ }
1533
+ export interface ObjectLockRule {
1534
+ DefaultRetention?: DefaultRetention | undefined;
1535
+ }
1536
+ export interface ObjectLockConfiguration {
1537
+ ObjectLockEnabled?: ObjectLockEnabled | undefined;
1538
+ Rule?: ObjectLockRule | undefined;
1539
+ }
1540
+ export interface GetObjectLockConfigurationOutput {
1541
+ ObjectLockConfiguration?: ObjectLockConfiguration | undefined;
1542
+ }
1543
+ export interface GetObjectLockConfigurationRequest {
1544
+ Bucket: string | undefined;
1545
+ ExpectedBucketOwner?: string | undefined;
1546
+ }
1547
+ export interface ObjectLockRetention {
1548
+ Mode?: ObjectLockRetentionMode | undefined;
1549
+ RetainUntilDate?: Date | undefined;
1550
+ }
1551
+ export interface GetObjectRetentionOutput {
1552
+ Retention?: ObjectLockRetention | undefined;
1553
+ }
1554
+ export interface GetObjectRetentionRequest {
1555
+ Bucket: string | undefined;
1556
+ Key: string | undefined;
1557
+ VersionId?: string | undefined;
1558
+ RequestPayer?: RequestPayer | undefined;
1559
+ ExpectedBucketOwner?: string | undefined;
1560
+ }
1561
+ export interface GetObjectTaggingOutput {
1562
+ VersionId?: string | undefined;
1563
+ TagSet: Tag[] | undefined;
1564
+ }
1565
+ export interface GetObjectTaggingRequest {
1566
+ Bucket: string | undefined;
1567
+ Key: string | undefined;
1568
+ VersionId?: string | undefined;
1569
+ ExpectedBucketOwner?: string | undefined;
1570
+ RequestPayer?: RequestPayer | undefined;
1571
+ }
1572
+ export interface GetObjectTorrentOutput {
1573
+ Body?: StreamingBlobTypes | undefined;
1574
+ RequestCharged?: RequestCharged | undefined;
1575
+ }
1576
+ export interface GetObjectTorrentRequest {
1577
+ Bucket: string | undefined;
1578
+ Key: string | undefined;
1579
+ RequestPayer?: RequestPayer | undefined;
1580
+ ExpectedBucketOwner?: string | undefined;
1581
+ }
1582
+ export interface PublicAccessBlockConfiguration {
1583
+ BlockPublicAcls?: boolean | undefined;
1584
+ IgnorePublicAcls?: boolean | undefined;
1585
+ BlockPublicPolicy?: boolean | undefined;
1586
+ RestrictPublicBuckets?: boolean | undefined;
1587
+ }
1588
+ export interface GetPublicAccessBlockOutput {
1589
+ PublicAccessBlockConfiguration?: PublicAccessBlockConfiguration | undefined;
1590
+ }
1591
+ export interface GetPublicAccessBlockRequest {
1592
+ Bucket: string | undefined;
1593
+ ExpectedBucketOwner?: string | undefined;
1594
+ }
1595
+ export interface HeadBucketOutput {
1596
+ BucketLocationType?: LocationType | undefined;
1597
+ BucketLocationName?: string | undefined;
1598
+ BucketRegion?: string | undefined;
1599
+ AccessPointAlias?: boolean | undefined;
1600
+ }
1601
+ export interface HeadBucketRequest {
1602
+ Bucket: string | undefined;
1603
+ ExpectedBucketOwner?: string | undefined;
1604
+ }
1605
+ export declare class NotFound extends __BaseException {
1606
+ readonly name: "NotFound";
1607
+ readonly $fault: "client";
1608
+ constructor(opts: __ExceptionOptionType<NotFound, __BaseException>);
1609
+ }
1610
+ export declare const ArchiveStatus: {
1611
+ readonly ARCHIVE_ACCESS: "ARCHIVE_ACCESS";
1612
+ readonly DEEP_ARCHIVE_ACCESS: "DEEP_ARCHIVE_ACCESS";
1613
+ };
1614
+ export type ArchiveStatus = (typeof ArchiveStatus)[keyof typeof ArchiveStatus];
1615
+ export interface HeadObjectOutput {
1616
+ DeleteMarker?: boolean | undefined;
1617
+ AcceptRanges?: string | undefined;
1618
+ Expiration?: string | undefined;
1619
+ Restore?: string | undefined;
1620
+ ArchiveStatus?: ArchiveStatus | undefined;
1621
+ LastModified?: Date | undefined;
1622
+ ContentLength?: number | undefined;
1623
+ ChecksumCRC32?: string | undefined;
1624
+ ChecksumCRC32C?: string | undefined;
1625
+ ChecksumSHA1?: string | undefined;
1626
+ ChecksumSHA256?: string | undefined;
1627
+ ETag?: string | undefined;
1628
+ MissingMeta?: number | undefined;
1629
+ VersionId?: string | undefined;
1630
+ CacheControl?: string | undefined;
1631
+ ContentDisposition?: string | undefined;
1632
+ ContentEncoding?: string | undefined;
1633
+ ContentLanguage?: string | undefined;
1634
+ ContentType?: string | undefined;
1635
+ Expires?: Date | undefined;
1636
+ ExpiresString?: string | undefined;
1637
+ WebsiteRedirectLocation?: string | undefined;
1638
+ ServerSideEncryption?: ServerSideEncryption | undefined;
1639
+ Metadata?: Record<string, string> | undefined;
1640
+ SSECustomerAlgorithm?: string | undefined;
1641
+ SSECustomerKeyMD5?: string | undefined;
1642
+ SSEKMSKeyId?: string | undefined;
1643
+ BucketKeyEnabled?: boolean | undefined;
1644
+ StorageClass?: StorageClass | undefined;
1645
+ RequestCharged?: RequestCharged | undefined;
1646
+ ReplicationStatus?: ReplicationStatus | undefined;
1647
+ PartsCount?: number | undefined;
1648
+ ObjectLockMode?: ObjectLockMode | undefined;
1649
+ ObjectLockRetainUntilDate?: Date | undefined;
1650
+ ObjectLockLegalHoldStatus?: ObjectLockLegalHoldStatus | undefined;
1651
+ }
1652
+ export interface HeadObjectRequest {
1653
+ Bucket: string | undefined;
1654
+ IfMatch?: string | undefined;
1655
+ IfModifiedSince?: Date | undefined;
1656
+ IfNoneMatch?: string | undefined;
1657
+ IfUnmodifiedSince?: Date | undefined;
1658
+ Key: string | undefined;
1659
+ Range?: string | undefined;
1660
+ ResponseCacheControl?: string | undefined;
1661
+ ResponseContentDisposition?: string | undefined;
1662
+ ResponseContentEncoding?: string | undefined;
1663
+ ResponseContentLanguage?: string | undefined;
1664
+ ResponseContentType?: string | undefined;
1665
+ ResponseExpires?: Date | undefined;
1666
+ VersionId?: string | undefined;
1667
+ SSECustomerAlgorithm?: string | undefined;
1668
+ SSECustomerKey?: string | undefined;
1669
+ SSECustomerKeyMD5?: string | undefined;
1670
+ RequestPayer?: RequestPayer | undefined;
1671
+ PartNumber?: number | undefined;
1672
+ ExpectedBucketOwner?: string | undefined;
1673
+ ChecksumMode?: ChecksumMode | undefined;
1674
+ }
1675
+ export interface ListBucketAnalyticsConfigurationsOutput {
1676
+ IsTruncated?: boolean | undefined;
1677
+ ContinuationToken?: string | undefined;
1678
+ NextContinuationToken?: string | undefined;
1679
+ AnalyticsConfigurationList?: AnalyticsConfiguration[] | undefined;
1680
+ }
1681
+ export interface ListBucketAnalyticsConfigurationsRequest {
1682
+ Bucket: string | undefined;
1683
+ ContinuationToken?: string | undefined;
1684
+ ExpectedBucketOwner?: string | undefined;
1685
+ }
1686
+ export interface ListBucketIntelligentTieringConfigurationsOutput {
1687
+ IsTruncated?: boolean | undefined;
1688
+ ContinuationToken?: string | undefined;
1689
+ NextContinuationToken?: string | undefined;
1690
+ IntelligentTieringConfigurationList?:
1691
+ | IntelligentTieringConfiguration[]
1692
+ | undefined;
1693
+ }
1694
+ export interface ListBucketIntelligentTieringConfigurationsRequest {
1695
+ Bucket: string | undefined;
1696
+ ContinuationToken?: string | undefined;
1697
+ }
1698
+ export interface ListBucketInventoryConfigurationsOutput {
1699
+ ContinuationToken?: string | undefined;
1700
+ InventoryConfigurationList?: InventoryConfiguration[] | undefined;
1701
+ IsTruncated?: boolean | undefined;
1702
+ NextContinuationToken?: string | undefined;
1703
+ }
1704
+ export interface ListBucketInventoryConfigurationsRequest {
1705
+ Bucket: string | undefined;
1706
+ ContinuationToken?: string | undefined;
1707
+ ExpectedBucketOwner?: string | undefined;
1708
+ }
1709
+ export interface ListBucketMetricsConfigurationsOutput {
1710
+ IsTruncated?: boolean | undefined;
1711
+ ContinuationToken?: string | undefined;
1712
+ NextContinuationToken?: string | undefined;
1713
+ MetricsConfigurationList?: MetricsConfiguration[] | undefined;
1714
+ }
1715
+ export interface ListBucketMetricsConfigurationsRequest {
1716
+ Bucket: string | undefined;
1717
+ ContinuationToken?: string | undefined;
1718
+ ExpectedBucketOwner?: string | undefined;
1719
+ }
1720
+ export interface Bucket {
1721
+ Name?: string | undefined;
1722
+ CreationDate?: Date | undefined;
1723
+ BucketRegion?: string | undefined;
1724
+ }
1725
+ export interface ListBucketsOutput {
1726
+ Buckets?: Bucket[] | undefined;
1727
+ Owner?: Owner | undefined;
1728
+ ContinuationToken?: string | undefined;
1729
+ Prefix?: string | undefined;
1730
+ }
1731
+ export interface ListBucketsRequest {
1732
+ MaxBuckets?: number | undefined;
1733
+ ContinuationToken?: string | undefined;
1734
+ Prefix?: string | undefined;
1735
+ BucketRegion?: string | undefined;
1736
+ }
1737
+ export interface ListDirectoryBucketsOutput {
1738
+ Buckets?: Bucket[] | undefined;
1739
+ ContinuationToken?: string | undefined;
1740
+ }
1741
+ export interface ListDirectoryBucketsRequest {
1742
+ ContinuationToken?: string | undefined;
1743
+ MaxDirectoryBuckets?: number | undefined;
1744
+ }
1745
+ export interface CommonPrefix {
1746
+ Prefix?: string | undefined;
1747
+ }
1748
+ export declare const EncodingType: {
1749
+ readonly url: "url";
1750
+ };
1751
+ export type EncodingType = (typeof EncodingType)[keyof typeof EncodingType];
1752
+ export interface Initiator {
1753
+ ID?: string | undefined;
1754
+ DisplayName?: string | undefined;
1755
+ }
1756
+ export interface MultipartUpload {
1757
+ UploadId?: string | undefined;
1758
+ Key?: string | undefined;
1759
+ Initiated?: Date | undefined;
1760
+ StorageClass?: StorageClass | undefined;
1761
+ Owner?: Owner | undefined;
1762
+ Initiator?: Initiator | undefined;
1763
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
1764
+ }
1765
+ export interface ListMultipartUploadsOutput {
1766
+ Bucket?: string | undefined;
1767
+ KeyMarker?: string | undefined;
1768
+ UploadIdMarker?: string | undefined;
1769
+ NextKeyMarker?: string | undefined;
1770
+ Prefix?: string | undefined;
1771
+ Delimiter?: string | undefined;
1772
+ NextUploadIdMarker?: string | undefined;
1773
+ MaxUploads?: number | undefined;
1774
+ IsTruncated?: boolean | undefined;
1775
+ Uploads?: MultipartUpload[] | undefined;
1776
+ CommonPrefixes?: CommonPrefix[] | undefined;
1777
+ EncodingType?: EncodingType | undefined;
1778
+ RequestCharged?: RequestCharged | undefined;
1779
+ }
1780
+ export interface ListMultipartUploadsRequest {
1781
+ Bucket: string | undefined;
1782
+ Delimiter?: string | undefined;
1783
+ EncodingType?: EncodingType | undefined;
1784
+ KeyMarker?: string | undefined;
1785
+ MaxUploads?: number | undefined;
1786
+ Prefix?: string | undefined;
1787
+ UploadIdMarker?: string | undefined;
1788
+ ExpectedBucketOwner?: string | undefined;
1789
+ RequestPayer?: RequestPayer | undefined;
1790
+ }
1791
+ export interface RestoreStatus {
1792
+ IsRestoreInProgress?: boolean | undefined;
1793
+ RestoreExpiryDate?: Date | undefined;
1794
+ }
1795
+ export declare const ObjectStorageClass: {
1796
+ readonly DEEP_ARCHIVE: "DEEP_ARCHIVE";
1797
+ readonly EXPRESS_ONEZONE: "EXPRESS_ONEZONE";
1798
+ readonly GLACIER: "GLACIER";
1799
+ readonly GLACIER_IR: "GLACIER_IR";
1800
+ readonly INTELLIGENT_TIERING: "INTELLIGENT_TIERING";
1801
+ readonly ONEZONE_IA: "ONEZONE_IA";
1802
+ readonly OUTPOSTS: "OUTPOSTS";
1803
+ readonly REDUCED_REDUNDANCY: "REDUCED_REDUNDANCY";
1804
+ readonly SNOW: "SNOW";
1805
+ readonly STANDARD: "STANDARD";
1806
+ readonly STANDARD_IA: "STANDARD_IA";
1807
+ };
1808
+ export type ObjectStorageClass =
1809
+ (typeof ObjectStorageClass)[keyof typeof ObjectStorageClass];
1810
+ export interface _Object {
1811
+ Key?: string | undefined;
1812
+ LastModified?: Date | undefined;
1813
+ ETag?: string | undefined;
1814
+ ChecksumAlgorithm?: ChecksumAlgorithm[] | undefined;
1815
+ Size?: number | undefined;
1816
+ StorageClass?: ObjectStorageClass | undefined;
1817
+ Owner?: Owner | undefined;
1818
+ RestoreStatus?: RestoreStatus | undefined;
1819
+ }
1820
+ export interface ListObjectsOutput {
1821
+ IsTruncated?: boolean | undefined;
1822
+ Marker?: string | undefined;
1823
+ NextMarker?: string | undefined;
1824
+ Contents?: _Object[] | undefined;
1825
+ Name?: string | undefined;
1826
+ Prefix?: string | undefined;
1827
+ Delimiter?: string | undefined;
1828
+ MaxKeys?: number | undefined;
1829
+ CommonPrefixes?: CommonPrefix[] | undefined;
1830
+ EncodingType?: EncodingType | undefined;
1831
+ RequestCharged?: RequestCharged | undefined;
1832
+ }
1833
+ export declare const OptionalObjectAttributes: {
1834
+ readonly RESTORE_STATUS: "RestoreStatus";
1835
+ };
1836
+ export type OptionalObjectAttributes =
1837
+ (typeof OptionalObjectAttributes)[keyof typeof OptionalObjectAttributes];
1838
+ export interface ListObjectsRequest {
1839
+ Bucket: string | undefined;
1840
+ Delimiter?: string | undefined;
1841
+ EncodingType?: EncodingType | undefined;
1842
+ Marker?: string | undefined;
1843
+ MaxKeys?: number | undefined;
1844
+ Prefix?: string | undefined;
1845
+ RequestPayer?: RequestPayer | undefined;
1846
+ ExpectedBucketOwner?: string | undefined;
1847
+ OptionalObjectAttributes?: OptionalObjectAttributes[] | undefined;
1848
+ }
1849
+ export interface ListObjectsV2Output {
1850
+ IsTruncated?: boolean | undefined;
1851
+ Contents?: _Object[] | undefined;
1852
+ Name?: string | undefined;
1853
+ Prefix?: string | undefined;
1854
+ Delimiter?: string | undefined;
1855
+ MaxKeys?: number | undefined;
1856
+ CommonPrefixes?: CommonPrefix[] | undefined;
1857
+ EncodingType?: EncodingType | undefined;
1858
+ KeyCount?: number | undefined;
1859
+ ContinuationToken?: string | undefined;
1860
+ NextContinuationToken?: string | undefined;
1861
+ StartAfter?: string | undefined;
1862
+ RequestCharged?: RequestCharged | undefined;
1863
+ }
1864
+ export interface ListObjectsV2Request {
1865
+ Bucket: string | undefined;
1866
+ Delimiter?: string | undefined;
1867
+ EncodingType?: EncodingType | undefined;
1868
+ MaxKeys?: number | undefined;
1869
+ Prefix?: string | undefined;
1870
+ ContinuationToken?: string | undefined;
1871
+ FetchOwner?: boolean | undefined;
1872
+ StartAfter?: string | undefined;
1873
+ RequestPayer?: RequestPayer | undefined;
1874
+ ExpectedBucketOwner?: string | undefined;
1875
+ OptionalObjectAttributes?: OptionalObjectAttributes[] | undefined;
1876
+ }
1877
+ export interface DeleteMarkerEntry {
1878
+ Owner?: Owner | undefined;
1879
+ Key?: string | undefined;
1880
+ VersionId?: string | undefined;
1881
+ IsLatest?: boolean | undefined;
1882
+ LastModified?: Date | undefined;
1883
+ }
1884
+ export declare const ObjectVersionStorageClass: {
1885
+ readonly STANDARD: "STANDARD";
1886
+ };
1887
+ export type ObjectVersionStorageClass =
1888
+ (typeof ObjectVersionStorageClass)[keyof typeof ObjectVersionStorageClass];
1889
+ export interface ObjectVersion {
1890
+ ETag?: string | undefined;
1891
+ ChecksumAlgorithm?: ChecksumAlgorithm[] | undefined;
1892
+ Size?: number | undefined;
1893
+ StorageClass?: ObjectVersionStorageClass | undefined;
1894
+ Key?: string | undefined;
1895
+ VersionId?: string | undefined;
1896
+ IsLatest?: boolean | undefined;
1897
+ LastModified?: Date | undefined;
1898
+ Owner?: Owner | undefined;
1899
+ RestoreStatus?: RestoreStatus | undefined;
1900
+ }
1901
+ export interface ListObjectVersionsOutput {
1902
+ IsTruncated?: boolean | undefined;
1903
+ KeyMarker?: string | undefined;
1904
+ VersionIdMarker?: string | undefined;
1905
+ NextKeyMarker?: string | undefined;
1906
+ NextVersionIdMarker?: string | undefined;
1907
+ Versions?: ObjectVersion[] | undefined;
1908
+ DeleteMarkers?: DeleteMarkerEntry[] | undefined;
1909
+ Name?: string | undefined;
1910
+ Prefix?: string | undefined;
1911
+ Delimiter?: string | undefined;
1912
+ MaxKeys?: number | undefined;
1913
+ CommonPrefixes?: CommonPrefix[] | undefined;
1914
+ EncodingType?: EncodingType | undefined;
1915
+ RequestCharged?: RequestCharged | undefined;
1916
+ }
1917
+ export interface ListObjectVersionsRequest {
1918
+ Bucket: string | undefined;
1919
+ Delimiter?: string | undefined;
1920
+ EncodingType?: EncodingType | undefined;
1921
+ KeyMarker?: string | undefined;
1922
+ MaxKeys?: number | undefined;
1923
+ Prefix?: string | undefined;
1924
+ VersionIdMarker?: string | undefined;
1925
+ ExpectedBucketOwner?: string | undefined;
1926
+ RequestPayer?: RequestPayer | undefined;
1927
+ OptionalObjectAttributes?: OptionalObjectAttributes[] | undefined;
1928
+ }
1929
+ export interface Part {
1930
+ PartNumber?: number | undefined;
1931
+ LastModified?: Date | undefined;
1932
+ ETag?: string | undefined;
1933
+ Size?: number | undefined;
1934
+ ChecksumCRC32?: string | undefined;
1935
+ ChecksumCRC32C?: string | undefined;
1936
+ ChecksumSHA1?: string | undefined;
1937
+ ChecksumSHA256?: string | undefined;
1938
+ }
1939
+ export interface ListPartsOutput {
1940
+ AbortDate?: Date | undefined;
1941
+ AbortRuleId?: string | undefined;
1942
+ Bucket?: string | undefined;
1943
+ Key?: string | undefined;
1944
+ UploadId?: string | undefined;
1945
+ PartNumberMarker?: string | undefined;
1946
+ NextPartNumberMarker?: string | undefined;
1947
+ MaxParts?: number | undefined;
1948
+ IsTruncated?: boolean | undefined;
1949
+ Parts?: Part[] | undefined;
1950
+ Initiator?: Initiator | undefined;
1951
+ Owner?: Owner | undefined;
1952
+ StorageClass?: StorageClass | undefined;
1953
+ RequestCharged?: RequestCharged | undefined;
1954
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
1955
+ }
1956
+ export interface ListPartsRequest {
1957
+ Bucket: string | undefined;
1958
+ Key: string | undefined;
1959
+ MaxParts?: number | undefined;
1960
+ PartNumberMarker?: string | undefined;
1961
+ UploadId: string | undefined;
1962
+ RequestPayer?: RequestPayer | undefined;
1963
+ ExpectedBucketOwner?: string | undefined;
1964
+ SSECustomerAlgorithm?: string | undefined;
1965
+ SSECustomerKey?: string | undefined;
1966
+ SSECustomerKeyMD5?: string | undefined;
1967
+ }
1968
+ export interface PutBucketAccelerateConfigurationRequest {
1969
+ Bucket: string | undefined;
1970
+ AccelerateConfiguration: AccelerateConfiguration | undefined;
1971
+ ExpectedBucketOwner?: string | undefined;
1972
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
1973
+ }
1974
+ export interface PutBucketAclRequest {
1975
+ ACL?: BucketCannedACL | undefined;
1976
+ AccessControlPolicy?: AccessControlPolicy | undefined;
1977
+ Bucket: string | undefined;
1978
+ ContentMD5?: string | undefined;
1979
+ ChecksumAlgorithm?: ChecksumAlgorithm | undefined;
1980
+ GrantFullControl?: string | undefined;
1981
+ GrantRead?: string | undefined;
1982
+ GrantReadACP?: string | undefined;
1983
+ GrantWrite?: string | undefined;
1984
+ GrantWriteACP?: string | undefined;
1985
+ ExpectedBucketOwner?: string | undefined;
1986
+ }
1987
+ export interface PutBucketAnalyticsConfigurationRequest {
1988
+ Bucket: string | undefined;
1989
+ Id: string | undefined;
1990
+ AnalyticsConfiguration: AnalyticsConfiguration | undefined;
1991
+ ExpectedBucketOwner?: string | undefined;
1992
+ }
1993
+ export interface CORSConfiguration {
1994
+ CORSRules: CORSRule[] | undefined;
1995
+ }
1996
+ export declare const CompleteMultipartUploadOutputFilterSensitiveLog: (
1997
+ obj: CompleteMultipartUploadOutput
1998
+ ) => any;
1999
+ export declare const CompleteMultipartUploadRequestFilterSensitiveLog: (
2000
+ obj: CompleteMultipartUploadRequest
2001
+ ) => any;
2002
+ export declare const CopyObjectOutputFilterSensitiveLog: (
2003
+ obj: CopyObjectOutput
2004
+ ) => any;
2005
+ export declare const CopyObjectRequestFilterSensitiveLog: (
2006
+ obj: CopyObjectRequest
2007
+ ) => any;
2008
+ export declare const CreateMultipartUploadOutputFilterSensitiveLog: (
2009
+ obj: CreateMultipartUploadOutput
2010
+ ) => any;
2011
+ export declare const CreateMultipartUploadRequestFilterSensitiveLog: (
2012
+ obj: CreateMultipartUploadRequest
2013
+ ) => any;
2014
+ export declare const SessionCredentialsFilterSensitiveLog: (
2015
+ obj: SessionCredentials
2016
+ ) => any;
2017
+ export declare const CreateSessionOutputFilterSensitiveLog: (
2018
+ obj: CreateSessionOutput
2019
+ ) => any;
2020
+ export declare const CreateSessionRequestFilterSensitiveLog: (
2021
+ obj: CreateSessionRequest
2022
+ ) => any;
2023
+ export declare const ServerSideEncryptionByDefaultFilterSensitiveLog: (
2024
+ obj: ServerSideEncryptionByDefault
2025
+ ) => any;
2026
+ export declare const ServerSideEncryptionRuleFilterSensitiveLog: (
2027
+ obj: ServerSideEncryptionRule
2028
+ ) => any;
2029
+ export declare const ServerSideEncryptionConfigurationFilterSensitiveLog: (
2030
+ obj: ServerSideEncryptionConfiguration
2031
+ ) => any;
2032
+ export declare const GetBucketEncryptionOutputFilterSensitiveLog: (
2033
+ obj: GetBucketEncryptionOutput
2034
+ ) => any;
2035
+ export declare const SSEKMSFilterSensitiveLog: (obj: SSEKMS) => any;
2036
+ export declare const InventoryEncryptionFilterSensitiveLog: (
2037
+ obj: InventoryEncryption
2038
+ ) => any;
2039
+ export declare const InventoryS3BucketDestinationFilterSensitiveLog: (
2040
+ obj: InventoryS3BucketDestination
2041
+ ) => any;
2042
+ export declare const InventoryDestinationFilterSensitiveLog: (
2043
+ obj: InventoryDestination
2044
+ ) => any;
2045
+ export declare const InventoryConfigurationFilterSensitiveLog: (
2046
+ obj: InventoryConfiguration
2047
+ ) => any;
2048
+ export declare const GetBucketInventoryConfigurationOutputFilterSensitiveLog: (
2049
+ obj: GetBucketInventoryConfigurationOutput
2050
+ ) => any;
2051
+ export declare const GetObjectOutputFilterSensitiveLog: (
2052
+ obj: GetObjectOutput
2053
+ ) => any;
2054
+ export declare const GetObjectRequestFilterSensitiveLog: (
2055
+ obj: GetObjectRequest
2056
+ ) => any;
2057
+ export declare const GetObjectAttributesRequestFilterSensitiveLog: (
2058
+ obj: GetObjectAttributesRequest
2059
+ ) => any;
2060
+ export declare const GetObjectTorrentOutputFilterSensitiveLog: (
2061
+ obj: GetObjectTorrentOutput
2062
+ ) => any;
2063
+ export declare const HeadObjectOutputFilterSensitiveLog: (
2064
+ obj: HeadObjectOutput
2065
+ ) => any;
2066
+ export declare const HeadObjectRequestFilterSensitiveLog: (
2067
+ obj: HeadObjectRequest
2068
+ ) => any;
2069
+ export declare const ListBucketInventoryConfigurationsOutputFilterSensitiveLog: (
2070
+ obj: ListBucketInventoryConfigurationsOutput
2071
+ ) => any;
2072
+ export declare const ListPartsRequestFilterSensitiveLog: (
2073
+ obj: ListPartsRequest
2074
+ ) => any;