Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions obstore/python/obstore/_store/_aws.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,16 @@ class S3Config(TypedDict, total=False):

**Environment variable**: `AWS_ACCESS_KEY_ID`.
"""
aws_endpoint_url_s3: str
"""The service-specific endpoint for communicating with AWS S3.

This takes precedence over `endpoint` when both are set.

By default, only HTTPS schemes are enabled. To connect to an HTTP endpoint, enable
`allow_http` in the client options.

**Environment variable**: `AWS_ENDPOINT_URL_S3`.
"""

bucket: str
"""Bucket name (required).
Expand Down Expand Up @@ -242,8 +252,7 @@ class S3Config(TypedDict, total=False):
**Environment variables**:

- `AWS_ENDPOINT`
- `AWS_ENDPOINT_URL`
- `AWS_ENDPOINT_URL_S3`.
- `AWS_ENDPOINT_URL`.
"""

imdsv1_fallback: bool
Expand Down
Loading