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

Method __init__

awscli/s3transfer/crt.py:386–398  ·  view source on GitHub ↗

The future associated to a submitted transfer request via CRT S3 client :type meta: s3transfer.crt.CRTTransferMeta :param meta: The metadata associated to the transfer future. :type coordinator: s3transfer.crt.CRTTransferCoordinator :param coordinator: The coordinat

(self, meta=None, coordinator=None)

Source from the content-addressed store, hash-verified

384
385class CRTTransferFuture(BaseTransferFuture):
386 def __init__(self, meta=None, coordinator=None):
387 """The future associated to a submitted transfer request via CRT S3 client
388
389 :type meta: s3transfer.crt.CRTTransferMeta
390 :param meta: The metadata associated to the transfer future.
391
392 :type coordinator: s3transfer.crt.CRTTransferCoordinator
393 :param coordinator: The coordinator associated to the transfer future.
394 """
395 self._meta = meta
396 if meta is None:
397 self._meta = CRTTransferMeta()
398 self._coordinator = coordinator
399
400 @property
401 def meta(self):

Callers

nothing calls this directly

Calls 1

CRTTransferMetaClass · 0.85

Tested by

no test coverage detected