Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Added description of Sigv4 when generating PreSigned url #3688

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/source/guide/s3-presigned-urls.rst
Expand Up @@ -58,6 +58,9 @@ The user can download the S3 object by entering the presigned URL in a browser.
A program or HTML page can download the S3 object by using the presigned URL
as part of an HTTP GET request.

If your bucket requires Sigv4 or you are using an S3 Access Point, you can explicitly specify Sigv4 when initializing the client as follows
`s3_client = boto3.client('s3', config=Config(signature_version='s3v4'))`

The following code demonstrates using the Python ``requests`` package to
perform a GET request.

Expand Down