aws-sdk-s3 1.134.0 → 1.136.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +25 -16
- data/lib/aws-sdk-s3/client.rb +428 -384
- data/lib/aws-sdk-s3/multipart_upload.rb +15 -9
- data/lib/aws-sdk-s3/multipart_upload_part.rb +10 -6
- data/lib/aws-sdk-s3/object.rb +65 -47
- data/lib/aws-sdk-s3/object_acl.rb +5 -3
- data/lib/aws-sdk-s3/object_summary.rb +60 -44
- data/lib/aws-sdk-s3/object_version.rb +20 -12
- data/lib/aws-sdk-s3/types.rb +182 -119
- data/lib/aws-sdk-s3.rb +1 -1
- metadata +2 -2
@@ -234,9 +234,11 @@ module Aws::S3
|
|
234
234
|
# @option options [String] :request_payer
|
235
235
|
# Confirms that the requester knows that they will be charged for the
|
236
236
|
# request. Bucket owners need not specify this parameter in their
|
237
|
-
# requests.
|
238
|
-
# Pays
|
239
|
-
#
|
237
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
238
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
239
|
+
# charges to copy the object. For information about downloading objects
|
240
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
241
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
240
242
|
#
|
241
243
|
#
|
242
244
|
#
|
@@ -329,9 +331,11 @@ module Aws::S3
|
|
329
331
|
# @option options [String] :request_payer
|
330
332
|
# Confirms that the requester knows that they will be charged for the
|
331
333
|
# request. Bucket owners need not specify this parameter in their
|
332
|
-
# requests.
|
333
|
-
# Pays
|
334
|
-
#
|
334
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
335
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
336
|
+
# charges to copy the object. For information about downloading objects
|
337
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
338
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
335
339
|
#
|
336
340
|
#
|
337
341
|
#
|
@@ -420,9 +424,11 @@ module Aws::S3
|
|
420
424
|
# @option options [String] :request_payer
|
421
425
|
# Confirms that the requester knows that they will be charged for the
|
422
426
|
# request. Bucket owners need not specify this parameter in their
|
423
|
-
# requests.
|
424
|
-
# Pays
|
425
|
-
#
|
427
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
428
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
429
|
+
# charges to copy the object. For information about downloading objects
|
430
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
431
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
426
432
|
#
|
427
433
|
#
|
428
434
|
#
|
@@ -374,9 +374,11 @@ module Aws::S3
|
|
374
374
|
# @option options [String] :request_payer
|
375
375
|
# Confirms that the requester knows that they will be charged for the
|
376
376
|
# request. Bucket owners need not specify this parameter in their
|
377
|
-
# requests.
|
378
|
-
# Pays
|
379
|
-
#
|
377
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
378
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
379
|
+
# charges to copy the object. For information about downloading objects
|
380
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
381
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
380
382
|
#
|
381
383
|
#
|
382
384
|
#
|
@@ -506,9 +508,11 @@ module Aws::S3
|
|
506
508
|
# @option options [String] :request_payer
|
507
509
|
# Confirms that the requester knows that they will be charged for the
|
508
510
|
# request. Bucket owners need not specify this parameter in their
|
509
|
-
# requests.
|
510
|
-
# Pays
|
511
|
-
#
|
511
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
512
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
513
|
+
# charges to copy the object. For information about downloading objects
|
514
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
515
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
512
516
|
#
|
513
517
|
#
|
514
518
|
#
|
data/lib/aws-sdk-s3/object.rb
CHANGED
@@ -747,12 +747,13 @@ module Aws::S3
|
|
747
747
|
# The server-side encryption algorithm used when storing this object in
|
748
748
|
# Amazon S3 (for example, `AES256`, `aws:kms`, `aws:kms:dsse`).
|
749
749
|
# @option options [String] :storage_class
|
750
|
-
#
|
751
|
-
#
|
752
|
-
#
|
753
|
-
#
|
754
|
-
#
|
755
|
-
# in the *Amazon S3 User
|
750
|
+
# If the `x-amz-storage-class` header is not used, the copied object
|
751
|
+
# will be stored in the STANDARD Storage Class by default. The STANDARD
|
752
|
+
# storage class provides high durability and high availability.
|
753
|
+
# Depending on performance needs, you can specify a different Storage
|
754
|
+
# Class. Amazon S3 on Outposts only uses the OUTPOSTS Storage Class. For
|
755
|
+
# more information, see [Storage Classes][1] in the *Amazon S3 User
|
756
|
+
# Guide*.
|
756
757
|
#
|
757
758
|
#
|
758
759
|
#
|
@@ -778,12 +779,12 @@ module Aws::S3
|
|
778
779
|
# RFC 1321. Amazon S3 uses this header for a message integrity check to
|
779
780
|
# ensure that the encryption key was transmitted without error.
|
780
781
|
# @option options [String] :ssekms_key_id
|
781
|
-
# Specifies the KMS
|
782
|
-
# requests for an object protected by KMS
|
783
|
-
# via SSL or using SigV4. For information
|
784
|
-
#
|
785
|
-
# CLI, see [Specifying the Signature
|
786
|
-
# Authentication][1] in the *Amazon S3 User Guide*.
|
782
|
+
# Specifies the KMS ID (Key ID, Key ARN, or Key Alias) to use for object
|
783
|
+
# encryption. All GET and PUT requests for an object protected by KMS
|
784
|
+
# will fail if they're not made via SSL or using SigV4. For information
|
785
|
+
# about configuring any of the officially supported Amazon Web Services
|
786
|
+
# SDKs and Amazon Web Services CLI, see [Specifying the Signature
|
787
|
+
# Version in Request Authentication][1] in the *Amazon S3 User Guide*.
|
787
788
|
#
|
788
789
|
#
|
789
790
|
#
|
@@ -814,9 +815,11 @@ module Aws::S3
|
|
814
815
|
# @option options [String] :request_payer
|
815
816
|
# Confirms that the requester knows that they will be charged for the
|
816
817
|
# request. Bucket owners need not specify this parameter in their
|
817
|
-
# requests.
|
818
|
-
# Pays
|
819
|
-
#
|
818
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
819
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
820
|
+
# charges to copy the object. For information about downloading objects
|
821
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
822
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
820
823
|
#
|
821
824
|
#
|
822
825
|
#
|
@@ -872,9 +875,11 @@ module Aws::S3
|
|
872
875
|
# @option options [String] :request_payer
|
873
876
|
# Confirms that the requester knows that they will be charged for the
|
874
877
|
# request. Bucket owners need not specify this parameter in their
|
875
|
-
# requests.
|
876
|
-
# Pays
|
877
|
-
#
|
878
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
879
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
880
|
+
# charges to copy the object. For information about downloading objects
|
881
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
882
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
878
883
|
#
|
879
884
|
#
|
880
885
|
#
|
@@ -978,9 +983,11 @@ module Aws::S3
|
|
978
983
|
# @option options [String] :request_payer
|
979
984
|
# Confirms that the requester knows that they will be charged for the
|
980
985
|
# request. Bucket owners need not specify this parameter in their
|
981
|
-
# requests.
|
982
|
-
# Pays
|
983
|
-
#
|
986
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
987
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
988
|
+
# charges to copy the object. For information about downloading objects
|
989
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
990
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
984
991
|
#
|
985
992
|
#
|
986
993
|
#
|
@@ -1112,13 +1119,13 @@ module Aws::S3
|
|
1112
1119
|
# RFC 1321. Amazon S3 uses this header for a message integrity check to
|
1113
1120
|
# ensure that the encryption key was transmitted without error.
|
1114
1121
|
# @option options [String] :ssekms_key_id
|
1115
|
-
# Specifies the ID
|
1116
|
-
# use for object encryption. All GET
|
1117
|
-
# protected by KMS will fail if they're
|
1118
|
-
# SigV4. For information about configuring any
|
1119
|
-
# supported Amazon Web Services SDKs and Amazon Web
|
1120
|
-
# [Specifying the Signature Version in Request
|
1121
|
-
# *Amazon S3 User Guide*.
|
1122
|
+
# Specifies the ID (Key ID, Key ARN, or Key Alias) of the symmetric
|
1123
|
+
# encryption customer managed key to use for object encryption. All GET
|
1124
|
+
# and PUT requests for an object protected by KMS will fail if they're
|
1125
|
+
# not made via SSL or using SigV4. For information about configuring any
|
1126
|
+
# of the officially supported Amazon Web Services SDKs and Amazon Web
|
1127
|
+
# Services CLI, see [Specifying the Signature Version in Request
|
1128
|
+
# Authentication][1] in the *Amazon S3 User Guide*.
|
1122
1129
|
#
|
1123
1130
|
#
|
1124
1131
|
#
|
@@ -1138,9 +1145,11 @@ module Aws::S3
|
|
1138
1145
|
# @option options [String] :request_payer
|
1139
1146
|
# Confirms that the requester knows that they will be charged for the
|
1140
1147
|
# request. Bucket owners need not specify this parameter in their
|
1141
|
-
# requests.
|
1142
|
-
# Pays
|
1143
|
-
#
|
1148
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
1149
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
1150
|
+
# charges to copy the object. For information about downloading objects
|
1151
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
1152
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
1144
1153
|
#
|
1145
1154
|
#
|
1146
1155
|
#
|
@@ -1429,10 +1438,11 @@ module Aws::S3
|
|
1429
1438
|
# ensure that the encryption key was transmitted without error.
|
1430
1439
|
# @option options [String] :ssekms_key_id
|
1431
1440
|
# If `x-amz-server-side-encryption` has a valid value of `aws:kms` or
|
1432
|
-
# `aws:kms:dsse`, this header specifies the ID
|
1433
|
-
# Service (KMS) symmetric encryption
|
1434
|
-
# for the object. If you specify
|
1435
|
-
#
|
1441
|
+
# `aws:kms:dsse`, this header specifies the ID (Key ID, Key ARN, or Key
|
1442
|
+
# Alias) of the Key Management Service (KMS) symmetric encryption
|
1443
|
+
# customer managed key that was used for the object. If you specify
|
1444
|
+
# `x-amz-server-side-encryption:aws:kms` or
|
1445
|
+
# `x-amz-server-side-encryption:aws:kms:dsse`, but do not provide`
|
1436
1446
|
# x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
|
1437
1447
|
# Amazon Web Services managed key (`aws/s3`) to protect the data. If the
|
1438
1448
|
# KMS key does not exist in the same account that's issuing the
|
@@ -1455,9 +1465,11 @@ module Aws::S3
|
|
1455
1465
|
# @option options [String] :request_payer
|
1456
1466
|
# Confirms that the requester knows that they will be charged for the
|
1457
1467
|
# request. Bucket owners need not specify this parameter in their
|
1458
|
-
# requests.
|
1459
|
-
# Pays
|
1460
|
-
#
|
1468
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
1469
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
1470
|
+
# charges to copy the object. For information about downloading objects
|
1471
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
1472
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
1461
1473
|
#
|
1462
1474
|
#
|
1463
1475
|
#
|
@@ -1590,9 +1602,11 @@ module Aws::S3
|
|
1590
1602
|
# @option options [String] :request_payer
|
1591
1603
|
# Confirms that the requester knows that they will be charged for the
|
1592
1604
|
# request. Bucket owners need not specify this parameter in their
|
1593
|
-
# requests.
|
1594
|
-
# Pays
|
1595
|
-
#
|
1605
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
1606
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
1607
|
+
# charges to copy the object. For information about downloading objects
|
1608
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
1609
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
1596
1610
|
#
|
1597
1611
|
#
|
1598
1612
|
#
|
@@ -1681,9 +1695,11 @@ module Aws::S3
|
|
1681
1695
|
# @option options [String] :request_payer
|
1682
1696
|
# Confirms that the requester knows that they will be charged for the
|
1683
1697
|
# request. Bucket owners need not specify this parameter in their
|
1684
|
-
# requests.
|
1685
|
-
# Pays
|
1686
|
-
#
|
1698
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
1699
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
1700
|
+
# charges to copy the object. For information about downloading objects
|
1701
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
1702
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
1687
1703
|
#
|
1688
1704
|
#
|
1689
1705
|
#
|
@@ -1840,9 +1856,11 @@ module Aws::S3
|
|
1840
1856
|
# @option options [String] :request_payer
|
1841
1857
|
# Confirms that the requester knows that they will be charged for the
|
1842
1858
|
# request. Bucket owners need not specify this parameter in their
|
1843
|
-
# requests.
|
1844
|
-
# Pays
|
1845
|
-
#
|
1859
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
1860
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
1861
|
+
# charges to copy the object. For information about downloading objects
|
1862
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
1863
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
1846
1864
|
#
|
1847
1865
|
#
|
1848
1866
|
#
|
@@ -299,9 +299,11 @@ module Aws::S3
|
|
299
299
|
# @option options [String] :request_payer
|
300
300
|
# Confirms that the requester knows that they will be charged for the
|
301
301
|
# request. Bucket owners need not specify this parameter in their
|
302
|
-
# requests.
|
303
|
-
# Pays
|
304
|
-
#
|
302
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
303
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
304
|
+
# charges to copy the object. For information about downloading objects
|
305
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
306
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
305
307
|
#
|
306
308
|
#
|
307
309
|
#
|
@@ -456,12 +456,13 @@ module Aws::S3
|
|
456
456
|
# The server-side encryption algorithm used when storing this object in
|
457
457
|
# Amazon S3 (for example, `AES256`, `aws:kms`, `aws:kms:dsse`).
|
458
458
|
# @option options [String] :storage_class
|
459
|
-
#
|
460
|
-
#
|
461
|
-
#
|
462
|
-
#
|
463
|
-
#
|
464
|
-
# in the *Amazon S3 User
|
459
|
+
# If the `x-amz-storage-class` header is not used, the copied object
|
460
|
+
# will be stored in the STANDARD Storage Class by default. The STANDARD
|
461
|
+
# storage class provides high durability and high availability.
|
462
|
+
# Depending on performance needs, you can specify a different Storage
|
463
|
+
# Class. Amazon S3 on Outposts only uses the OUTPOSTS Storage Class. For
|
464
|
+
# more information, see [Storage Classes][1] in the *Amazon S3 User
|
465
|
+
# Guide*.
|
465
466
|
#
|
466
467
|
#
|
467
468
|
#
|
@@ -487,12 +488,12 @@ module Aws::S3
|
|
487
488
|
# RFC 1321. Amazon S3 uses this header for a message integrity check to
|
488
489
|
# ensure that the encryption key was transmitted without error.
|
489
490
|
# @option options [String] :ssekms_key_id
|
490
|
-
# Specifies the KMS
|
491
|
-
# requests for an object protected by KMS
|
492
|
-
# via SSL or using SigV4. For information
|
493
|
-
#
|
494
|
-
# CLI, see [Specifying the Signature
|
495
|
-
# Authentication][1] in the *Amazon S3 User Guide*.
|
491
|
+
# Specifies the KMS ID (Key ID, Key ARN, or Key Alias) to use for object
|
492
|
+
# encryption. All GET and PUT requests for an object protected by KMS
|
493
|
+
# will fail if they're not made via SSL or using SigV4. For information
|
494
|
+
# about configuring any of the officially supported Amazon Web Services
|
495
|
+
# SDKs and Amazon Web Services CLI, see [Specifying the Signature
|
496
|
+
# Version in Request Authentication][1] in the *Amazon S3 User Guide*.
|
496
497
|
#
|
497
498
|
#
|
498
499
|
#
|
@@ -523,9 +524,11 @@ module Aws::S3
|
|
523
524
|
# @option options [String] :request_payer
|
524
525
|
# Confirms that the requester knows that they will be charged for the
|
525
526
|
# request. Bucket owners need not specify this parameter in their
|
526
|
-
# requests.
|
527
|
-
# Pays
|
528
|
-
#
|
527
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
528
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
529
|
+
# charges to copy the object. For information about downloading objects
|
530
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
531
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
529
532
|
#
|
530
533
|
#
|
531
534
|
#
|
@@ -581,9 +584,11 @@ module Aws::S3
|
|
581
584
|
# @option options [String] :request_payer
|
582
585
|
# Confirms that the requester knows that they will be charged for the
|
583
586
|
# request. Bucket owners need not specify this parameter in their
|
584
|
-
# requests.
|
585
|
-
# Pays
|
586
|
-
#
|
587
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
588
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
589
|
+
# charges to copy the object. For information about downloading objects
|
590
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
591
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
587
592
|
#
|
588
593
|
#
|
589
594
|
#
|
@@ -687,9 +692,11 @@ module Aws::S3
|
|
687
692
|
# @option options [String] :request_payer
|
688
693
|
# Confirms that the requester knows that they will be charged for the
|
689
694
|
# request. Bucket owners need not specify this parameter in their
|
690
|
-
# requests.
|
691
|
-
# Pays
|
692
|
-
#
|
695
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
696
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
697
|
+
# charges to copy the object. For information about downloading objects
|
698
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
699
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
693
700
|
#
|
694
701
|
#
|
695
702
|
#
|
@@ -821,13 +828,13 @@ module Aws::S3
|
|
821
828
|
# RFC 1321. Amazon S3 uses this header for a message integrity check to
|
822
829
|
# ensure that the encryption key was transmitted without error.
|
823
830
|
# @option options [String] :ssekms_key_id
|
824
|
-
# Specifies the ID
|
825
|
-
# use for object encryption. All GET
|
826
|
-
# protected by KMS will fail if they're
|
827
|
-
# SigV4. For information about configuring any
|
828
|
-
# supported Amazon Web Services SDKs and Amazon Web
|
829
|
-
# [Specifying the Signature Version in Request
|
830
|
-
# *Amazon S3 User Guide*.
|
831
|
+
# Specifies the ID (Key ID, Key ARN, or Key Alias) of the symmetric
|
832
|
+
# encryption customer managed key to use for object encryption. All GET
|
833
|
+
# and PUT requests for an object protected by KMS will fail if they're
|
834
|
+
# not made via SSL or using SigV4. For information about configuring any
|
835
|
+
# of the officially supported Amazon Web Services SDKs and Amazon Web
|
836
|
+
# Services CLI, see [Specifying the Signature Version in Request
|
837
|
+
# Authentication][1] in the *Amazon S3 User Guide*.
|
831
838
|
#
|
832
839
|
#
|
833
840
|
#
|
@@ -847,9 +854,11 @@ module Aws::S3
|
|
847
854
|
# @option options [String] :request_payer
|
848
855
|
# Confirms that the requester knows that they will be charged for the
|
849
856
|
# request. Bucket owners need not specify this parameter in their
|
850
|
-
# requests.
|
851
|
-
# Pays
|
852
|
-
#
|
857
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
858
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
859
|
+
# charges to copy the object. For information about downloading objects
|
860
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
861
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
853
862
|
#
|
854
863
|
#
|
855
864
|
#
|
@@ -1138,10 +1147,11 @@ module Aws::S3
|
|
1138
1147
|
# ensure that the encryption key was transmitted without error.
|
1139
1148
|
# @option options [String] :ssekms_key_id
|
1140
1149
|
# If `x-amz-server-side-encryption` has a valid value of `aws:kms` or
|
1141
|
-
# `aws:kms:dsse`, this header specifies the ID
|
1142
|
-
# Service (KMS) symmetric encryption
|
1143
|
-
# for the object. If you specify
|
1144
|
-
#
|
1150
|
+
# `aws:kms:dsse`, this header specifies the ID (Key ID, Key ARN, or Key
|
1151
|
+
# Alias) of the Key Management Service (KMS) symmetric encryption
|
1152
|
+
# customer managed key that was used for the object. If you specify
|
1153
|
+
# `x-amz-server-side-encryption:aws:kms` or
|
1154
|
+
# `x-amz-server-side-encryption:aws:kms:dsse`, but do not provide`
|
1145
1155
|
# x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the
|
1146
1156
|
# Amazon Web Services managed key (`aws/s3`) to protect the data. If the
|
1147
1157
|
# KMS key does not exist in the same account that's issuing the
|
@@ -1164,9 +1174,11 @@ module Aws::S3
|
|
1164
1174
|
# @option options [String] :request_payer
|
1165
1175
|
# Confirms that the requester knows that they will be charged for the
|
1166
1176
|
# request. Bucket owners need not specify this parameter in their
|
1167
|
-
# requests.
|
1168
|
-
# Pays
|
1169
|
-
#
|
1177
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
1178
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
1179
|
+
# charges to copy the object. For information about downloading objects
|
1180
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
1181
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
1170
1182
|
#
|
1171
1183
|
#
|
1172
1184
|
#
|
@@ -1299,9 +1311,11 @@ module Aws::S3
|
|
1299
1311
|
# @option options [String] :request_payer
|
1300
1312
|
# Confirms that the requester knows that they will be charged for the
|
1301
1313
|
# request. Bucket owners need not specify this parameter in their
|
1302
|
-
# requests.
|
1303
|
-
# Pays
|
1304
|
-
#
|
1314
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
1315
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
1316
|
+
# charges to copy the object. For information about downloading objects
|
1317
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
1318
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
1305
1319
|
#
|
1306
1320
|
#
|
1307
1321
|
#
|
@@ -1470,9 +1484,11 @@ module Aws::S3
|
|
1470
1484
|
# @option options [String] :request_payer
|
1471
1485
|
# Confirms that the requester knows that they will be charged for the
|
1472
1486
|
# request. Bucket owners need not specify this parameter in their
|
1473
|
-
# requests.
|
1474
|
-
# Pays
|
1475
|
-
#
|
1487
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
1488
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
1489
|
+
# charges to copy the object. For information about downloading objects
|
1490
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
1491
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
1476
1492
|
#
|
1477
1493
|
#
|
1478
1494
|
#
|
@@ -267,9 +267,11 @@ module Aws::S3
|
|
267
267
|
# @option options [String] :request_payer
|
268
268
|
# Confirms that the requester knows that they will be charged for the
|
269
269
|
# request. Bucket owners need not specify this parameter in their
|
270
|
-
# requests.
|
271
|
-
# Pays
|
272
|
-
#
|
270
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
271
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
272
|
+
# charges to copy the object. For information about downloading objects
|
273
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
274
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
273
275
|
#
|
274
276
|
#
|
275
277
|
#
|
@@ -371,9 +373,11 @@ module Aws::S3
|
|
371
373
|
# @option options [String] :request_payer
|
372
374
|
# Confirms that the requester knows that they will be charged for the
|
373
375
|
# request. Bucket owners need not specify this parameter in their
|
374
|
-
# requests.
|
375
|
-
# Pays
|
376
|
-
#
|
376
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
377
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
378
|
+
# charges to copy the object. For information about downloading objects
|
379
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
380
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
377
381
|
#
|
378
382
|
#
|
379
383
|
#
|
@@ -452,9 +456,11 @@ module Aws::S3
|
|
452
456
|
# @option options [String] :request_payer
|
453
457
|
# Confirms that the requester knows that they will be charged for the
|
454
458
|
# request. Bucket owners need not specify this parameter in their
|
455
|
-
# requests.
|
456
|
-
# Pays
|
457
|
-
#
|
459
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
460
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
461
|
+
# charges to copy the object. For information about downloading objects
|
462
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
463
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
458
464
|
#
|
459
465
|
#
|
460
466
|
#
|
@@ -567,9 +573,11 @@ module Aws::S3
|
|
567
573
|
# @option options [String] :request_payer
|
568
574
|
# Confirms that the requester knows that they will be charged for the
|
569
575
|
# request. Bucket owners need not specify this parameter in their
|
570
|
-
# requests.
|
571
|
-
# Pays
|
572
|
-
#
|
576
|
+
# requests. If either the source or destination Amazon S3 bucket has
|
577
|
+
# Requester Pays enabled, the requester will pay for corresponding
|
578
|
+
# charges to copy the object. For information about downloading objects
|
579
|
+
# from Requester Pays buckets, see [Downloading Objects in Requester
|
580
|
+
# Pays Buckets][1] in the *Amazon S3 User Guide*.
|
573
581
|
#
|
574
582
|
#
|
575
583
|
#
|