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
Add support for S3 [Transfer Acceleration](https://docs.aws.amazon.com/AmazonS3/latest/userguide/transfer-acceleration.html).
This PR introduces:
- New boolean property `transferAcceleration` to enable Transfer Acceleration.
- New operation `transferAccelerationUrlForObject()` to get HTTPS endpoint for Transfer Acceleration.
Closes#12570.
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
switching this to `false` in a CDK version *before*`1.126.0` will lead to
464
464
all objects in the bucket being deleted. Be sure to update your bucket resources
465
465
by deploying with CDK version `1.126.0` or later **before** switching this value to `false`.
466
+
467
+
## Transfer Acceleration
468
+
469
+
[Transfer Acceleration](https://docs.aws.amazon.com/AmazonS3/latest/userguide/transfer-acceleration.html) can be configured to enable fast, easy, and secure transfers of files over long distances:
470
+
471
+
```ts
472
+
const bucket =news3.Bucket(this, 'MyBucket', {
473
+
transferAcceleration: true,
474
+
});
475
+
```
476
+
477
+
To access the bucket that is enabled for Transfer Acceleration, you must use a special endpoint. The URL can be generated using method `transferAccelerationUrlForObject`:
0 commit comments