aws-sdk-s3 1.212.0 → 1.213.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.
@@ -24,6 +24,7 @@ module Aws::S3
24
24
  AcceptRanges = Shapes::StringShape.new(name: 'AcceptRanges')
25
25
  AccessControlPolicy = Shapes::StructureShape.new(name: 'AccessControlPolicy')
26
26
  AccessControlTranslation = Shapes::StructureShape.new(name: 'AccessControlTranslation')
27
+ AccessDenied = Shapes::StructureShape.new(name: 'AccessDenied')
27
28
  AccessKeyIdValue = Shapes::StringShape.new(name: 'AccessKeyIdValue')
28
29
  AccessPointAlias = Shapes::BooleanShape.new(name: 'AccessPointAlias')
29
30
  AccessPointArn = Shapes::StringShape.new(name: 'AccessPointArn')
@@ -438,6 +439,7 @@ module Aws::S3
438
439
  NoSuchBucket = Shapes::StructureShape.new(name: 'NoSuchBucket')
439
440
  NoSuchKey = Shapes::StructureShape.new(name: 'NoSuchKey')
440
441
  NoSuchUpload = Shapes::StructureShape.new(name: 'NoSuchUpload')
442
+ NonEmptyKmsKeyArnString = Shapes::StringShape.new(name: 'NonEmptyKmsKeyArnString')
441
443
  NoncurrentVersionExpiration = Shapes::StructureShape.new(name: 'NoncurrentVersionExpiration')
442
444
  NoncurrentVersionTransition = Shapes::StructureShape.new(name: 'NoncurrentVersionTransition')
443
445
  NoncurrentVersionTransitionList = Shapes::ListShape.new(name: 'NoncurrentVersionTransitionList', flattened: true)
@@ -450,6 +452,7 @@ module Aws::S3
450
452
  ObjectAttributes = Shapes::StringShape.new(name: 'ObjectAttributes')
451
453
  ObjectAttributesList = Shapes::ListShape.new(name: 'ObjectAttributesList')
452
454
  ObjectCannedACL = Shapes::StringShape.new(name: 'ObjectCannedACL')
455
+ ObjectEncryption = Shapes::UnionShape.new(name: 'ObjectEncryption')
453
456
  ObjectIdentifier = Shapes::StructureShape.new(name: 'ObjectIdentifier')
454
457
  ObjectIdentifierList = Shapes::ListShape.new(name: 'ObjectIdentifierList', flattened: true)
455
458
  ObjectKey = Shapes::StringShape.new(name: 'ObjectKey')
@@ -616,6 +619,7 @@ module Aws::S3
616
619
  SSECustomerKey = Shapes::StringShape.new(name: 'SSECustomerKey')
617
620
  SSECustomerKeyMD5 = Shapes::StringShape.new(name: 'SSECustomerKeyMD5')
618
621
  SSEKMS = Shapes::StructureShape.new(name: 'SSEKMS', locationName: "SSE-KMS")
622
+ SSEKMSEncryption = Shapes::StructureShape.new(name: 'SSEKMSEncryption', locationName: "SSE-KMS")
619
623
  SSEKMSEncryptionContext = Shapes::StringShape.new(name: 'SSEKMSEncryptionContext')
620
624
  SSEKMSKeyId = Shapes::StringShape.new(name: 'SSEKMSKeyId')
621
625
  SSES3 = Shapes::StructureShape.new(name: 'SSES3', locationName: "SSE-S3")
@@ -678,6 +682,8 @@ module Aws::S3
678
682
  URI = Shapes::StringShape.new(name: 'URI')
679
683
  UpdateBucketMetadataInventoryTableConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateBucketMetadataInventoryTableConfigurationRequest')
680
684
  UpdateBucketMetadataJournalTableConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateBucketMetadataJournalTableConfigurationRequest')
685
+ UpdateObjectEncryptionRequest = Shapes::StructureShape.new(name: 'UpdateObjectEncryptionRequest')
686
+ UpdateObjectEncryptionResponse = Shapes::StructureShape.new(name: 'UpdateObjectEncryptionResponse')
681
687
  UploadIdMarker = Shapes::StringShape.new(name: 'UploadIdMarker')
682
688
  UploadPartCopyOutput = Shapes::StructureShape.new(name: 'UploadPartCopyOutput')
683
689
  UploadPartCopyRequest = Shapes::StructureShape.new(name: 'UploadPartCopyRequest')
@@ -721,6 +727,8 @@ module Aws::S3
721
727
  AccessControlTranslation.add_member(:owner, Shapes::ShapeRef.new(shape: OwnerOverride, required: true, location_name: "Owner"))
722
728
  AccessControlTranslation.struct_class = Types::AccessControlTranslation
723
729
 
730
+ AccessDenied.struct_class = Types::AccessDenied
731
+
724
732
  AllowedHeaders.member = Shapes::ShapeRef.new(shape: AllowedHeader)
725
733
 
726
734
  AllowedMethods.member = Shapes::ShapeRef.new(shape: AllowedMethod)
@@ -2210,6 +2218,12 @@ module Aws::S3
2210
2218
 
2211
2219
  ObjectAttributesList.member = Shapes::ShapeRef.new(shape: ObjectAttributes)
2212
2220
 
2221
+ ObjectEncryption.add_member(:ssekms, Shapes::ShapeRef.new(shape: SSEKMSEncryption, location_name: "SSE-KMS"))
2222
+ ObjectEncryption.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2223
+ ObjectEncryption.add_member_subclass(:ssekms, Types::ObjectEncryption::Ssekms)
2224
+ ObjectEncryption.add_member_subclass(:unknown, Types::ObjectEncryption::Unknown)
2225
+ ObjectEncryption.struct_class = Types::ObjectEncryption
2226
+
2213
2227
  ObjectIdentifier.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location_name: "Key"))
2214
2228
  ObjectIdentifier.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
2215
2229
  ObjectIdentifier.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
@@ -2830,6 +2844,10 @@ module Aws::S3
2830
2844
  SSEKMS.add_member(:key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, required: true, location_name: "KeyId"))
2831
2845
  SSEKMS.struct_class = Types::SSEKMS
2832
2846
 
2847
+ SSEKMSEncryption.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: NonEmptyKmsKeyArnString, required: true, location_name: "KMSKeyArn"))
2848
+ SSEKMSEncryption.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location_name: "BucketKeyEnabled"))
2849
+ SSEKMSEncryption.struct_class = Types::SSEKMSEncryption
2850
+
2833
2851
  SSES3.struct_class = Types::SSES3
2834
2852
 
2835
2853
  ScanRange.add_member(:start, Shapes::ShapeRef.new(shape: Start, location_name: "Start"))
@@ -2978,6 +2996,21 @@ module Aws::S3
2978
2996
  UpdateBucketMetadataJournalTableConfigurationRequest[:payload] = :journal_table_configuration
2979
2997
  UpdateBucketMetadataJournalTableConfigurationRequest[:payload_member] = UpdateBucketMetadataJournalTableConfigurationRequest.member(:journal_table_configuration)
2980
2998
 
2999
+ UpdateObjectEncryptionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
3000
+ UpdateObjectEncryptionRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
3001
+ UpdateObjectEncryptionRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
3002
+ UpdateObjectEncryptionRequest.add_member(:object_encryption, Shapes::ShapeRef.new(shape: ObjectEncryption, required: true, location_name: "ObjectEncryption", metadata: {"xmlNamespace" => {"uri" => "http://s3.amazonaws.com/doc/2006-03-01/"}}))
3003
+ UpdateObjectEncryptionRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
3004
+ UpdateObjectEncryptionRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
3005
+ UpdateObjectEncryptionRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
3006
+ UpdateObjectEncryptionRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
3007
+ UpdateObjectEncryptionRequest.struct_class = Types::UpdateObjectEncryptionRequest
3008
+ UpdateObjectEncryptionRequest[:payload] = :object_encryption
3009
+ UpdateObjectEncryptionRequest[:payload_member] = UpdateObjectEncryptionRequest.member(:object_encryption)
3010
+
3011
+ UpdateObjectEncryptionResponse.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
3012
+ UpdateObjectEncryptionResponse.struct_class = Types::UpdateObjectEncryptionResponse
3013
+
2981
3014
  UploadPartCopyOutput.add_member(:copy_source_version_id, Shapes::ShapeRef.new(shape: CopySourceVersionId, location: "header", location_name: "x-amz-copy-source-version-id"))
2982
3015
  UploadPartCopyOutput.add_member(:copy_part_result, Shapes::ShapeRef.new(shape: CopyPartResult, location_name: "CopyPartResult"))
2983
3016
  UploadPartCopyOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
@@ -4298,6 +4331,25 @@ module Aws::S3
4298
4331
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
4299
4332
  end)
4300
4333
 
4334
+ api.add_operation(:update_object_encryption, Seahorse::Model::Operation.new.tap do |o|
4335
+ o.name = "UpdateObjectEncryption"
4336
+ o.http_method = "PUT"
4337
+ o.http_request_uri = "/{Key+}?encryption"
4338
+ o.http_checksum = {
4339
+ "requestAlgorithmMember" => "checksum_algorithm",
4340
+ "requestChecksumRequired" => true,
4341
+ }
4342
+ o.http_checksum = {
4343
+ "requestAlgorithmMember" => "checksum_algorithm",
4344
+ "requestChecksumRequired" => true,
4345
+ }
4346
+ o.input = Shapes::ShapeRef.new(shape: UpdateObjectEncryptionRequest)
4347
+ o.output = Shapes::ShapeRef.new(shape: UpdateObjectEncryptionResponse)
4348
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
4349
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequest)
4350
+ o.errors << Shapes::ShapeRef.new(shape: AccessDenied)
4351
+ end)
4352
+
4301
4353
  api.add_operation(:upload_part, Seahorse::Model::Operation.new.tap do |o|
4302
4354
  o.name = "UploadPart"
4303
4355
  o.http_method = "PUT"
@@ -1278,6 +1278,17 @@ module Aws::S3
1278
1278
  end
1279
1279
  end
1280
1280
 
1281
+ class UpdateObjectEncryption
1282
+ def self.build(context)
1283
+ Aws::S3::EndpointParameters.create(
1284
+ context.config,
1285
+ bucket: context.params[:bucket],
1286
+ use_dual_stack: context[:use_dualstack_endpoint],
1287
+ accelerate: context[:use_accelerate_endpoint],
1288
+ )
1289
+ end
1290
+ end
1291
+
1281
1292
  class UploadPart
1282
1293
  def self.build(context)
1283
1294
  Aws::S3::EndpointParameters.create(
@@ -1530,6 +1541,8 @@ module Aws::S3
1530
1541
  UpdateBucketMetadataInventoryTableConfiguration.build(context)
1531
1542
  when :update_bucket_metadata_journal_table_configuration
1532
1543
  UpdateBucketMetadataJournalTableConfiguration.build(context)
1544
+ when :update_object_encryption
1545
+ UpdateObjectEncryption.build(context)
1533
1546
  when :upload_part
1534
1547
  UploadPart.build(context)
1535
1548
  when :upload_part_copy
@@ -27,6 +27,7 @@ module Aws::S3
27
27
  # See {Seahorse::Client::RequestContext} for more information.
28
28
  #
29
29
  # ## Error Classes
30
+ # * {AccessDenied}
30
31
  # * {BucketAlreadyExists}
31
32
  # * {BucketAlreadyOwnedByYou}
32
33
  # * {EncryptionTypeMismatch}
@@ -47,6 +48,16 @@ module Aws::S3
47
48
 
48
49
  extend Aws::Errors::DynamicErrors
49
50
 
51
+ class AccessDenied < ServiceError
52
+
53
+ # @param [Seahorse::Client::RequestContext] context
54
+ # @param [String] message
55
+ # @param [Aws::S3::Types::AccessDenied] data
56
+ def initialize(context, message, data = Aws::EmptyStructure.new)
57
+ super(context, message, data)
58
+ end
59
+ end
60
+
50
61
  class BucketAlreadyExists < ServiceError
51
62
 
52
63
  # @param [Seahorse::Client::RequestContext] context
@@ -260,10 +260,10 @@ module Aws::S3
260
260
  # Confirms that the requester knows that they will be charged for the
261
261
  # request. Bucket owners need not specify this parameter in their
262
262
  # requests. If either the source or destination S3 bucket has Requester
263
- # Pays enabled, the requester will pay for corresponding charges to copy
264
- # the object. For information about downloading objects from Requester
265
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
266
- # in the *Amazon S3 User Guide*.
263
+ # Pays enabled, the requester will pay for the corresponding charges.
264
+ # For information about downloading objects from Requester Pays buckets,
265
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
266
+ # S3 User Guide*.
267
267
  #
268
268
  # <note markdown="1"> This functionality is not supported for directory buckets.
269
269
  #
@@ -404,10 +404,10 @@ module Aws::S3
404
404
  # Confirms that the requester knows that they will be charged for the
405
405
  # request. Bucket owners need not specify this parameter in their
406
406
  # requests. If either the source or destination S3 bucket has Requester
407
- # Pays enabled, the requester will pay for corresponding charges to copy
408
- # the object. For information about downloading objects from Requester
409
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
410
- # in the *Amazon S3 User Guide*.
407
+ # Pays enabled, the requester will pay for the corresponding charges.
408
+ # For information about downloading objects from Requester Pays buckets,
409
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
410
+ # S3 User Guide*.
411
411
  #
412
412
  # <note markdown="1"> This functionality is not supported for directory buckets.
413
413
  #
@@ -553,10 +553,10 @@ module Aws::S3
553
553
  # Confirms that the requester knows that they will be charged for the
554
554
  # request. Bucket owners need not specify this parameter in their
555
555
  # requests. If either the source or destination S3 bucket has Requester
556
- # Pays enabled, the requester will pay for corresponding charges to copy
557
- # the object. For information about downloading objects from Requester
558
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
559
- # in the *Amazon S3 User Guide*.
556
+ # Pays enabled, the requester will pay for the corresponding charges.
557
+ # For information about downloading objects from Requester Pays buckets,
558
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
559
+ # S3 User Guide*.
560
560
  #
561
561
  # <note markdown="1"> This functionality is not supported for directory buckets.
562
562
  #
@@ -475,10 +475,10 @@ module Aws::S3
475
475
  # Confirms that the requester knows that they will be charged for the
476
476
  # request. Bucket owners need not specify this parameter in their
477
477
  # requests. If either the source or destination S3 bucket has Requester
478
- # Pays enabled, the requester will pay for corresponding charges to copy
479
- # the object. For information about downloading objects from Requester
480
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
481
- # in the *Amazon S3 User Guide*.
478
+ # Pays enabled, the requester will pay for the corresponding charges.
479
+ # For information about downloading objects from Requester Pays buckets,
480
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
481
+ # S3 User Guide*.
482
482
  #
483
483
  # <note markdown="1"> This functionality is not supported for directory buckets.
484
484
  #
@@ -642,10 +642,10 @@ module Aws::S3
642
642
  # Confirms that the requester knows that they will be charged for the
643
643
  # request. Bucket owners need not specify this parameter in their
644
644
  # requests. If either the source or destination S3 bucket has Requester
645
- # Pays enabled, the requester will pay for corresponding charges to copy
646
- # the object. For information about downloading objects from Requester
647
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
648
- # in the *Amazon S3 User Guide*.
645
+ # Pays enabled, the requester will pay for the corresponding charges.
646
+ # For information about downloading objects from Requester Pays buckets,
647
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
648
+ # S3 User Guide*.
649
649
  #
650
650
  # <note markdown="1"> This functionality is not supported for directory buckets.
651
651
  #
@@ -1405,10 +1405,10 @@ module Aws::S3
1405
1405
  # Confirms that the requester knows that they will be charged for the
1406
1406
  # request. Bucket owners need not specify this parameter in their
1407
1407
  # requests. If either the source or destination S3 bucket has Requester
1408
- # Pays enabled, the requester will pay for corresponding charges to copy
1409
- # the object. For information about downloading objects from Requester
1410
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
1411
- # in the *Amazon S3 User Guide*.
1408
+ # Pays enabled, the requester will pay for the corresponding charges.
1409
+ # For information about downloading objects from Requester Pays buckets,
1410
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
1411
+ # S3 User Guide*.
1412
1412
  #
1413
1413
  # <note markdown="1"> This functionality is not supported for directory buckets.
1414
1414
  #
@@ -1541,10 +1541,10 @@ module Aws::S3
1541
1541
  # Confirms that the requester knows that they will be charged for the
1542
1542
  # request. Bucket owners need not specify this parameter in their
1543
1543
  # requests. If either the source or destination S3 bucket has Requester
1544
- # Pays enabled, the requester will pay for corresponding charges to copy
1545
- # the object. For information about downloading objects from Requester
1546
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
1547
- # in the *Amazon S3 User Guide*.
1544
+ # Pays enabled, the requester will pay for the corresponding charges.
1545
+ # For information about downloading objects from Requester Pays buckets,
1546
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
1547
+ # S3 User Guide*.
1548
1548
  #
1549
1549
  # <note markdown="1"> This functionality is not supported for directory buckets.
1550
1550
  #
@@ -1836,10 +1836,10 @@ module Aws::S3
1836
1836
  # Confirms that the requester knows that they will be charged for the
1837
1837
  # request. Bucket owners need not specify this parameter in their
1838
1838
  # requests. If either the source or destination S3 bucket has Requester
1839
- # Pays enabled, the requester will pay for corresponding charges to copy
1840
- # the object. For information about downloading objects from Requester
1841
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
1842
- # in the *Amazon S3 User Guide*.
1839
+ # Pays enabled, the requester will pay for the corresponding charges.
1840
+ # For information about downloading objects from Requester Pays buckets,
1841
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
1842
+ # S3 User Guide*.
1843
1843
  #
1844
1844
  # <note markdown="1"> This functionality is not supported for directory buckets.
1845
1845
  #
@@ -2384,10 +2384,10 @@ module Aws::S3
2384
2384
  # Confirms that the requester knows that they will be charged for the
2385
2385
  # request. Bucket owners need not specify this parameter in their
2386
2386
  # requests. If either the source or destination S3 bucket has Requester
2387
- # Pays enabled, the requester will pay for corresponding charges to copy
2388
- # the object. For information about downloading objects from Requester
2389
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
2390
- # in the *Amazon S3 User Guide*.
2387
+ # Pays enabled, the requester will pay for the corresponding charges.
2388
+ # For information about downloading objects from Requester Pays buckets,
2389
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
2390
+ # S3 User Guide*.
2391
2391
  #
2392
2392
  # <note markdown="1"> This functionality is not supported for directory buckets.
2393
2393
  #
@@ -3024,10 +3024,10 @@ module Aws::S3
3024
3024
  # Confirms that the requester knows that they will be charged for the
3025
3025
  # request. Bucket owners need not specify this parameter in their
3026
3026
  # requests. If either the source or destination S3 bucket has Requester
3027
- # Pays enabled, the requester will pay for corresponding charges to copy
3028
- # the object. For information about downloading objects from Requester
3029
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
3030
- # in the *Amazon S3 User Guide*.
3027
+ # Pays enabled, the requester will pay for the corresponding charges.
3028
+ # For information about downloading objects from Requester Pays buckets,
3029
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
3030
+ # S3 User Guide*.
3031
3031
  #
3032
3032
  # <note markdown="1"> This functionality is not supported for directory buckets.
3033
3033
  #
@@ -3182,10 +3182,10 @@ module Aws::S3
3182
3182
  # Confirms that the requester knows that they will be charged for the
3183
3183
  # request. Bucket owners need not specify this parameter in their
3184
3184
  # requests. If either the source or destination S3 bucket has Requester
3185
- # Pays enabled, the requester will pay for corresponding charges to copy
3186
- # the object. For information about downloading objects from Requester
3187
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
3188
- # in the *Amazon S3 User Guide*.
3185
+ # Pays enabled, the requester will pay for the corresponding charges.
3186
+ # For information about downloading objects from Requester Pays buckets,
3187
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
3188
+ # S3 User Guide*.
3189
3189
  #
3190
3190
  # <note markdown="1"> This functionality is not supported for directory buckets.
3191
3191
  #
@@ -3374,10 +3374,10 @@ module Aws::S3
3374
3374
  # Confirms that the requester knows that they will be charged for the
3375
3375
  # request. Bucket owners need not specify this parameter in their
3376
3376
  # requests. If either the source or destination S3 bucket has Requester
3377
- # Pays enabled, the requester will pay for corresponding charges to copy
3378
- # the object. For information about downloading objects from Requester
3379
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
3380
- # in the *Amazon S3 User Guide*.
3377
+ # Pays enabled, the requester will pay for the corresponding charges.
3378
+ # For information about downloading objects from Requester Pays buckets,
3379
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
3380
+ # S3 User Guide*.
3381
3381
  #
3382
3382
  # <note markdown="1"> This functionality is not supported for directory buckets.
3383
3383
  #
@@ -3566,10 +3566,10 @@ module Aws::S3
3566
3566
  # Confirms that the requester knows that they will be charged for the
3567
3567
  # request. Bucket owners need not specify this parameter in their
3568
3568
  # requests. If either the source or destination S3 bucket has Requester
3569
- # Pays enabled, the requester will pay for corresponding charges to copy
3570
- # the object. For information about downloading objects from Requester
3571
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
3572
- # in the *Amazon S3 User Guide*.
3569
+ # Pays enabled, the requester will pay for the corresponding charges.
3570
+ # For information about downloading objects from Requester Pays buckets,
3571
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
3572
+ # S3 User Guide*.
3573
3573
  #
3574
3574
  # <note markdown="1"> This functionality is not supported for directory buckets.
3575
3575
  #
@@ -310,10 +310,10 @@ module Aws::S3
310
310
  # Confirms that the requester knows that they will be charged for the
311
311
  # request. Bucket owners need not specify this parameter in their
312
312
  # requests. If either the source or destination S3 bucket has Requester
313
- # Pays enabled, the requester will pay for corresponding charges to copy
314
- # the object. For information about downloading objects from Requester
315
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
316
- # in the *Amazon S3 User Guide*.
313
+ # Pays enabled, the requester will pay for the corresponding charges.
314
+ # For information about downloading objects from Requester Pays buckets,
315
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
316
+ # S3 User Guide*.
317
317
  #
318
318
  # <note markdown="1"> This functionality is not supported for directory buckets.
319
319
  #
@@ -1002,10 +1002,10 @@ module Aws::S3
1002
1002
  # Confirms that the requester knows that they will be charged for the
1003
1003
  # request. Bucket owners need not specify this parameter in their
1004
1004
  # requests. If either the source or destination S3 bucket has Requester
1005
- # Pays enabled, the requester will pay for corresponding charges to copy
1006
- # the object. For information about downloading objects from Requester
1007
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
1008
- # in the *Amazon S3 User Guide*.
1005
+ # Pays enabled, the requester will pay for the corresponding charges.
1006
+ # For information about downloading objects from Requester Pays buckets,
1007
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
1008
+ # S3 User Guide*.
1009
1009
  #
1010
1010
  # <note markdown="1"> This functionality is not supported for directory buckets.
1011
1011
  #
@@ -1138,10 +1138,10 @@ module Aws::S3
1138
1138
  # Confirms that the requester knows that they will be charged for the
1139
1139
  # request. Bucket owners need not specify this parameter in their
1140
1140
  # requests. If either the source or destination S3 bucket has Requester
1141
- # Pays enabled, the requester will pay for corresponding charges to copy
1142
- # the object. For information about downloading objects from Requester
1143
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
1144
- # in the *Amazon S3 User Guide*.
1141
+ # Pays enabled, the requester will pay for the corresponding charges.
1142
+ # For information about downloading objects from Requester Pays buckets,
1143
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
1144
+ # S3 User Guide*.
1145
1145
  #
1146
1146
  # <note markdown="1"> This functionality is not supported for directory buckets.
1147
1147
  #
@@ -1433,10 +1433,10 @@ module Aws::S3
1433
1433
  # Confirms that the requester knows that they will be charged for the
1434
1434
  # request. Bucket owners need not specify this parameter in their
1435
1435
  # requests. If either the source or destination S3 bucket has Requester
1436
- # Pays enabled, the requester will pay for corresponding charges to copy
1437
- # the object. For information about downloading objects from Requester
1438
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
1439
- # in the *Amazon S3 User Guide*.
1436
+ # Pays enabled, the requester will pay for the corresponding charges.
1437
+ # For information about downloading objects from Requester Pays buckets,
1438
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
1439
+ # S3 User Guide*.
1440
1440
  #
1441
1441
  # <note markdown="1"> This functionality is not supported for directory buckets.
1442
1442
  #
@@ -1981,10 +1981,10 @@ module Aws::S3
1981
1981
  # Confirms that the requester knows that they will be charged for the
1982
1982
  # request. Bucket owners need not specify this parameter in their
1983
1983
  # requests. If either the source or destination S3 bucket has Requester
1984
- # Pays enabled, the requester will pay for corresponding charges to copy
1985
- # the object. For information about downloading objects from Requester
1986
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
1987
- # in the *Amazon S3 User Guide*.
1984
+ # Pays enabled, the requester will pay for the corresponding charges.
1985
+ # For information about downloading objects from Requester Pays buckets,
1986
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
1987
+ # S3 User Guide*.
1988
1988
  #
1989
1989
  # <note markdown="1"> This functionality is not supported for directory buckets.
1990
1990
  #
@@ -2621,10 +2621,10 @@ module Aws::S3
2621
2621
  # Confirms that the requester knows that they will be charged for the
2622
2622
  # request. Bucket owners need not specify this parameter in their
2623
2623
  # requests. If either the source or destination S3 bucket has Requester
2624
- # Pays enabled, the requester will pay for corresponding charges to copy
2625
- # the object. For information about downloading objects from Requester
2626
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
2627
- # in the *Amazon S3 User Guide*.
2624
+ # Pays enabled, the requester will pay for the corresponding charges.
2625
+ # For information about downloading objects from Requester Pays buckets,
2626
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
2627
+ # S3 User Guide*.
2628
2628
  #
2629
2629
  # <note markdown="1"> This functionality is not supported for directory buckets.
2630
2630
  #
@@ -2779,10 +2779,10 @@ module Aws::S3
2779
2779
  # Confirms that the requester knows that they will be charged for the
2780
2780
  # request. Bucket owners need not specify this parameter in their
2781
2781
  # requests. If either the source or destination S3 bucket has Requester
2782
- # Pays enabled, the requester will pay for corresponding charges to copy
2783
- # the object. For information about downloading objects from Requester
2784
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
2785
- # in the *Amazon S3 User Guide*.
2782
+ # Pays enabled, the requester will pay for the corresponding charges.
2783
+ # For information about downloading objects from Requester Pays buckets,
2784
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
2785
+ # S3 User Guide*.
2786
2786
  #
2787
2787
  # <note markdown="1"> This functionality is not supported for directory buckets.
2788
2788
  #
@@ -2973,10 +2973,10 @@ module Aws::S3
2973
2973
  # Confirms that the requester knows that they will be charged for the
2974
2974
  # request. Bucket owners need not specify this parameter in their
2975
2975
  # requests. If either the source or destination S3 bucket has Requester
2976
- # Pays enabled, the requester will pay for corresponding charges to copy
2977
- # the object. For information about downloading objects from Requester
2978
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
2979
- # in the *Amazon S3 User Guide*.
2976
+ # Pays enabled, the requester will pay for the corresponding charges.
2977
+ # For information about downloading objects from Requester Pays buckets,
2978
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
2979
+ # S3 User Guide*.
2980
2980
  #
2981
2981
  # <note markdown="1"> This functionality is not supported for directory buckets.
2982
2982
  #
@@ -287,10 +287,10 @@ module Aws::S3
287
287
  # Confirms that the requester knows that they will be charged for the
288
288
  # request. Bucket owners need not specify this parameter in their
289
289
  # requests. If either the source or destination S3 bucket has Requester
290
- # Pays enabled, the requester will pay for corresponding charges to copy
291
- # the object. For information about downloading objects from Requester
292
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
293
- # in the *Amazon S3 User Guide*.
290
+ # Pays enabled, the requester will pay for the corresponding charges.
291
+ # For information about downloading objects from Requester Pays buckets,
292
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
293
+ # S3 User Guide*.
294
294
  #
295
295
  # <note markdown="1"> This functionality is not supported for directory buckets.
296
296
  #
@@ -553,10 +553,10 @@ module Aws::S3
553
553
  # Confirms that the requester knows that they will be charged for the
554
554
  # request. Bucket owners need not specify this parameter in their
555
555
  # requests. If either the source or destination S3 bucket has Requester
556
- # Pays enabled, the requester will pay for corresponding charges to copy
557
- # the object. For information about downloading objects from Requester
558
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
559
- # in the *Amazon S3 User Guide*.
556
+ # Pays enabled, the requester will pay for the corresponding charges.
557
+ # For information about downloading objects from Requester Pays buckets,
558
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
559
+ # S3 User Guide*.
560
560
  #
561
561
  # <note markdown="1"> This functionality is not supported for directory buckets.
562
562
  #
@@ -730,10 +730,10 @@ module Aws::S3
730
730
  # Confirms that the requester knows that they will be charged for the
731
731
  # request. Bucket owners need not specify this parameter in their
732
732
  # requests. If either the source or destination S3 bucket has Requester
733
- # Pays enabled, the requester will pay for corresponding charges to copy
734
- # the object. For information about downloading objects from Requester
735
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
736
- # in the *Amazon S3 User Guide*.
733
+ # Pays enabled, the requester will pay for the corresponding charges.
734
+ # For information about downloading objects from Requester Pays buckets,
735
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
736
+ # S3 User Guide*.
737
737
  #
738
738
  # <note markdown="1"> This functionality is not supported for directory buckets.
739
739
  #
@@ -878,10 +878,10 @@ module Aws::S3
878
878
  # Confirms that the requester knows that they will be charged for the
879
879
  # request. Bucket owners need not specify this parameter in their
880
880
  # requests. If either the source or destination S3 bucket has Requester
881
- # Pays enabled, the requester will pay for corresponding charges to copy
882
- # the object. For information about downloading objects from Requester
883
- # Pays buckets, see [Downloading Objects in Requester Pays Buckets][1]
884
- # in the *Amazon S3 User Guide*.
881
+ # Pays enabled, the requester will pay for the corresponding charges.
882
+ # For information about downloading objects from Requester Pays buckets,
883
+ # see [Downloading Objects in Requester Pays Buckets][1] in the *Amazon
884
+ # S3 User Guide*.
885
885
  #
886
886
  # <note markdown="1"> This functionality is not supported for directory buckets.
887
887
  #