aws-sdk-s3 1.59.1 → 1.60.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/lib/aws-sdk-s3.rb +1 -1
- data/lib/aws-sdk-s3/bucket.rb +17 -16
- data/lib/aws-sdk-s3/client.rb +168 -148
- data/lib/aws-sdk-s3/multipart_upload.rb +15 -15
- data/lib/aws-sdk-s3/multipart_upload_part.rb +10 -10
- data/lib/aws-sdk-s3/object.rb +51 -49
- data/lib/aws-sdk-s3/object_acl.rb +5 -5
- data/lib/aws-sdk-s3/object_summary.rb +49 -48
- data/lib/aws-sdk-s3/object_version.rb +20 -20
- data/lib/aws-sdk-s3/types.rb +156 -132
- metadata +2 -2
@@ -237,15 +237,15 @@ module Aws::S3
|
|
237
237
|
# Required to permanently delete a versioned object if versioning is
|
238
238
|
# configured with MFA delete enabled.
|
239
239
|
# @option options [String] :request_payer
|
240
|
-
# Confirms that the requester knows that
|
241
|
-
#
|
242
|
-
# requests. For information about downloading objects from
|
243
|
-
#
|
240
|
+
# Confirms that the requester knows that they will be charged for the
|
241
|
+
# request. Bucket owners need not specify this parameter in their
|
242
|
+
# requests. For information about downloading objects from requester
|
243
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
244
244
|
# in the *Amazon S3 Developer Guide*.
|
245
245
|
#
|
246
246
|
#
|
247
247
|
#
|
248
|
-
# [1]: https://docs.aws.amazon.com/
|
248
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
249
249
|
# @option options [Boolean] :bypass_governance_retention
|
250
250
|
# Indicates whether S3 Object Lock should bypass Governance-mode
|
251
251
|
# restrictions to process this operation.
|
@@ -323,15 +323,15 @@ module Aws::S3
|
|
323
323
|
# RFC 1321. Amazon S3 uses this header for a message integrity check to
|
324
324
|
# ensure that the encryption key was transmitted without error.
|
325
325
|
# @option options [String] :request_payer
|
326
|
-
# Confirms that the requester knows that
|
327
|
-
#
|
328
|
-
# requests. For information about downloading objects from
|
329
|
-
#
|
326
|
+
# Confirms that the requester knows that they will be charged for the
|
327
|
+
# request. Bucket owners need not specify this parameter in their
|
328
|
+
# requests. For information about downloading objects from requester
|
329
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
330
330
|
# in the *Amazon S3 Developer Guide*.
|
331
331
|
#
|
332
332
|
#
|
333
333
|
#
|
334
|
-
# [1]: https://docs.aws.amazon.com/
|
334
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
335
335
|
# @option options [Integer] :part_number
|
336
336
|
# Part number of the object being read. This is a positive integer
|
337
337
|
# between 1 and 10,000. Effectively performs a 'ranged' GET request
|
@@ -393,15 +393,15 @@ module Aws::S3
|
|
393
393
|
# RFC 1321. Amazon S3 uses this header for a message integrity check to
|
394
394
|
# ensure that the encryption key was transmitted without error.
|
395
395
|
# @option options [String] :request_payer
|
396
|
-
# Confirms that the requester knows that
|
397
|
-
#
|
398
|
-
# requests. For information about downloading objects from
|
399
|
-
#
|
396
|
+
# Confirms that the requester knows that they will be charged for the
|
397
|
+
# request. Bucket owners need not specify this parameter in their
|
398
|
+
# requests. For information about downloading objects from requester
|
399
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
400
400
|
# in the *Amazon S3 Developer Guide*.
|
401
401
|
#
|
402
402
|
#
|
403
403
|
#
|
404
|
-
# [1]: https://docs.aws.amazon.com/
|
404
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
405
405
|
# @option options [Integer] :part_number
|
406
406
|
# Part number of the object being read. This is a positive integer
|
407
407
|
# between 1 and 10,000. Effectively performs a 'ranged' HEAD request
|
@@ -493,15 +493,15 @@ module Aws::S3
|
|
493
493
|
# Required to permanently delete a versioned object if versioning is
|
494
494
|
# configured with MFA delete enabled.
|
495
495
|
# @option options [String] :request_payer
|
496
|
-
# Confirms that the requester knows that
|
497
|
-
#
|
498
|
-
# requests. For information about downloading objects from
|
499
|
-
#
|
496
|
+
# Confirms that the requester knows that they will be charged for the
|
497
|
+
# request. Bucket owners need not specify this parameter in their
|
498
|
+
# requests. For information about downloading objects from requester
|
499
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
500
500
|
# in the *Amazon S3 Developer Guide*.
|
501
501
|
#
|
502
502
|
#
|
503
503
|
#
|
504
|
-
# [1]: https://docs.aws.amazon.com/
|
504
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
505
505
|
# @option options [Boolean] :bypass_governance_retention
|
506
506
|
# Specifies whether you want to delete this object even if it has a
|
507
507
|
# Governance-type Object Lock in place. You must have sufficient
|
data/lib/aws-sdk-s3/types.rb
CHANGED
@@ -85,15 +85,15 @@ module Aws::S3
|
|
85
85
|
# @return [String]
|
86
86
|
#
|
87
87
|
# @!attribute [rw] request_payer
|
88
|
-
# Confirms that the requester knows that
|
89
|
-
#
|
90
|
-
# requests. For information about downloading objects from
|
91
|
-
#
|
88
|
+
# Confirms that the requester knows that they will be charged for the
|
89
|
+
# request. Bucket owners need not specify this parameter in their
|
90
|
+
# requests. For information about downloading objects from requester
|
91
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
92
92
|
# in the *Amazon S3 Developer Guide*.
|
93
93
|
#
|
94
94
|
#
|
95
95
|
#
|
96
|
-
# [1]: https://docs.aws.amazon.com/
|
96
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
97
97
|
# @return [String]
|
98
98
|
#
|
99
99
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/AbortMultipartUploadRequest AWS API Documentation
|
@@ -882,7 +882,8 @@ module Aws::S3
|
|
882
882
|
#
|
883
883
|
# @!attribute [rw] ssekms_key_id
|
884
884
|
# If present, specifies the ID of the AWS Key Management Service (AWS
|
885
|
-
# KMS) customer master key (CMK) that was
|
885
|
+
# KMS) symmetric customer managed customer master key (CMK) that was
|
886
|
+
# used for the object.
|
886
887
|
# @return [String]
|
887
888
|
#
|
888
889
|
# @!attribute [rw] request_charged
|
@@ -940,15 +941,15 @@ module Aws::S3
|
|
940
941
|
# @return [String]
|
941
942
|
#
|
942
943
|
# @!attribute [rw] request_payer
|
943
|
-
# Confirms that the requester knows that
|
944
|
-
#
|
945
|
-
# requests. For information about downloading objects from
|
946
|
-
#
|
944
|
+
# Confirms that the requester knows that they will be charged for the
|
945
|
+
# request. Bucket owners need not specify this parameter in their
|
946
|
+
# requests. For information about downloading objects from requester
|
947
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
947
948
|
# in the *Amazon S3 Developer Guide*.
|
948
949
|
#
|
949
950
|
#
|
950
951
|
#
|
951
|
-
# [1]: https://docs.aws.amazon.com/
|
952
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
952
953
|
# @return [String]
|
953
954
|
#
|
954
955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/CompleteMultipartUploadRequest AWS API Documentation
|
@@ -1100,7 +1101,8 @@ module Aws::S3
|
|
1100
1101
|
#
|
1101
1102
|
# @!attribute [rw] ssekms_key_id
|
1102
1103
|
# If present, specifies the ID of the AWS Key Management Service (AWS
|
1103
|
-
# KMS) customer master key (CMK) that was
|
1104
|
+
# KMS) symmetric customer managed customer master key (CMK) that was
|
1105
|
+
# used for the object.
|
1104
1106
|
# @return [String]
|
1105
1107
|
#
|
1106
1108
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -1314,7 +1316,7 @@ module Aws::S3
|
|
1314
1316
|
#
|
1315
1317
|
#
|
1316
1318
|
#
|
1317
|
-
# [1]: https://docs.aws.amazon.com/
|
1319
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
|
1318
1320
|
# @return [String]
|
1319
1321
|
#
|
1320
1322
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -1341,15 +1343,15 @@ module Aws::S3
|
|
1341
1343
|
# @return [String]
|
1342
1344
|
#
|
1343
1345
|
# @!attribute [rw] request_payer
|
1344
|
-
# Confirms that the requester knows that
|
1345
|
-
#
|
1346
|
-
# requests. For information about downloading objects from
|
1347
|
-
#
|
1346
|
+
# Confirms that the requester knows that they will be charged for the
|
1347
|
+
# request. Bucket owners need not specify this parameter in their
|
1348
|
+
# requests. For information about downloading objects from requester
|
1349
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
1348
1350
|
# in the *Amazon S3 Developer Guide*.
|
1349
1351
|
#
|
1350
1352
|
#
|
1351
1353
|
#
|
1352
|
-
# [1]: https://docs.aws.amazon.com/
|
1354
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
1353
1355
|
# @return [String]
|
1354
1356
|
#
|
1355
1357
|
# @!attribute [rw] tagging
|
@@ -1628,7 +1630,8 @@ module Aws::S3
|
|
1628
1630
|
#
|
1629
1631
|
# @!attribute [rw] ssekms_key_id
|
1630
1632
|
# If present, specifies the ID of the AWS Key Management Service (AWS
|
1631
|
-
# KMS) customer master key (CMK) that was
|
1633
|
+
# KMS) symmetric customer managed customer master key (CMK) that was
|
1634
|
+
# used for the object.
|
1632
1635
|
# @return [String]
|
1633
1636
|
#
|
1634
1637
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -1790,12 +1793,13 @@ module Aws::S3
|
|
1790
1793
|
# @return [String]
|
1791
1794
|
#
|
1792
1795
|
# @!attribute [rw] ssekms_key_id
|
1793
|
-
# Specifies the
|
1794
|
-
#
|
1795
|
-
# made via SSL or using SigV4.
|
1796
|
-
#
|
1797
|
-
#
|
1798
|
-
# the *Amazon S3 Developer
|
1796
|
+
# Specifies the ID of the symmetric customer managed AWS KMS CMK to
|
1797
|
+
# use for object encryption. All GET and PUT requests for an object
|
1798
|
+
# protected by AWS KMS will fail if not made via SSL or using SigV4.
|
1799
|
+
# For information about configuring using any of the officially
|
1800
|
+
# supported AWS SDKs and AWS CLI, see [Specifying the Signature
|
1801
|
+
# Version in Request Authentication][1] in the *Amazon S3 Developer
|
1802
|
+
# Guide*.
|
1799
1803
|
#
|
1800
1804
|
#
|
1801
1805
|
#
|
@@ -1809,15 +1813,15 @@ module Aws::S3
|
|
1809
1813
|
# @return [String]
|
1810
1814
|
#
|
1811
1815
|
# @!attribute [rw] request_payer
|
1812
|
-
# Confirms that the requester knows that
|
1813
|
-
#
|
1814
|
-
# requests. For information about downloading objects from
|
1815
|
-
#
|
1816
|
+
# Confirms that the requester knows that they will be charged for the
|
1817
|
+
# request. Bucket owners need not specify this parameter in their
|
1818
|
+
# requests. For information about downloading objects from requester
|
1819
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
1816
1820
|
# in the *Amazon S3 Developer Guide*.
|
1817
1821
|
#
|
1818
1822
|
#
|
1819
1823
|
#
|
1820
|
-
# [1]: https://docs.aws.amazon.com/
|
1824
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
1821
1825
|
# @return [String]
|
1822
1826
|
#
|
1823
1827
|
# @!attribute [rw] tagging
|
@@ -2307,15 +2311,15 @@ module Aws::S3
|
|
2307
2311
|
# @return [String]
|
2308
2312
|
#
|
2309
2313
|
# @!attribute [rw] request_payer
|
2310
|
-
# Confirms that the requester knows that
|
2311
|
-
#
|
2312
|
-
# requests. For information about downloading objects from
|
2313
|
-
#
|
2314
|
+
# Confirms that the requester knows that they will be charged for the
|
2315
|
+
# request. Bucket owners need not specify this parameter in their
|
2316
|
+
# requests. For information about downloading objects from requester
|
2317
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
2314
2318
|
# in the *Amazon S3 Developer Guide*.
|
2315
2319
|
#
|
2316
2320
|
#
|
2317
2321
|
#
|
2318
|
-
# [1]: https://docs.aws.amazon.com/
|
2322
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
2319
2323
|
# @return [String]
|
2320
2324
|
#
|
2321
2325
|
# @!attribute [rw] bypass_governance_retention
|
@@ -2462,15 +2466,15 @@ module Aws::S3
|
|
2462
2466
|
# @return [String]
|
2463
2467
|
#
|
2464
2468
|
# @!attribute [rw] request_payer
|
2465
|
-
# Confirms that the requester knows that
|
2466
|
-
#
|
2467
|
-
# requests. For information about downloading objects from
|
2468
|
-
#
|
2469
|
+
# Confirms that the requester knows that they will be charged for the
|
2470
|
+
# request. Bucket owners need not specify this parameter in their
|
2471
|
+
# requests. For information about downloading objects from requester
|
2472
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
2469
2473
|
# in the *Amazon S3 Developer Guide*.
|
2470
2474
|
#
|
2471
2475
|
#
|
2472
2476
|
#
|
2473
|
-
# [1]: https://docs.aws.amazon.com/
|
2477
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
2474
2478
|
# @return [String]
|
2475
2479
|
#
|
2476
2480
|
# @!attribute [rw] bypass_governance_retention
|
@@ -2666,7 +2670,14 @@ module Aws::S3
|
|
2666
2670
|
#
|
2667
2671
|
# @!attribute [rw] kms_key_id
|
2668
2672
|
# If the encryption type is `aws:kms`, this optional value specifies
|
2669
|
-
# the AWS KMS
|
2673
|
+
# the ID of the symmetric customer managed AWS KMS CMK to use for
|
2674
|
+
# encryption of job results. Amazon S3 only supports symmetric CMKs.
|
2675
|
+
# For more information, see [Using Symmetric and Asymmetric Keys][1]
|
2676
|
+
# in the *AWS Key Management Service Developer Guide*.
|
2677
|
+
#
|
2678
|
+
#
|
2679
|
+
#
|
2680
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
|
2670
2681
|
# @return [String]
|
2671
2682
|
#
|
2672
2683
|
# @!attribute [rw] kms_context
|
@@ -2694,9 +2705,16 @@ module Aws::S3
|
|
2694
2705
|
# }
|
2695
2706
|
#
|
2696
2707
|
# @!attribute [rw] replica_kms_key_id
|
2697
|
-
# Specifies the
|
2698
|
-
#
|
2699
|
-
#
|
2708
|
+
# Specifies the ID (Key ARN or Alias ARN) of the customer managed
|
2709
|
+
# customer master key (CMK) stored in AWS Key Management Service (KMS)
|
2710
|
+
# for the destination bucket. Amazon S3 uses this key to encrypt
|
2711
|
+
# replica objects. Amazon S3 only supports symmetric customer managed
|
2712
|
+
# CMKs. For more information, see [Using Symmetric and Asymmetric
|
2713
|
+
# Keys][1] in the *AWS Key Management Service Developer Guide*.
|
2714
|
+
#
|
2715
|
+
#
|
2716
|
+
#
|
2717
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
|
2700
2718
|
# @return [String]
|
2701
2719
|
#
|
2702
2720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/EncryptionConfiguration AWS API Documentation
|
@@ -4292,15 +4310,15 @@ module Aws::S3
|
|
4292
4310
|
# @return [String]
|
4293
4311
|
#
|
4294
4312
|
# @!attribute [rw] request_payer
|
4295
|
-
# Confirms that the requester knows that
|
4296
|
-
#
|
4297
|
-
# requests. For information about downloading objects from
|
4298
|
-
#
|
4313
|
+
# Confirms that the requester knows that they will be charged for the
|
4314
|
+
# request. Bucket owners need not specify this parameter in their
|
4315
|
+
# requests. For information about downloading objects from requester
|
4316
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
4299
4317
|
# in the *Amazon S3 Developer Guide*.
|
4300
4318
|
#
|
4301
4319
|
#
|
4302
4320
|
#
|
4303
|
-
# [1]: https://docs.aws.amazon.com/
|
4321
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
4304
4322
|
# @return [String]
|
4305
4323
|
#
|
4306
4324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetObjectAclRequest AWS API Documentation
|
@@ -4363,15 +4381,15 @@ module Aws::S3
|
|
4363
4381
|
# @return [String]
|
4364
4382
|
#
|
4365
4383
|
# @!attribute [rw] request_payer
|
4366
|
-
# Confirms that the requester knows that
|
4367
|
-
#
|
4368
|
-
# requests. For information about downloading objects from
|
4369
|
-
#
|
4384
|
+
# Confirms that the requester knows that they will be charged for the
|
4385
|
+
# request. Bucket owners need not specify this parameter in their
|
4386
|
+
# requests. For information about downloading objects from requester
|
4387
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
4370
4388
|
# in the *Amazon S3 Developer Guide*.
|
4371
4389
|
#
|
4372
4390
|
#
|
4373
4391
|
#
|
4374
|
-
# [1]: https://docs.aws.amazon.com/
|
4392
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
4375
4393
|
# @return [String]
|
4376
4394
|
#
|
4377
4395
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetObjectLegalHoldRequest AWS API Documentation
|
@@ -4528,7 +4546,8 @@ module Aws::S3
|
|
4528
4546
|
#
|
4529
4547
|
# @!attribute [rw] ssekms_key_id
|
4530
4548
|
# If present, specifies the ID of the AWS Key Management Service (AWS
|
4531
|
-
# KMS) customer master key (CMK) that was
|
4549
|
+
# KMS) symmetric customer managed customer master key (CMK) that was
|
4550
|
+
# used for the object.
|
4532
4551
|
# @return [String]
|
4533
4552
|
#
|
4534
4553
|
# @!attribute [rw] storage_class
|
@@ -4727,15 +4746,15 @@ module Aws::S3
|
|
4727
4746
|
# @return [String]
|
4728
4747
|
#
|
4729
4748
|
# @!attribute [rw] request_payer
|
4730
|
-
# Confirms that the requester knows that
|
4731
|
-
#
|
4732
|
-
# requests. For information about downloading objects from
|
4733
|
-
#
|
4749
|
+
# Confirms that the requester knows that they will be charged for the
|
4750
|
+
# request. Bucket owners need not specify this parameter in their
|
4751
|
+
# requests. For information about downloading objects from requester
|
4752
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
4734
4753
|
# in the *Amazon S3 Developer Guide*.
|
4735
4754
|
#
|
4736
4755
|
#
|
4737
4756
|
#
|
4738
|
-
# [1]: https://docs.aws.amazon.com/
|
4757
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
4739
4758
|
# @return [String]
|
4740
4759
|
#
|
4741
4760
|
# @!attribute [rw] part_number
|
@@ -4820,15 +4839,15 @@ module Aws::S3
|
|
4820
4839
|
# @return [String]
|
4821
4840
|
#
|
4822
4841
|
# @!attribute [rw] request_payer
|
4823
|
-
# Confirms that the requester knows that
|
4824
|
-
#
|
4825
|
-
# requests. For information about downloading objects from
|
4826
|
-
#
|
4842
|
+
# Confirms that the requester knows that they will be charged for the
|
4843
|
+
# request. Bucket owners need not specify this parameter in their
|
4844
|
+
# requests. For information about downloading objects from requester
|
4845
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
4827
4846
|
# in the *Amazon S3 Developer Guide*.
|
4828
4847
|
#
|
4829
4848
|
#
|
4830
4849
|
#
|
4831
|
-
# [1]: https://docs.aws.amazon.com/
|
4850
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
4832
4851
|
# @return [String]
|
4833
4852
|
#
|
4834
4853
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetObjectRetentionRequest AWS API Documentation
|
@@ -4939,15 +4958,15 @@ module Aws::S3
|
|
4939
4958
|
# @return [String]
|
4940
4959
|
#
|
4941
4960
|
# @!attribute [rw] request_payer
|
4942
|
-
# Confirms that the requester knows that
|
4943
|
-
#
|
4944
|
-
# requests. For information about downloading objects from
|
4945
|
-
#
|
4961
|
+
# Confirms that the requester knows that they will be charged for the
|
4962
|
+
# request. Bucket owners need not specify this parameter in their
|
4963
|
+
# requests. For information about downloading objects from requester
|
4964
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
4946
4965
|
# in the *Amazon S3 Developer Guide*.
|
4947
4966
|
#
|
4948
4967
|
#
|
4949
4968
|
#
|
4950
|
-
# [1]: https://docs.aws.amazon.com/
|
4969
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
4951
4970
|
# @return [String]
|
4952
4971
|
#
|
4953
4972
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/GetObjectTorrentRequest AWS API Documentation
|
@@ -5232,7 +5251,8 @@ module Aws::S3
|
|
5232
5251
|
#
|
5233
5252
|
# @!attribute [rw] ssekms_key_id
|
5234
5253
|
# If present, specifies the ID of the AWS Key Management Service (AWS
|
5235
|
-
# KMS) customer master key (CMK) that was
|
5254
|
+
# KMS) symmetric customer managed customer master key (CMK) that was
|
5255
|
+
# used for the object.
|
5236
5256
|
# @return [String]
|
5237
5257
|
#
|
5238
5258
|
# @!attribute [rw] storage_class
|
@@ -5433,15 +5453,15 @@ module Aws::S3
|
|
5433
5453
|
# @return [String]
|
5434
5454
|
#
|
5435
5455
|
# @!attribute [rw] request_payer
|
5436
|
-
# Confirms that the requester knows that
|
5437
|
-
#
|
5438
|
-
# requests. For information about downloading objects from
|
5439
|
-
#
|
5456
|
+
# Confirms that the requester knows that they will be charged for the
|
5457
|
+
# request. Bucket owners need not specify this parameter in their
|
5458
|
+
# requests. For information about downloading objects from requester
|
5459
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
5440
5460
|
# in the *Amazon S3 Developer Guide*.
|
5441
5461
|
#
|
5442
5462
|
#
|
5443
5463
|
#
|
5444
|
-
# [1]: https://docs.aws.amazon.com/
|
5464
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
5445
5465
|
# @return [String]
|
5446
5466
|
#
|
5447
5467
|
# @!attribute [rw] part_number
|
@@ -7282,15 +7302,15 @@ module Aws::S3
|
|
7282
7302
|
# @return [String]
|
7283
7303
|
#
|
7284
7304
|
# @!attribute [rw] request_payer
|
7285
|
-
# Confirms that the requester knows that
|
7286
|
-
#
|
7287
|
-
# requests. For information about downloading objects from
|
7288
|
-
#
|
7305
|
+
# Confirms that the requester knows that they will be charged for the
|
7306
|
+
# request. Bucket owners need not specify this parameter in their
|
7307
|
+
# requests. For information about downloading objects from requester
|
7308
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
7289
7309
|
# in the *Amazon S3 Developer Guide*.
|
7290
7310
|
#
|
7291
7311
|
#
|
7292
7312
|
#
|
7293
|
-
# [1]: https://docs.aws.amazon.com/
|
7313
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
7294
7314
|
# @return [String]
|
7295
7315
|
#
|
7296
7316
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/ListPartsRequest AWS API Documentation
|
@@ -9480,15 +9500,15 @@ module Aws::S3
|
|
9480
9500
|
# @return [String]
|
9481
9501
|
#
|
9482
9502
|
# @!attribute [rw] request_payer
|
9483
|
-
# Confirms that the requester knows that
|
9484
|
-
#
|
9485
|
-
# requests. For information about downloading objects from
|
9486
|
-
#
|
9503
|
+
# Confirms that the requester knows that they will be charged for the
|
9504
|
+
# request. Bucket owners need not specify this parameter in their
|
9505
|
+
# requests. For information about downloading objects from requester
|
9506
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
9487
9507
|
# in the *Amazon S3 Developer Guide*.
|
9488
9508
|
#
|
9489
9509
|
#
|
9490
9510
|
#
|
9491
|
-
# [1]: https://docs.aws.amazon.com/
|
9511
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
9492
9512
|
# @return [String]
|
9493
9513
|
#
|
9494
9514
|
# @!attribute [rw] version_id
|
@@ -9567,15 +9587,15 @@ module Aws::S3
|
|
9567
9587
|
# @return [Types::ObjectLockLegalHold]
|
9568
9588
|
#
|
9569
9589
|
# @!attribute [rw] request_payer
|
9570
|
-
# Confirms that the requester knows that
|
9571
|
-
#
|
9572
|
-
# requests. For information about downloading objects from
|
9573
|
-
#
|
9590
|
+
# Confirms that the requester knows that they will be charged for the
|
9591
|
+
# request. Bucket owners need not specify this parameter in their
|
9592
|
+
# requests. For information about downloading objects from requester
|
9593
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
9574
9594
|
# in the *Amazon S3 Developer Guide*.
|
9575
9595
|
#
|
9576
9596
|
#
|
9577
9597
|
#
|
9578
|
-
# [1]: https://docs.aws.amazon.com/
|
9598
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
9579
9599
|
# @return [String]
|
9580
9600
|
#
|
9581
9601
|
# @!attribute [rw] version_id
|
@@ -9641,15 +9661,15 @@ module Aws::S3
|
|
9641
9661
|
# @return [Types::ObjectLockConfiguration]
|
9642
9662
|
#
|
9643
9663
|
# @!attribute [rw] request_payer
|
9644
|
-
# Confirms that the requester knows that
|
9645
|
-
#
|
9646
|
-
# requests. For information about downloading objects from
|
9647
|
-
#
|
9664
|
+
# Confirms that the requester knows that they will be charged for the
|
9665
|
+
# request. Bucket owners need not specify this parameter in their
|
9666
|
+
# requests. For information about downloading objects from requester
|
9667
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
9648
9668
|
# in the *Amazon S3 Developer Guide*.
|
9649
9669
|
#
|
9650
9670
|
#
|
9651
9671
|
#
|
9652
|
-
# [1]: https://docs.aws.amazon.com/
|
9672
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
9653
9673
|
# @return [String]
|
9654
9674
|
#
|
9655
9675
|
# @!attribute [rw] token
|
@@ -9710,8 +9730,8 @@ module Aws::S3
|
|
9710
9730
|
# @!attribute [rw] ssekms_key_id
|
9711
9731
|
# If `x-amz-server-side-encryption` is present and has the value of
|
9712
9732
|
# `aws:kms`, this header specifies the ID of the AWS Key Management
|
9713
|
-
# Service (AWS KMS) customer master key
|
9714
|
-
# object.
|
9733
|
+
# Service (AWS KMS) symmetric customer managed customer master key
|
9734
|
+
# (CMK) that was used for the object.
|
9715
9735
|
# @return [String]
|
9716
9736
|
#
|
9717
9737
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -9975,14 +9995,15 @@ module Aws::S3
|
|
9975
9995
|
# @!attribute [rw] ssekms_key_id
|
9976
9996
|
# If `x-amz-server-side-encryption` is present and has the value of
|
9977
9997
|
# `aws:kms`, this header specifies the ID of the AWS Key Management
|
9978
|
-
# Service (AWS KMS) customer master key
|
9979
|
-
# object.
|
9998
|
+
# Service (AWS KMS) symmetrical customer managed customer master key
|
9999
|
+
# (CMK) that was used for the object.
|
9980
10000
|
#
|
9981
10001
|
# If the value of `x-amz-server-side-encryption` is `aws:kms`, this
|
9982
|
-
# header specifies the ID of the
|
9983
|
-
# object. If you specify
|
9984
|
-
#
|
9985
|
-
# S3 uses the AWS
|
10002
|
+
# header specifies the ID of the symmetric customer managed AWS KMS
|
10003
|
+
# CMK that will be used for the object. If you specify
|
10004
|
+
# `x-amz-server-side-encryption:aws:kms`, but do not provide`
|
10005
|
+
# x-amz-server-side-encryption-aws-kms-key-id`, Amazon S3 uses the AWS
|
10006
|
+
# managed CMK in AWS to protect the data.
|
9986
10007
|
# @return [String]
|
9987
10008
|
#
|
9988
10009
|
# @!attribute [rw] ssekms_encryption_context
|
@@ -9992,15 +10013,15 @@ module Aws::S3
|
|
9992
10013
|
# @return [String]
|
9993
10014
|
#
|
9994
10015
|
# @!attribute [rw] request_payer
|
9995
|
-
# Confirms that the requester knows that
|
9996
|
-
#
|
9997
|
-
# requests. For information about downloading objects from
|
9998
|
-
#
|
10016
|
+
# Confirms that the requester knows that they will be charged for the
|
10017
|
+
# request. Bucket owners need not specify this parameter in their
|
10018
|
+
# requests. For information about downloading objects from requester
|
10019
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
9999
10020
|
# in the *Amazon S3 Developer Guide*.
|
10000
10021
|
#
|
10001
10022
|
#
|
10002
10023
|
#
|
10003
|
-
# [1]: https://docs.aws.amazon.com/
|
10024
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
10004
10025
|
# @return [String]
|
10005
10026
|
#
|
10006
10027
|
# @!attribute [rw] tagging
|
@@ -10118,15 +10139,15 @@ module Aws::S3
|
|
10118
10139
|
# @return [Types::ObjectLockRetention]
|
10119
10140
|
#
|
10120
10141
|
# @!attribute [rw] request_payer
|
10121
|
-
# Confirms that the requester knows that
|
10122
|
-
#
|
10123
|
-
# requests. For information about downloading objects from
|
10124
|
-
#
|
10142
|
+
# Confirms that the requester knows that they will be charged for the
|
10143
|
+
# request. Bucket owners need not specify this parameter in their
|
10144
|
+
# requests. For information about downloading objects from requester
|
10145
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
10125
10146
|
# in the *Amazon S3 Developer Guide*.
|
10126
10147
|
#
|
10127
10148
|
#
|
10128
10149
|
#
|
10129
|
-
# [1]: https://docs.aws.amazon.com/
|
10150
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
10130
10151
|
# @return [String]
|
10131
10152
|
#
|
10132
10153
|
# @!attribute [rw] version_id
|
@@ -11060,15 +11081,15 @@ module Aws::S3
|
|
11060
11081
|
# @return [Types::RestoreRequest]
|
11061
11082
|
#
|
11062
11083
|
# @!attribute [rw] request_payer
|
11063
|
-
# Confirms that the requester knows that
|
11064
|
-
#
|
11065
|
-
# requests. For information about downloading objects from
|
11066
|
-
#
|
11084
|
+
# Confirms that the requester knows that they will be charged for the
|
11085
|
+
# request. Bucket owners need not specify this parameter in their
|
11086
|
+
# requests. For information about downloading objects from requester
|
11087
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
11067
11088
|
# in the *Amazon S3 Developer Guide*.
|
11068
11089
|
#
|
11069
11090
|
#
|
11070
11091
|
#
|
11071
|
-
# [1]: https://docs.aws.amazon.com/
|
11092
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
11072
11093
|
# @return [String]
|
11073
11094
|
#
|
11074
11095
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/RestoreObjectRequest AWS API Documentation
|
@@ -11487,7 +11508,8 @@ module Aws::S3
|
|
11487
11508
|
#
|
11488
11509
|
# @!attribute [rw] key_id
|
11489
11510
|
# Specifies the ID of the AWS Key Management Service (AWS KMS)
|
11490
|
-
# customer master key (CMK) to use for
|
11511
|
+
# symmetric customer managed customer master key (CMK) to use for
|
11512
|
+
# encrypting inventory reports.
|
11491
11513
|
# @return [String]
|
11492
11514
|
#
|
11493
11515
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/SSEKMS AWS API Documentation
|
@@ -12281,7 +12303,8 @@ module Aws::S3
|
|
12281
12303
|
#
|
12282
12304
|
# @!attribute [rw] ssekms_key_id
|
12283
12305
|
# If present, specifies the ID of the AWS Key Management Service (AWS
|
12284
|
-
# KMS) customer master key (CMK) that was
|
12306
|
+
# KMS) symmetric customer managed customer master key (CMK) that was
|
12307
|
+
# used for the object.
|
12285
12308
|
# @return [String]
|
12286
12309
|
#
|
12287
12310
|
# @!attribute [rw] request_charged
|
@@ -12414,15 +12437,15 @@ module Aws::S3
|
|
12414
12437
|
# @return [String]
|
12415
12438
|
#
|
12416
12439
|
# @!attribute [rw] request_payer
|
12417
|
-
# Confirms that the requester knows that
|
12418
|
-
#
|
12419
|
-
# requests. For information about downloading objects from
|
12420
|
-
#
|
12440
|
+
# Confirms that the requester knows that they will be charged for the
|
12441
|
+
# request. Bucket owners need not specify this parameter in their
|
12442
|
+
# requests. For information about downloading objects from requester
|
12443
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
12421
12444
|
# in the *Amazon S3 Developer Guide*.
|
12422
12445
|
#
|
12423
12446
|
#
|
12424
12447
|
#
|
12425
|
-
# [1]: https://docs.aws.amazon.com/
|
12448
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
12426
12449
|
# @return [String]
|
12427
12450
|
#
|
12428
12451
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/UploadPartCopyRequest AWS API Documentation
|
@@ -12472,7 +12495,8 @@ module Aws::S3
|
|
12472
12495
|
#
|
12473
12496
|
# @!attribute [rw] ssekms_key_id
|
12474
12497
|
# If present, specifies the ID of the AWS Key Management Service (AWS
|
12475
|
-
# KMS) customer master key (CMK) was used
|
12498
|
+
# KMS) symmetric customer managed customer master key (CMK) was used
|
12499
|
+
# for the object.
|
12476
12500
|
# @return [String]
|
12477
12501
|
#
|
12478
12502
|
# @!attribute [rw] request_charged
|
@@ -12564,15 +12588,15 @@ module Aws::S3
|
|
12564
12588
|
# @return [String]
|
12565
12589
|
#
|
12566
12590
|
# @!attribute [rw] request_payer
|
12567
|
-
# Confirms that the requester knows that
|
12568
|
-
#
|
12569
|
-
# requests. For information about downloading objects from
|
12570
|
-
#
|
12591
|
+
# Confirms that the requester knows that they will be charged for the
|
12592
|
+
# request. Bucket owners need not specify this parameter in their
|
12593
|
+
# requests. For information about downloading objects from requester
|
12594
|
+
# pays buckets, see [Downloading Objects in Requestor Pays Buckets][1]
|
12571
12595
|
# in the *Amazon S3 Developer Guide*.
|
12572
12596
|
#
|
12573
12597
|
#
|
12574
12598
|
#
|
12575
|
-
# [1]: https://docs.aws.amazon.com/
|
12599
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/ObjectsinRequesterPaysBuckets.html
|
12576
12600
|
# @return [String]
|
12577
12601
|
#
|
12578
12602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3-2006-03-01/UploadPartRequest AWS API Documentation
|