Use accelerate links to download an object? #2471
-
Is there a way to use the s3-accelerate endpoint? Im trying to use the accelerate endpoint hoping it improves my download speeds, my users are experiencing 10kb/s downlaod speeds and its killing me. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@Matiquiel Are you referring to Configuring fast, secure file transfers using Amazon S3 Transfer Acceleration? If yes, it specifies that:
Here is the possible solution (please test it):
Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hello! Reopening this discussion to make it searchable. |
Beta Was this translation helpful? Give feedback.
@Matiquiel Are you referring to Configuring fast, secure file transfers using Amazon S3 Transfer Acceleration? If yes, it specifies that:
bucketname.s3-accelerate.amazonaws.com
. Or, use the dual-stack endpointbucketname.s3-accelerate.dualstack.amazonaws.com
to connect to the enabled bucket over IPv6.Here is the possible solution (please test it):
TransferUtility
, there are 2 overloaded constructors that acceptAmazonS3Client
object (refer, TransferUtility (IAmazonS3) and TransferUtility(IAmazonS3, TransferUtilityConfig), and example h…