Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Jul 9, 2024
1 parent 36af146 commit 89c61e0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions awscrt/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,8 @@ class S3Client(NativeResource):
Default values scale with target throughput and are currently
between 2GiB and 8GiB (may change in future)
network_interface_names: (Optional[list(str)]) A list of network interface names. The client will distribute the
connections across network interfaces provided in this list. If any interface name is invalid, goes down,
network_interface_names: (Optional[Sequence(str)]) A sequence of network interface names. The client will distribute the
connections across network interfaces provided. If any interface name is invalid, goes down,
or has any issues like network access, you will see connection failures.
This option is only supported on Linux, MacOS, and platforms that have either SO_BINDTODEVICE or IP_BOUND_IF. It
is not supported on Windows. `AWS_ERROR_PLATFORM_NOT_SUPPORTED` will be raised on unsupported platforms. On
Expand Down Expand Up @@ -237,7 +237,6 @@ def __init__(
assert isinstance(credential_provider, AwsCredentialsProvider) or credential_provider is None
assert isinstance(tls_connection_options, TlsConnectionOptions) or tls_connection_options is None
assert isinstance(part_size, int) or part_size is None

assert isinstance(
throughput_target_gbps,
int) or isinstance(
Expand Down

0 comments on commit 89c61e0

Please sign in to comment.