You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/s3-store/README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
> 👉 **Note**: since 1.0.0 packages are split and published under the `@tus` scope.
4
4
> The old package, `tus-node-server`, is considered unstable and will only receive security fixes.
5
-
> Make sure to use the new packages, currently in beta at `1.0.0-beta.1`.
5
+
> Make sure to use the new package, currently in beta at `1.0.0-beta.5`.
6
6
7
7
## Contents
8
8
@@ -67,7 +67,7 @@ but may increase it to not exceed the S3 10K parts limit.
67
67
68
68
Options to pass to the AWS S3 SDK.
69
69
Checkout the [`S3ClientConfig`](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-s3/interfaces/s3clientconfig.html)
70
-
docs for the supported options. You need to at least set the `region`, `bucket` name, and your preferred method of authentication.
70
+
docs for the supported options. You need to at least set the `region`, `bucket` name, and your preferred method of authentication.
71
71
72
72
## Extensions
73
73
@@ -79,9 +79,13 @@ The tus protocol supports optional [extensions][]. Below is a table of the suppo
79
79
|[Creation With Upload][]| ✅ |
80
80
|[Expiration][]| ❌ |
81
81
|[Checksum][]| ❌ |
82
-
|[Termination][]|❌|
82
+
|[Termination][]|✅|
83
83
|[Concatenation][]| ❌ |
84
84
85
+
### Termination
86
+
87
+
After a multipart upload is aborted, no additional parts can be uploaded using that upload ID. The storage consumed by any previously uploaded parts will be freed. However, if any part uploads are currently in progress, those part uploads might or might not succeed. As a result, it might be necessary to set an [S3 Lifecycle configuration](https://docs.aws.amazon.com/AmazonS3/latest/userguide/mpu-abort-incomplete-mpu-lifecycle-config.html) to abort incomplete multipart uploads.
88
+
85
89
## Examples
86
90
87
91
### Example: using `credentials` to fetch credentials inside a AWS container
0 commit comments