Closed stanhu closed 2 months ago
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 73.45%. Comparing base (
49a4d98
) to head (602e83e
). Report is 3 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
This commit adds the following query parameters for AWS:
dualstack
fips
accelerate
(S3-only)This avoids the need for users to specify
endpoint
. For example, if my AWS S3 bucket ismy-bucket
inus-east-1
, and you want to enable transfer acceleration, dual-stack support, and/or FIPS, you would need to configureendpoint
with one of the following:my-bucket.s3-accelerate.amazonaws.com
my-bucket.s3-accelerate.dualstack.amazonaws.com
my-bucket.s3-fips.us-gov-east-1.amazonaws.com
my-bucket.s3-fips.dualstack.us-east-1.amazonaws.com
For example, for the last option, users can use
s3://my-bucket?fips=true&dualstack=true
.Closes https://github.com/google/go-cloud/issues/3484