MCPcopy Create free account
hub / github.com/aws/aws-cli / TransferConfig

Class TransferConfig

awscli/s3transfer/__init__.py:667–680  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

665
666
667class TransferConfig:
668 def __init__(
669 self,
670 multipart_threshold=8 * MB,
671 max_concurrency=10,
672 multipart_chunksize=8 * MB,
673 num_download_attempts=5,
674 max_io_queue=100,
675 ):
676 self.multipart_threshold = multipart_threshold
677 self.max_concurrency = max_concurrency
678 self.multipart_chunksize = multipart_chunksize
679 self.num_download_attempts = num_download_attempts
680 self.max_io_queue = max_io_queue
681
682
683class S3Transfer:

Callers 1

__init__Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected