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

Class CRTTransferMeta

awscli/s3transfer/crt.py:364–382  ·  view source on GitHub ↗

Holds metadata about the CRTTransferFuture

Source from the content-addressed store, hash-verified

362
363
364class CRTTransferMeta(BaseTransferMeta):
365 """Holds metadata about the CRTTransferFuture"""
366
367 def __init__(self, transfer_id=None, call_args=None):
368 self._transfer_id = transfer_id
369 self._call_args = call_args
370 self._user_context = {}
371
372 @property
373 def call_args(self):
374 return self._call_args
375
376 @property
377 def transfer_id(self):
378 return self._transfer_id
379
380 @property
381 def user_context(self):
382 return self._user_context
383
384
385class CRTTransferFuture(BaseTransferFuture):

Calls

no outgoing calls