@@ -116,7 +116,8 @@ def upload_file(self, Filename, Bucket, Key, ExtraArgs=None,
116
116
117
117
:type ExtraArgs: dict
118
118
:param ExtraArgs: Extra arguments that may be passed to the
119
- client operation.
119
+ client operation. For allowed upload arguments see
120
+ boto3.s3.transfer.S3Transfer.ALLOWED_UPLOAD_ARGS.
120
121
121
122
:type Callback: function
122
123
:param Callback: A method which takes a number of bytes transferred to
@@ -157,7 +158,8 @@ def download_file(self, Bucket, Key, Filename, ExtraArgs=None,
157
158
158
159
:type ExtraArgs: dict
159
160
:param ExtraArgs: Extra arguments that may be passed to the
160
- client operation.
161
+ client operation. For allowed download arguments see
162
+ boto3.s3.transfer.S3Transfer.ALLOWED_DOWNLOAD_ARGS.
161
163
162
164
:type Callback: function
163
165
:param Callback: A method which takes a number of bytes transferred to
@@ -195,7 +197,8 @@ def bucket_upload_file(self, Filename, Key,
195
197
196
198
:type ExtraArgs: dict
197
199
:param ExtraArgs: Extra arguments that may be passed to the
198
- client operation.
200
+ client operation. For allowed upload arguments see
201
+ boto3.s3.transfer.S3Transfer.ALLOWED_UPLOAD_ARGS.
199
202
200
203
:type Callback: function
201
204
:param Callback: A method which takes a number of bytes transferred to
@@ -232,7 +235,8 @@ def bucket_download_file(self, Key, Filename,
232
235
233
236
:type ExtraArgs: dict
234
237
:param ExtraArgs: Extra arguments that may be passed to the
235
- client operation.
238
+ client operation. For allowed download arguments see
239
+ boto3.s3.transfer.S3Transfer.ALLOWED_DOWNLOAD_ARGS.
236
240
237
241
:type Callback: function
238
242
:param Callback: A method which takes a number of bytes transferred to
@@ -266,7 +270,8 @@ def object_upload_file(self, Filename,
266
270
267
271
:type ExtraArgs: dict
268
272
:param ExtraArgs: Extra arguments that may be passed to the
269
- client operation.
273
+ client operation. For allowed upload arguments see
274
+ boto3.s3.transfer.S3Transfer.ALLOWED_UPLOAD_ARGS.
270
275
271
276
:type Callback: function
272
277
:param Callback: A method which takes a number of bytes transferred to
@@ -300,7 +305,8 @@ def object_download_file(self, Filename,
300
305
301
306
:type ExtraArgs: dict
302
307
:param ExtraArgs: Extra arguments that may be passed to the
303
- client operation.
308
+ client operation. For allowed download arguments see
309
+ boto3.s3.transfer.S3Transfer.ALLOWED_DOWNLOAD_ARGS.
304
310
305
311
:type Callback: function
306
312
:param Callback: A method which takes a number of bytes transferred to
@@ -347,7 +353,8 @@ def copy(self, CopySource, Bucket, Key, ExtraArgs=None, Callback=None,
347
353
348
354
:type ExtraArgs: dict
349
355
:param ExtraArgs: Extra arguments that may be passed to the
350
- client operation
356
+ client operation. For allowed download arguments see
357
+ boto3.s3.transfer.S3Transfer.ALLOWED_DOWNLOAD_ARGS.
351
358
352
359
:type Callback: function
353
360
:param Callback: A method which takes a number of bytes transferred to
@@ -410,7 +417,8 @@ def bucket_copy(self, CopySource, Key, ExtraArgs=None, Callback=None,
410
417
411
418
:type ExtraArgs: dict
412
419
:param ExtraArgs: Extra arguments that may be passed to the
413
- client operation
420
+ client operation. For allowed download arguments see
421
+ boto3.s3.transfer.S3Transfer.ALLOWED_DOWNLOAD_ARGS.
414
422
415
423
:type Callback: function
416
424
:param Callback: A method which takes a number of bytes transferred to
@@ -460,7 +468,8 @@ def object_copy(self, CopySource, ExtraArgs=None, Callback=None,
460
468
461
469
:type ExtraArgs: dict
462
470
:param ExtraArgs: Extra arguments that may be passed to the
463
- client operation
471
+ client operation. For allowed download arguments see
472
+ boto3.s3.transfer.S3Transfer.ALLOWED_DOWNLOAD_ARGS.
464
473
465
474
:type Callback: function
466
475
:param Callback: A method which takes a number of bytes transferred to
@@ -512,7 +521,8 @@ def upload_fileobj(self, Fileobj, Bucket, Key, ExtraArgs=None,
512
521
513
522
:type ExtraArgs: dict
514
523
:param ExtraArgs: Extra arguments that may be passed to the
515
- client operation.
524
+ client operation. For allowed upload arguments see
525
+ boto3.s3.transfer.S3Transfer.ALLOWED_UPLOAD_ARGS.
516
526
517
527
:type Callback: function
518
528
:param Callback: A method which takes a number of bytes transferred to
@@ -567,7 +577,8 @@ def bucket_upload_fileobj(self, Fileobj, Key, ExtraArgs=None,
567
577
568
578
:type ExtraArgs: dict
569
579
:param ExtraArgs: Extra arguments that may be passed to the
570
- client operation.
580
+ client operation. For allowed upload arguments see
581
+ boto3.s3.transfer.S3Transfer.ALLOWED_UPLOAD_ARGS.
571
582
572
583
:type Callback: function
573
584
:param Callback: A method which takes a number of bytes transferred to
@@ -607,7 +618,8 @@ def object_upload_fileobj(self, Fileobj, ExtraArgs=None, Callback=None,
607
618
608
619
:type ExtraArgs: dict
609
620
:param ExtraArgs: Extra arguments that may be passed to the
610
- client operation.
621
+ client operation. For allowed upload arguments see
622
+ boto3.s3.transfer.S3Transfer.ALLOWED_UPLOAD_ARGS.
611
623
612
624
:type Callback: function
613
625
:param Callback: A method which takes a number of bytes transferred to
@@ -651,7 +663,8 @@ def download_fileobj(self, Bucket, Key, Fileobj, ExtraArgs=None,
651
663
652
664
:type ExtraArgs: dict
653
665
:param ExtraArgs: Extra arguments that may be passed to the
654
- client operation.
666
+ client operation. For allowed download arguments see
667
+ boto3.s3.transfer.S3Transfer.ALLOWED_DOWNLOAD_ARGS.
655
668
656
669
:type Callback: function
657
670
:param Callback: A method which takes a number of bytes transferred to
@@ -706,7 +719,8 @@ def bucket_download_fileobj(self, Key, Fileobj, ExtraArgs=None,
706
719
707
720
:type ExtraArgs: dict
708
721
:param ExtraArgs: Extra arguments that may be passed to the
709
- client operation.
722
+ client operation. For allowed download arguments see
723
+ boto3.s3.transfer.S3Transfer.ALLOWED_DOWNLOAD_ARGS.
710
724
711
725
:type Callback: function
712
726
:param Callback: A method which takes a number of bytes transferred to
@@ -746,7 +760,8 @@ def object_download_fileobj(self, Fileobj, ExtraArgs=None, Callback=None,
746
760
747
761
:type ExtraArgs: dict
748
762
:param ExtraArgs: Extra arguments that may be passed to the
749
- client operation.
763
+ client operation. For allowed download arguments see
764
+ boto3.s3.transfer.S3Transfer.ALLOWED_DOWNLOAD_ARGS.
750
765
751
766
:type Callback: function
752
767
:param Callback: A method which takes a number of bytes transferred to
0 commit comments