aws-sdk-s3 1.188.0 → 1.205.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.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +119 -0
  3. data/VERSION +1 -1
  4. data/lib/aws-sdk-s3/bucket.rb +43 -4
  5. data/lib/aws-sdk-s3/bucket_versioning.rb +33 -0
  6. data/lib/aws-sdk-s3/client.rb +1943 -252
  7. data/lib/aws-sdk-s3/client_api.rb +289 -0
  8. data/lib/aws-sdk-s3/customizations/object.rb +76 -86
  9. data/lib/aws-sdk-s3/customizations.rb +3 -1
  10. data/lib/aws-sdk-s3/default_executor.rb +103 -0
  11. data/lib/aws-sdk-s3/endpoint_parameters.rb +17 -17
  12. data/lib/aws-sdk-s3/endpoint_provider.rb +220 -50
  13. data/lib/aws-sdk-s3/endpoints.rb +110 -0
  14. data/lib/aws-sdk-s3/errors.rb +11 -0
  15. data/lib/aws-sdk-s3/file_downloader.rb +197 -134
  16. data/lib/aws-sdk-s3/file_uploader.rb +9 -13
  17. data/lib/aws-sdk-s3/legacy_signer.rb +2 -1
  18. data/lib/aws-sdk-s3/multipart_download_error.rb +8 -0
  19. data/lib/aws-sdk-s3/multipart_file_uploader.rb +92 -107
  20. data/lib/aws-sdk-s3/multipart_stream_uploader.rb +96 -107
  21. data/lib/aws-sdk-s3/multipart_upload_error.rb +3 -4
  22. data/lib/aws-sdk-s3/object.rb +110 -35
  23. data/lib/aws-sdk-s3/object_multipart_copier.rb +2 -1
  24. data/lib/aws-sdk-s3/object_summary.rb +72 -20
  25. data/lib/aws-sdk-s3/object_version.rb +7 -9
  26. data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -1
  27. data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -1
  28. data/lib/aws-sdk-s3/resource.rb +6 -0
  29. data/lib/aws-sdk-s3/transfer_manager.rb +303 -0
  30. data/lib/aws-sdk-s3/types.rb +1490 -189
  31. data/lib/aws-sdk-s3.rb +1 -1
  32. data/sig/bucket.rbs +12 -3
  33. data/sig/client.rbs +170 -31
  34. data/sig/errors.rbs +2 -0
  35. data/sig/multipart_upload.rbs +1 -1
  36. data/sig/object.rbs +15 -10
  37. data/sig/object_summary.rbs +11 -9
  38. data/sig/resource.rbs +8 -1
  39. data/sig/types.rbs +215 -29
  40. metadata +7 -4
@@ -14,6 +14,7 @@ module Aws::S3
14
14
 
15
15
  include Seahorse::Model
16
16
 
17
+ AbacStatus = Shapes::StructureShape.new(name: 'AbacStatus')
17
18
  AbortDate = Shapes::TimestampShape.new(name: 'AbortDate')
18
19
  AbortIncompleteMultipartUpload = Shapes::StructureShape.new(name: 'AbortIncompleteMultipartUpload')
19
20
  AbortMultipartUploadOutput = Shapes::StructureShape.new(name: 'AbortMultipartUploadOutput')
@@ -43,8 +44,10 @@ module Aws::S3
43
44
  AnalyticsS3BucketDestination = Shapes::StructureShape.new(name: 'AnalyticsS3BucketDestination')
44
45
  AnalyticsS3ExportFileFormat = Shapes::StringShape.new(name: 'AnalyticsS3ExportFileFormat')
45
46
  ArchiveStatus = Shapes::StringShape.new(name: 'ArchiveStatus')
47
+ BlockedEncryptionTypes = Shapes::StructureShape.new(name: 'BlockedEncryptionTypes')
46
48
  Body = Shapes::BlobShape.new(name: 'Body')
47
49
  Bucket = Shapes::StructureShape.new(name: 'Bucket')
50
+ BucketAbacStatus = Shapes::StringShape.new(name: 'BucketAbacStatus')
48
51
  BucketAccelerateStatus = Shapes::StringShape.new(name: 'BucketAccelerateStatus')
49
52
  BucketAlreadyExists = Shapes::StructureShape.new(name: 'BucketAlreadyExists')
50
53
  BucketAlreadyOwnedByYou = Shapes::StructureShape.new(name: 'BucketAlreadyOwnedByYou')
@@ -81,6 +84,7 @@ module Aws::S3
81
84
  ChecksumSHA1 = Shapes::StringShape.new(name: 'ChecksumSHA1')
82
85
  ChecksumSHA256 = Shapes::StringShape.new(name: 'ChecksumSHA256')
83
86
  ChecksumType = Shapes::StringShape.new(name: 'ChecksumType')
87
+ ClientToken = Shapes::StringShape.new(name: 'ClientToken')
84
88
  CloudFunction = Shapes::StringShape.new(name: 'CloudFunction')
85
89
  CloudFunctionConfiguration = Shapes::StructureShape.new(name: 'CloudFunctionConfiguration')
86
90
  CloudFunctionInvocationRole = Shapes::StringShape.new(name: 'CloudFunctionInvocationRole')
@@ -119,6 +123,7 @@ module Aws::S3
119
123
  CopySourceSSECustomerKeyMD5 = Shapes::StringShape.new(name: 'CopySourceSSECustomerKeyMD5')
120
124
  CopySourceVersionId = Shapes::StringShape.new(name: 'CopySourceVersionId')
121
125
  CreateBucketConfiguration = Shapes::StructureShape.new(name: 'CreateBucketConfiguration')
126
+ CreateBucketMetadataConfigurationRequest = Shapes::StructureShape.new(name: 'CreateBucketMetadataConfigurationRequest')
122
127
  CreateBucketMetadataTableConfigurationRequest = Shapes::StructureShape.new(name: 'CreateBucketMetadataTableConfigurationRequest')
123
128
  CreateBucketOutput = Shapes::StructureShape.new(name: 'CreateBucketOutput')
124
129
  CreateBucketRequest = Shapes::StructureShape.new(name: 'CreateBucketRequest')
@@ -139,6 +144,7 @@ module Aws::S3
139
144
  DeleteBucketIntelligentTieringConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketIntelligentTieringConfigurationRequest')
140
145
  DeleteBucketInventoryConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketInventoryConfigurationRequest')
141
146
  DeleteBucketLifecycleRequest = Shapes::StructureShape.new(name: 'DeleteBucketLifecycleRequest')
147
+ DeleteBucketMetadataConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketMetadataConfigurationRequest')
142
148
  DeleteBucketMetadataTableConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketMetadataTableConfigurationRequest')
143
149
  DeleteBucketMetricsConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketMetricsConfigurationRequest')
144
150
  DeleteBucketOwnershipControlsRequest = Shapes::StructureShape.new(name: 'DeleteBucketOwnershipControlsRequest')
@@ -165,6 +171,7 @@ module Aws::S3
165
171
  Delimiter = Shapes::StringShape.new(name: 'Delimiter')
166
172
  Description = Shapes::StringShape.new(name: 'Description')
167
173
  Destination = Shapes::StructureShape.new(name: 'Destination')
174
+ DestinationResult = Shapes::StructureShape.new(name: 'DestinationResult')
168
175
  DirectoryBucketToken = Shapes::StringShape.new(name: 'DirectoryBucketToken')
169
176
  DisplayName = Shapes::StringShape.new(name: 'DisplayName')
170
177
  ETag = Shapes::StringShape.new(name: 'ETag')
@@ -173,6 +180,8 @@ module Aws::S3
173
180
  EncodingType = Shapes::StringShape.new(name: 'EncodingType')
174
181
  Encryption = Shapes::StructureShape.new(name: 'Encryption')
175
182
  EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
183
+ EncryptionType = Shapes::StringShape.new(name: 'EncryptionType')
184
+ EncryptionTypeList = Shapes::ListShape.new(name: 'EncryptionTypeList', flattened: true)
176
185
  EncryptionTypeMismatch = Shapes::StructureShape.new(name: 'EncryptionTypeMismatch')
177
186
  End = Shapes::IntegerShape.new(name: 'End')
178
187
  EndEvent = Shapes::StructureShape.new(name: 'EndEvent')
@@ -188,6 +197,7 @@ module Aws::S3
188
197
  ExistingObjectReplication = Shapes::StructureShape.new(name: 'ExistingObjectReplication')
189
198
  ExistingObjectReplicationStatus = Shapes::StringShape.new(name: 'ExistingObjectReplicationStatus')
190
199
  Expiration = Shapes::StringShape.new(name: 'Expiration')
200
+ ExpirationState = Shapes::StringShape.new(name: 'ExpirationState')
191
201
  ExpirationStatus = Shapes::StringShape.new(name: 'ExpirationStatus')
192
202
  ExpiredObjectDeleteMarker = Shapes::BooleanShape.new(name: 'ExpiredObjectDeleteMarker')
193
203
  Expires = Shapes::TimestampShape.new(name: 'Expires')
@@ -203,6 +213,8 @@ module Aws::S3
203
213
  FilterRuleList = Shapes::ListShape.new(name: 'FilterRuleList', flattened: true)
204
214
  FilterRuleName = Shapes::StringShape.new(name: 'FilterRuleName')
205
215
  FilterRuleValue = Shapes::StringShape.new(name: 'FilterRuleValue')
216
+ GetBucketAbacOutput = Shapes::StructureShape.new(name: 'GetBucketAbacOutput')
217
+ GetBucketAbacRequest = Shapes::StructureShape.new(name: 'GetBucketAbacRequest')
206
218
  GetBucketAccelerateConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketAccelerateConfigurationOutput')
207
219
  GetBucketAccelerateConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketAccelerateConfigurationRequest')
208
220
  GetBucketAclOutput = Shapes::StructureShape.new(name: 'GetBucketAclOutput')
@@ -225,6 +237,9 @@ module Aws::S3
225
237
  GetBucketLocationRequest = Shapes::StructureShape.new(name: 'GetBucketLocationRequest')
226
238
  GetBucketLoggingOutput = Shapes::StructureShape.new(name: 'GetBucketLoggingOutput')
227
239
  GetBucketLoggingRequest = Shapes::StructureShape.new(name: 'GetBucketLoggingRequest')
240
+ GetBucketMetadataConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketMetadataConfigurationOutput')
241
+ GetBucketMetadataConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketMetadataConfigurationRequest')
242
+ GetBucketMetadataConfigurationResult = Shapes::StructureShape.new(name: 'GetBucketMetadataConfigurationResult')
228
243
  GetBucketMetadataTableConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketMetadataTableConfigurationOutput')
229
244
  GetBucketMetadataTableConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketMetadataTableConfigurationRequest')
230
245
  GetBucketMetadataTableConfigurationResult = Shapes::StructureShape.new(name: 'GetBucketMetadataTableConfigurationResult')
@@ -284,6 +299,7 @@ module Aws::S3
284
299
  HttpErrorCodeReturnedEquals = Shapes::StringShape.new(name: 'HttpErrorCodeReturnedEquals')
285
300
  HttpRedirectCode = Shapes::StringShape.new(name: 'HttpRedirectCode')
286
301
  ID = Shapes::StringShape.new(name: 'ID')
302
+ IdempotencyParameterMismatch = Shapes::StructureShape.new(name: 'IdempotencyParameterMismatch')
287
303
  IfMatch = Shapes::StringShape.new(name: 'IfMatch')
288
304
  IfMatchInitiatedTime = Shapes::TimestampShape.new(name: 'IfMatchInitiatedTime', timestampFormat: "rfc822")
289
305
  IfMatchLastModifiedTime = Shapes::TimestampShape.new(name: 'IfMatchLastModifiedTime', timestampFormat: "rfc822")
@@ -308,6 +324,7 @@ module Aws::S3
308
324
  InvalidWriteOffset = Shapes::StructureShape.new(name: 'InvalidWriteOffset')
309
325
  InventoryConfiguration = Shapes::StructureShape.new(name: 'InventoryConfiguration')
310
326
  InventoryConfigurationList = Shapes::ListShape.new(name: 'InventoryConfigurationList', flattened: true)
327
+ InventoryConfigurationState = Shapes::StringShape.new(name: 'InventoryConfigurationState')
311
328
  InventoryDestination = Shapes::StructureShape.new(name: 'InventoryDestination')
312
329
  InventoryEncryption = Shapes::StructureShape.new(name: 'InventoryEncryption')
313
330
  InventoryFilter = Shapes::StructureShape.new(name: 'InventoryFilter')
@@ -319,6 +336,9 @@ module Aws::S3
319
336
  InventoryOptionalFields = Shapes::ListShape.new(name: 'InventoryOptionalFields')
320
337
  InventoryS3BucketDestination = Shapes::StructureShape.new(name: 'InventoryS3BucketDestination')
321
338
  InventorySchedule = Shapes::StructureShape.new(name: 'InventorySchedule')
339
+ InventoryTableConfiguration = Shapes::StructureShape.new(name: 'InventoryTableConfiguration')
340
+ InventoryTableConfigurationResult = Shapes::StructureShape.new(name: 'InventoryTableConfigurationResult')
341
+ InventoryTableConfigurationUpdates = Shapes::StructureShape.new(name: 'InventoryTableConfigurationUpdates')
322
342
  IsEnabled = Shapes::BooleanShape.new(name: 'IsEnabled')
323
343
  IsLatest = Shapes::BooleanShape.new(name: 'IsLatest')
324
344
  IsPublic = Shapes::BooleanShape.new(name: 'IsPublic')
@@ -327,10 +347,14 @@ module Aws::S3
327
347
  JSONInput = Shapes::StructureShape.new(name: 'JSONInput')
328
348
  JSONOutput = Shapes::StructureShape.new(name: 'JSONOutput')
329
349
  JSONType = Shapes::StringShape.new(name: 'JSONType')
350
+ JournalTableConfiguration = Shapes::StructureShape.new(name: 'JournalTableConfiguration')
351
+ JournalTableConfigurationResult = Shapes::StructureShape.new(name: 'JournalTableConfigurationResult')
352
+ JournalTableConfigurationUpdates = Shapes::StructureShape.new(name: 'JournalTableConfigurationUpdates')
330
353
  KMSContext = Shapes::StringShape.new(name: 'KMSContext')
331
354
  KeyCount = Shapes::IntegerShape.new(name: 'KeyCount')
332
355
  KeyMarker = Shapes::StringShape.new(name: 'KeyMarker')
333
356
  KeyPrefixEquals = Shapes::StringShape.new(name: 'KeyPrefixEquals')
357
+ KmsKeyArn = Shapes::StringShape.new(name: 'KmsKeyArn')
334
358
  LambdaFunctionArn = Shapes::StringShape.new(name: 'LambdaFunctionArn')
335
359
  LambdaFunctionConfiguration = Shapes::StructureShape.new(name: 'LambdaFunctionConfiguration')
336
360
  LambdaFunctionConfigurationList = Shapes::ListShape.new(name: 'LambdaFunctionConfigurationList', flattened: true)
@@ -382,11 +406,14 @@ module Aws::S3
382
406
  MaxUploads = Shapes::IntegerShape.new(name: 'MaxUploads')
383
407
  Message = Shapes::StringShape.new(name: 'Message')
384
408
  Metadata = Shapes::MapShape.new(name: 'Metadata')
409
+ MetadataConfiguration = Shapes::StructureShape.new(name: 'MetadataConfiguration')
410
+ MetadataConfigurationResult = Shapes::StructureShape.new(name: 'MetadataConfigurationResult')
385
411
  MetadataDirective = Shapes::StringShape.new(name: 'MetadataDirective')
386
412
  MetadataEntry = Shapes::StructureShape.new(name: 'MetadataEntry')
387
413
  MetadataKey = Shapes::StringShape.new(name: 'MetadataKey')
388
414
  MetadataTableConfiguration = Shapes::StructureShape.new(name: 'MetadataTableConfiguration')
389
415
  MetadataTableConfigurationResult = Shapes::StructureShape.new(name: 'MetadataTableConfigurationResult')
416
+ MetadataTableEncryptionConfiguration = Shapes::StructureShape.new(name: 'MetadataTableEncryptionConfiguration')
390
417
  MetadataTableStatus = Shapes::StringShape.new(name: 'MetadataTableStatus')
391
418
  MetadataValue = Shapes::StringShape.new(name: 'MetadataValue')
392
419
  Metrics = Shapes::StructureShape.new(name: 'Metrics')
@@ -477,6 +504,7 @@ module Aws::S3
477
504
  ProgressEvent = Shapes::StructureShape.new(name: 'ProgressEvent')
478
505
  Protocol = Shapes::StringShape.new(name: 'Protocol')
479
506
  PublicAccessBlockConfiguration = Shapes::StructureShape.new(name: 'PublicAccessBlockConfiguration')
507
+ PutBucketAbacRequest = Shapes::StructureShape.new(name: 'PutBucketAbacRequest')
480
508
  PutBucketAccelerateConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketAccelerateConfigurationRequest')
481
509
  PutBucketAclRequest = Shapes::StructureShape.new(name: 'PutBucketAclRequest')
482
510
  PutBucketAnalyticsConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketAnalyticsConfigurationRequest')
@@ -521,10 +549,19 @@ module Aws::S3
521
549
  QuoteFields = Shapes::StringShape.new(name: 'QuoteFields')
522
550
  Range = Shapes::StringShape.new(name: 'Range')
523
551
  RecordDelimiter = Shapes::StringShape.new(name: 'RecordDelimiter')
552
+ RecordExpiration = Shapes::StructureShape.new(name: 'RecordExpiration')
553
+ RecordExpirationDays = Shapes::IntegerShape.new(name: 'RecordExpirationDays')
524
554
  RecordsEvent = Shapes::StructureShape.new(name: 'RecordsEvent')
525
555
  Redirect = Shapes::StructureShape.new(name: 'Redirect')
526
556
  RedirectAllRequestsTo = Shapes::StructureShape.new(name: 'RedirectAllRequestsTo')
527
557
  Region = Shapes::StringShape.new(name: 'Region')
558
+ RenameObjectOutput = Shapes::StructureShape.new(name: 'RenameObjectOutput')
559
+ RenameObjectRequest = Shapes::StructureShape.new(name: 'RenameObjectRequest')
560
+ RenameSource = Shapes::StringShape.new(name: 'RenameSource')
561
+ RenameSourceIfMatch = Shapes::StringShape.new(name: 'RenameSourceIfMatch')
562
+ RenameSourceIfModifiedSince = Shapes::TimestampShape.new(name: 'RenameSourceIfModifiedSince', timestampFormat: "rfc822")
563
+ RenameSourceIfNoneMatch = Shapes::StringShape.new(name: 'RenameSourceIfNoneMatch')
564
+ RenameSourceIfUnmodifiedSince = Shapes::TimestampShape.new(name: 'RenameSourceIfUnmodifiedSince', timestampFormat: "rfc822")
528
565
  ReplaceKeyPrefixWith = Shapes::StringShape.new(name: 'ReplaceKeyPrefixWith')
529
566
  ReplaceKeyWith = Shapes::StringShape.new(name: 'ReplaceKeyWith')
530
567
  ReplicaKmsKeyID = Shapes::StringShape.new(name: 'ReplicaKmsKeyID')
@@ -567,8 +604,10 @@ module Aws::S3
567
604
  Rules = Shapes::ListShape.new(name: 'Rules', flattened: true)
568
605
  S3KeyFilter = Shapes::StructureShape.new(name: 'S3KeyFilter')
569
606
  S3Location = Shapes::StructureShape.new(name: 'S3Location')
607
+ S3RegionalOrS3ExpressBucketArnString = Shapes::StringShape.new(name: 'S3RegionalOrS3ExpressBucketArnString')
570
608
  S3TablesArn = Shapes::StringShape.new(name: 'S3TablesArn')
571
609
  S3TablesBucketArn = Shapes::StringShape.new(name: 'S3TablesBucketArn')
610
+ S3TablesBucketType = Shapes::StringShape.new(name: 'S3TablesBucketType')
572
611
  S3TablesDestination = Shapes::StructureShape.new(name: 'S3TablesDestination')
573
612
  S3TablesDestinationResult = Shapes::StructureShape.new(name: 'S3TablesDestinationResult')
574
613
  S3TablesName = Shapes::StringShape.new(name: 'S3TablesName')
@@ -610,6 +649,7 @@ module Aws::S3
610
649
  StorageClassAnalysisDataExport = Shapes::StructureShape.new(name: 'StorageClassAnalysisDataExport')
611
650
  StorageClassAnalysisSchemaVersion = Shapes::StringShape.new(name: 'StorageClassAnalysisSchemaVersion')
612
651
  Suffix = Shapes::StringShape.new(name: 'Suffix')
652
+ TableSseAlgorithm = Shapes::StringShape.new(name: 'TableSseAlgorithm')
613
653
  Tag = Shapes::StructureShape.new(name: 'Tag')
614
654
  TagCount = Shapes::IntegerShape.new(name: 'TagCount')
615
655
  TagSet = Shapes::ListShape.new(name: 'TagSet')
@@ -636,6 +676,8 @@ module Aws::S3
636
676
  TransitionStorageClass = Shapes::StringShape.new(name: 'TransitionStorageClass')
637
677
  Type = Shapes::StringShape.new(name: 'Type')
638
678
  URI = Shapes::StringShape.new(name: 'URI')
679
+ UpdateBucketMetadataInventoryTableConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateBucketMetadataInventoryTableConfigurationRequest')
680
+ UpdateBucketMetadataJournalTableConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateBucketMetadataJournalTableConfigurationRequest')
639
681
  UploadIdMarker = Shapes::StringShape.new(name: 'UploadIdMarker')
640
682
  UploadPartCopyOutput = Shapes::StructureShape.new(name: 'UploadPartCopyOutput')
641
683
  UploadPartCopyRequest = Shapes::StructureShape.new(name: 'UploadPartCopyRequest')
@@ -652,6 +694,9 @@ module Aws::S3
652
694
  WriteOffsetBytes = Shapes::IntegerShape.new(name: 'WriteOffsetBytes')
653
695
  Years = Shapes::IntegerShape.new(name: 'Years')
654
696
 
697
+ AbacStatus.add_member(:status, Shapes::ShapeRef.new(shape: BucketAbacStatus, location_name: "Status"))
698
+ AbacStatus.struct_class = Types::AbacStatus
699
+
655
700
  AbortIncompleteMultipartUpload.add_member(:days_after_initiation, Shapes::ShapeRef.new(shape: DaysAfterInitiation, location_name: "DaysAfterInitiation"))
656
701
  AbortIncompleteMultipartUpload.struct_class = Types::AbortIncompleteMultipartUpload
657
702
 
@@ -707,9 +752,13 @@ module Aws::S3
707
752
  AnalyticsS3BucketDestination.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
708
753
  AnalyticsS3BucketDestination.struct_class = Types::AnalyticsS3BucketDestination
709
754
 
755
+ BlockedEncryptionTypes.add_member(:encryption_type, Shapes::ShapeRef.new(shape: EncryptionTypeList, location_name: "EncryptionType"))
756
+ BlockedEncryptionTypes.struct_class = Types::BlockedEncryptionTypes
757
+
710
758
  Bucket.add_member(:name, Shapes::ShapeRef.new(shape: BucketName, location_name: "Name"))
711
759
  Bucket.add_member(:creation_date, Shapes::ShapeRef.new(shape: CreationDate, location_name: "CreationDate"))
712
760
  Bucket.add_member(:bucket_region, Shapes::ShapeRef.new(shape: BucketRegion, location_name: "BucketRegion"))
761
+ Bucket.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: S3RegionalOrS3ExpressBucketArnString, location_name: "BucketArn"))
713
762
  Bucket.struct_class = Types::Bucket
714
763
 
715
764
  BucketAlreadyExists.struct_class = Types::BucketAlreadyExists
@@ -872,6 +921,8 @@ module Aws::S3
872
921
  CopyObjectRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
873
922
  CopyObjectRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
874
923
  CopyObjectRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
924
+ CopyObjectRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: IfMatch, location: "header", location_name: "If-Match"))
925
+ CopyObjectRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
875
926
  CopyObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam" => {"name" => "Key"}}))
876
927
  CopyObjectRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
877
928
  CopyObjectRequest.add_member(:metadata_directive, Shapes::ShapeRef.new(shape: MetadataDirective, location: "header", location_name: "x-amz-metadata-directive"))
@@ -919,8 +970,18 @@ module Aws::S3
919
970
  CreateBucketConfiguration.add_member(:location_constraint, Shapes::ShapeRef.new(shape: BucketLocationConstraint, location_name: "LocationConstraint"))
920
971
  CreateBucketConfiguration.add_member(:location, Shapes::ShapeRef.new(shape: LocationInfo, location_name: "Location"))
921
972
  CreateBucketConfiguration.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketInfo, location_name: "Bucket"))
973
+ CreateBucketConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: TagSet, location_name: "Tags"))
922
974
  CreateBucketConfiguration.struct_class = Types::CreateBucketConfiguration
923
975
 
976
+ CreateBucketMetadataConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
977
+ CreateBucketMetadataConfigurationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
978
+ CreateBucketMetadataConfigurationRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
979
+ CreateBucketMetadataConfigurationRequest.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, required: true, location_name: "MetadataConfiguration", metadata: {"xmlNamespace" => {"uri" => "http://s3.amazonaws.com/doc/2006-03-01/"}}))
980
+ CreateBucketMetadataConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
981
+ CreateBucketMetadataConfigurationRequest.struct_class = Types::CreateBucketMetadataConfigurationRequest
982
+ CreateBucketMetadataConfigurationRequest[:payload] = :metadata_configuration
983
+ CreateBucketMetadataConfigurationRequest[:payload_member] = CreateBucketMetadataConfigurationRequest.member(:metadata_configuration)
984
+
924
985
  CreateBucketMetadataTableConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
925
986
  CreateBucketMetadataTableConfigurationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
926
987
  CreateBucketMetadataTableConfigurationRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
@@ -931,6 +992,7 @@ module Aws::S3
931
992
  CreateBucketMetadataTableConfigurationRequest[:payload_member] = CreateBucketMetadataTableConfigurationRequest.member(:metadata_table_configuration)
932
993
 
933
994
  CreateBucketOutput.add_member(:location, Shapes::ShapeRef.new(shape: Location, location: "header", location_name: "Location"))
995
+ CreateBucketOutput.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: S3RegionalOrS3ExpressBucketArnString, location: "header", location_name: "x-amz-bucket-arn"))
934
996
  CreateBucketOutput.struct_class = Types::CreateBucketOutput
935
997
 
936
998
  CreateBucketRequest.add_member(:acl, Shapes::ShapeRef.new(shape: BucketCannedACL, location: "header", location_name: "x-amz-acl"))
@@ -1035,6 +1097,7 @@ module Aws::S3
1035
1097
 
1036
1098
  DeleteBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
1037
1099
  DeleteBucketIntelligentTieringConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: IntelligentTieringId, required: true, location: "querystring", location_name: "id"))
1100
+ DeleteBucketIntelligentTieringConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
1038
1101
  DeleteBucketIntelligentTieringConfigurationRequest.struct_class = Types::DeleteBucketIntelligentTieringConfigurationRequest
1039
1102
 
1040
1103
  DeleteBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
@@ -1046,6 +1109,10 @@ module Aws::S3
1046
1109
  DeleteBucketLifecycleRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
1047
1110
  DeleteBucketLifecycleRequest.struct_class = Types::DeleteBucketLifecycleRequest
1048
1111
 
1112
+ DeleteBucketMetadataConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
1113
+ DeleteBucketMetadataConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
1114
+ DeleteBucketMetadataConfigurationRequest.struct_class = Types::DeleteBucketMetadataConfigurationRequest
1115
+
1049
1116
  DeleteBucketMetadataTableConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
1050
1117
  DeleteBucketMetadataTableConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
1051
1118
  DeleteBucketMetadataTableConfigurationRequest.struct_class = Types::DeleteBucketMetadataTableConfigurationRequest
@@ -1154,6 +1221,11 @@ module Aws::S3
1154
1221
  Destination.add_member(:metrics, Shapes::ShapeRef.new(shape: Metrics, location_name: "Metrics"))
1155
1222
  Destination.struct_class = Types::Destination
1156
1223
 
1224
+ DestinationResult.add_member(:table_bucket_type, Shapes::ShapeRef.new(shape: S3TablesBucketType, location_name: "TableBucketType"))
1225
+ DestinationResult.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: S3TablesBucketArn, location_name: "TableBucketArn"))
1226
+ DestinationResult.add_member(:table_namespace, Shapes::ShapeRef.new(shape: S3TablesNamespace, location_name: "TableNamespace"))
1227
+ DestinationResult.struct_class = Types::DestinationResult
1228
+
1157
1229
  Encryption.add_member(:encryption_type, Shapes::ShapeRef.new(shape: ServerSideEncryption, required: true, location_name: "EncryptionType"))
1158
1230
  Encryption.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location_name: "KMSKeyId"))
1159
1231
  Encryption.add_member(:kms_context, Shapes::ShapeRef.new(shape: KMSContext, location_name: "KMSContext"))
@@ -1162,6 +1234,8 @@ module Aws::S3
1162
1234
  EncryptionConfiguration.add_member(:replica_kms_key_id, Shapes::ShapeRef.new(shape: ReplicaKmsKeyID, location_name: "ReplicaKmsKeyID"))
1163
1235
  EncryptionConfiguration.struct_class = Types::EncryptionConfiguration
1164
1236
 
1237
+ EncryptionTypeList.member = Shapes::ShapeRef.new(shape: EncryptionType, location_name: "EncryptionType")
1238
+
1165
1239
  EncryptionTypeMismatch.struct_class = Types::EncryptionTypeMismatch
1166
1240
 
1167
1241
  EndEvent.struct_class = Types::EndEvent
@@ -1196,6 +1270,15 @@ module Aws::S3
1196
1270
 
1197
1271
  FilterRuleList.member = Shapes::ShapeRef.new(shape: FilterRule)
1198
1272
 
1273
+ GetBucketAbacOutput.add_member(:abac_status, Shapes::ShapeRef.new(shape: AbacStatus, location_name: "AbacStatus"))
1274
+ GetBucketAbacOutput.struct_class = Types::GetBucketAbacOutput
1275
+ GetBucketAbacOutput[:payload] = :abac_status
1276
+ GetBucketAbacOutput[:payload_member] = GetBucketAbacOutput.member(:abac_status)
1277
+
1278
+ GetBucketAbacRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
1279
+ GetBucketAbacRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
1280
+ GetBucketAbacRequest.struct_class = Types::GetBucketAbacRequest
1281
+
1199
1282
  GetBucketAccelerateConfigurationOutput.add_member(:status, Shapes::ShapeRef.new(shape: BucketAccelerateStatus, location_name: "Status"))
1200
1283
  GetBucketAccelerateConfigurationOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1201
1284
  GetBucketAccelerateConfigurationOutput.struct_class = Types::GetBucketAccelerateConfigurationOutput
@@ -1246,6 +1329,7 @@ module Aws::S3
1246
1329
 
1247
1330
  GetBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
1248
1331
  GetBucketIntelligentTieringConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: IntelligentTieringId, required: true, location: "querystring", location_name: "id"))
1332
+ GetBucketIntelligentTieringConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
1249
1333
  GetBucketIntelligentTieringConfigurationRequest.struct_class = Types::GetBucketIntelligentTieringConfigurationRequest
1250
1334
 
1251
1335
  GetBucketInventoryConfigurationOutput.add_member(:inventory_configuration, Shapes::ShapeRef.new(shape: InventoryConfiguration, location_name: "InventoryConfiguration"))
@@ -1287,6 +1371,18 @@ module Aws::S3
1287
1371
  GetBucketLoggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
1288
1372
  GetBucketLoggingRequest.struct_class = Types::GetBucketLoggingRequest
1289
1373
 
1374
+ GetBucketMetadataConfigurationOutput.add_member(:get_bucket_metadata_configuration_result, Shapes::ShapeRef.new(shape: GetBucketMetadataConfigurationResult, location_name: "GetBucketMetadataConfigurationResult"))
1375
+ GetBucketMetadataConfigurationOutput.struct_class = Types::GetBucketMetadataConfigurationOutput
1376
+ GetBucketMetadataConfigurationOutput[:payload] = :get_bucket_metadata_configuration_result
1377
+ GetBucketMetadataConfigurationOutput[:payload_member] = GetBucketMetadataConfigurationOutput.member(:get_bucket_metadata_configuration_result)
1378
+
1379
+ GetBucketMetadataConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
1380
+ GetBucketMetadataConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
1381
+ GetBucketMetadataConfigurationRequest.struct_class = Types::GetBucketMetadataConfigurationRequest
1382
+
1383
+ GetBucketMetadataConfigurationResult.add_member(:metadata_configuration_result, Shapes::ShapeRef.new(shape: MetadataConfigurationResult, required: true, location_name: "MetadataConfigurationResult"))
1384
+ GetBucketMetadataConfigurationResult.struct_class = Types::GetBucketMetadataConfigurationResult
1385
+
1290
1386
  GetBucketMetadataTableConfigurationOutput.add_member(:get_bucket_metadata_table_configuration_result, Shapes::ShapeRef.new(shape: GetBucketMetadataTableConfigurationResult, location_name: "GetBucketMetadataTableConfigurationResult"))
1291
1387
  GetBucketMetadataTableConfigurationOutput.struct_class = Types::GetBucketMetadataTableConfigurationOutput
1292
1388
  GetBucketMetadataTableConfigurationOutput[:payload] = :get_bucket_metadata_table_configuration_result
@@ -1574,6 +1670,7 @@ module Aws::S3
1574
1670
 
1575
1671
  Grants.member = Shapes::ShapeRef.new(shape: Grant, location_name: "Grant")
1576
1672
 
1673
+ HeadBucketOutput.add_member(:bucket_arn, Shapes::ShapeRef.new(shape: S3RegionalOrS3ExpressBucketArnString, location: "header", location_name: "x-amz-bucket-arn"))
1577
1674
  HeadBucketOutput.add_member(:bucket_location_type, Shapes::ShapeRef.new(shape: LocationType, location: "header", location_name: "x-amz-bucket-location-type"))
1578
1675
  HeadBucketOutput.add_member(:bucket_location_name, Shapes::ShapeRef.new(shape: BucketLocationName, location: "header", location_name: "x-amz-bucket-location-name"))
1579
1676
  HeadBucketOutput.add_member(:bucket_region, Shapes::ShapeRef.new(shape: Region, location: "header", location_name: "x-amz-bucket-region"))
@@ -1619,6 +1716,7 @@ module Aws::S3
1619
1716
  HeadObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1620
1717
  HeadObjectOutput.add_member(:replication_status, Shapes::ShapeRef.new(shape: ReplicationStatus, location: "header", location_name: "x-amz-replication-status"))
1621
1718
  HeadObjectOutput.add_member(:parts_count, Shapes::ShapeRef.new(shape: PartsCount, location: "header", location_name: "x-amz-mp-parts-count"))
1719
+ HeadObjectOutput.add_member(:tag_count, Shapes::ShapeRef.new(shape: TagCount, location: "header", location_name: "x-amz-tagging-count"))
1622
1720
  HeadObjectOutput.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: ObjectLockMode, location: "header", location_name: "x-amz-object-lock-mode"))
1623
1721
  HeadObjectOutput.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: ObjectLockRetainUntilDate, location: "header", location_name: "x-amz-object-lock-retain-until-date"))
1624
1722
  HeadObjectOutput.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
@@ -1647,6 +1745,8 @@ module Aws::S3
1647
1745
  HeadObjectRequest.add_member(:checksum_mode, Shapes::ShapeRef.new(shape: ChecksumMode, location: "header", location_name: "x-amz-checksum-mode"))
1648
1746
  HeadObjectRequest.struct_class = Types::HeadObjectRequest
1649
1747
 
1748
+ IdempotencyParameterMismatch.struct_class = Types::IdempotencyParameterMismatch
1749
+
1650
1750
  IndexDocument.add_member(:suffix, Shapes::ShapeRef.new(shape: Suffix, required: true, location_name: "Suffix"))
1651
1751
  IndexDocument.struct_class = Types::IndexDocument
1652
1752
 
@@ -1718,12 +1818,41 @@ module Aws::S3
1718
1818
  InventorySchedule.add_member(:frequency, Shapes::ShapeRef.new(shape: InventoryFrequency, required: true, location_name: "Frequency"))
1719
1819
  InventorySchedule.struct_class = Types::InventorySchedule
1720
1820
 
1821
+ InventoryTableConfiguration.add_member(:configuration_state, Shapes::ShapeRef.new(shape: InventoryConfigurationState, required: true, location_name: "ConfigurationState"))
1822
+ InventoryTableConfiguration.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: MetadataTableEncryptionConfiguration, location_name: "EncryptionConfiguration"))
1823
+ InventoryTableConfiguration.struct_class = Types::InventoryTableConfiguration
1824
+
1825
+ InventoryTableConfigurationResult.add_member(:configuration_state, Shapes::ShapeRef.new(shape: InventoryConfigurationState, required: true, location_name: "ConfigurationState"))
1826
+ InventoryTableConfigurationResult.add_member(:table_status, Shapes::ShapeRef.new(shape: MetadataTableStatus, location_name: "TableStatus"))
1827
+ InventoryTableConfigurationResult.add_member(:error, Shapes::ShapeRef.new(shape: ErrorDetails, location_name: "Error"))
1828
+ InventoryTableConfigurationResult.add_member(:table_name, Shapes::ShapeRef.new(shape: S3TablesName, location_name: "TableName"))
1829
+ InventoryTableConfigurationResult.add_member(:table_arn, Shapes::ShapeRef.new(shape: S3TablesArn, location_name: "TableArn"))
1830
+ InventoryTableConfigurationResult.struct_class = Types::InventoryTableConfigurationResult
1831
+
1832
+ InventoryTableConfigurationUpdates.add_member(:configuration_state, Shapes::ShapeRef.new(shape: InventoryConfigurationState, required: true, location_name: "ConfigurationState"))
1833
+ InventoryTableConfigurationUpdates.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: MetadataTableEncryptionConfiguration, location_name: "EncryptionConfiguration"))
1834
+ InventoryTableConfigurationUpdates.struct_class = Types::InventoryTableConfigurationUpdates
1835
+
1721
1836
  JSONInput.add_member(:type, Shapes::ShapeRef.new(shape: JSONType, location_name: "Type"))
1722
1837
  JSONInput.struct_class = Types::JSONInput
1723
1838
 
1724
1839
  JSONOutput.add_member(:record_delimiter, Shapes::ShapeRef.new(shape: RecordDelimiter, location_name: "RecordDelimiter"))
1725
1840
  JSONOutput.struct_class = Types::JSONOutput
1726
1841
 
1842
+ JournalTableConfiguration.add_member(:record_expiration, Shapes::ShapeRef.new(shape: RecordExpiration, required: true, location_name: "RecordExpiration"))
1843
+ JournalTableConfiguration.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: MetadataTableEncryptionConfiguration, location_name: "EncryptionConfiguration"))
1844
+ JournalTableConfiguration.struct_class = Types::JournalTableConfiguration
1845
+
1846
+ JournalTableConfigurationResult.add_member(:table_status, Shapes::ShapeRef.new(shape: MetadataTableStatus, required: true, location_name: "TableStatus"))
1847
+ JournalTableConfigurationResult.add_member(:error, Shapes::ShapeRef.new(shape: ErrorDetails, location_name: "Error"))
1848
+ JournalTableConfigurationResult.add_member(:table_name, Shapes::ShapeRef.new(shape: S3TablesName, required: true, location_name: "TableName"))
1849
+ JournalTableConfigurationResult.add_member(:table_arn, Shapes::ShapeRef.new(shape: S3TablesArn, location_name: "TableArn"))
1850
+ JournalTableConfigurationResult.add_member(:record_expiration, Shapes::ShapeRef.new(shape: RecordExpiration, required: true, location_name: "RecordExpiration"))
1851
+ JournalTableConfigurationResult.struct_class = Types::JournalTableConfigurationResult
1852
+
1853
+ JournalTableConfigurationUpdates.add_member(:record_expiration, Shapes::ShapeRef.new(shape: RecordExpiration, required: true, location_name: "RecordExpiration"))
1854
+ JournalTableConfigurationUpdates.struct_class = Types::JournalTableConfigurationUpdates
1855
+
1727
1856
  LambdaFunctionConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
1728
1857
  LambdaFunctionConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: LambdaFunctionArn, required: true, location_name: "CloudFunction"))
1729
1858
  LambdaFunctionConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, required: true, location_name: "Event"))
@@ -1785,6 +1914,7 @@ module Aws::S3
1785
1914
 
1786
1915
  ListBucketIntelligentTieringConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
1787
1916
  ListBucketIntelligentTieringConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
1917
+ ListBucketIntelligentTieringConfigurationsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
1788
1918
  ListBucketIntelligentTieringConfigurationsRequest.struct_class = Types::ListBucketIntelligentTieringConfigurationsRequest
1789
1919
 
1790
1920
  ListBucketInventoryConfigurationsOutput.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location_name: "ContinuationToken"))
@@ -1978,6 +2108,15 @@ module Aws::S3
1978
2108
  Metadata.key = Shapes::ShapeRef.new(shape: MetadataKey)
1979
2109
  Metadata.value = Shapes::ShapeRef.new(shape: MetadataValue)
1980
2110
 
2111
+ MetadataConfiguration.add_member(:journal_table_configuration, Shapes::ShapeRef.new(shape: JournalTableConfiguration, required: true, location_name: "JournalTableConfiguration"))
2112
+ MetadataConfiguration.add_member(:inventory_table_configuration, Shapes::ShapeRef.new(shape: InventoryTableConfiguration, location_name: "InventoryTableConfiguration"))
2113
+ MetadataConfiguration.struct_class = Types::MetadataConfiguration
2114
+
2115
+ MetadataConfigurationResult.add_member(:destination_result, Shapes::ShapeRef.new(shape: DestinationResult, required: true, location_name: "DestinationResult"))
2116
+ MetadataConfigurationResult.add_member(:journal_table_configuration_result, Shapes::ShapeRef.new(shape: JournalTableConfigurationResult, location_name: "JournalTableConfigurationResult"))
2117
+ MetadataConfigurationResult.add_member(:inventory_table_configuration_result, Shapes::ShapeRef.new(shape: InventoryTableConfigurationResult, location_name: "InventoryTableConfigurationResult"))
2118
+ MetadataConfigurationResult.struct_class = Types::MetadataConfigurationResult
2119
+
1981
2120
  MetadataEntry.add_member(:name, Shapes::ShapeRef.new(shape: MetadataKey, location_name: "Name"))
1982
2121
  MetadataEntry.add_member(:value, Shapes::ShapeRef.new(shape: MetadataValue, location_name: "Value"))
1983
2122
  MetadataEntry.struct_class = Types::MetadataEntry
@@ -1988,6 +2127,10 @@ module Aws::S3
1988
2127
  MetadataTableConfigurationResult.add_member(:s3_tables_destination_result, Shapes::ShapeRef.new(shape: S3TablesDestinationResult, required: true, location_name: "S3TablesDestinationResult"))
1989
2128
  MetadataTableConfigurationResult.struct_class = Types::MetadataTableConfigurationResult
1990
2129
 
2130
+ MetadataTableEncryptionConfiguration.add_member(:sse_algorithm, Shapes::ShapeRef.new(shape: TableSseAlgorithm, required: true, location_name: "SseAlgorithm"))
2131
+ MetadataTableEncryptionConfiguration.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: KmsKeyArn, location_name: "KmsKeyArn"))
2132
+ MetadataTableEncryptionConfiguration.struct_class = Types::MetadataTableEncryptionConfiguration
2133
+
1991
2134
  Metrics.add_member(:status, Shapes::ShapeRef.new(shape: MetricsStatus, required: true, location_name: "Status"))
1992
2135
  Metrics.add_member(:event_threshold, Shapes::ShapeRef.new(shape: ReplicationTimeValue, location_name: "EventThreshold"))
1993
2136
  Metrics.struct_class = Types::Metrics
@@ -2176,6 +2319,15 @@ module Aws::S3
2176
2319
  PublicAccessBlockConfiguration.add_member(:restrict_public_buckets, Shapes::ShapeRef.new(shape: Setting, location_name: "RestrictPublicBuckets"))
2177
2320
  PublicAccessBlockConfiguration.struct_class = Types::PublicAccessBlockConfiguration
2178
2321
 
2322
+ PutBucketAbacRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
2323
+ PutBucketAbacRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
2324
+ PutBucketAbacRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
2325
+ PutBucketAbacRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
2326
+ PutBucketAbacRequest.add_member(:abac_status, Shapes::ShapeRef.new(shape: AbacStatus, required: true, location_name: "AbacStatus", metadata: {"xmlNamespace" => {"uri" => "http://s3.amazonaws.com/doc/2006-03-01/"}}))
2327
+ PutBucketAbacRequest.struct_class = Types::PutBucketAbacRequest
2328
+ PutBucketAbacRequest[:payload] = :abac_status
2329
+ PutBucketAbacRequest[:payload_member] = PutBucketAbacRequest.member(:abac_status)
2330
+
2179
2331
  PutBucketAccelerateConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
2180
2332
  PutBucketAccelerateConfigurationRequest.add_member(:accelerate_configuration, Shapes::ShapeRef.new(shape: AccelerateConfiguration, required: true, location_name: "AccelerateConfiguration", metadata: {"xmlNamespace" => {"uri" => "http://s3.amazonaws.com/doc/2006-03-01/"}}))
2181
2333
  PutBucketAccelerateConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
@@ -2227,6 +2379,7 @@ module Aws::S3
2227
2379
 
2228
2380
  PutBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
2229
2381
  PutBucketIntelligentTieringConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: IntelligentTieringId, required: true, location: "querystring", location_name: "id"))
2382
+ PutBucketIntelligentTieringConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
2230
2383
  PutBucketIntelligentTieringConfigurationRequest.add_member(:intelligent_tiering_configuration, Shapes::ShapeRef.new(shape: IntelligentTieringConfiguration, required: true, location_name: "IntelligentTieringConfiguration", metadata: {"xmlNamespace" => {"uri" => "http://s3.amazonaws.com/doc/2006-03-01/"}}))
2231
2384
  PutBucketIntelligentTieringConfigurationRequest.struct_class = Types::PutBucketIntelligentTieringConfigurationRequest
2232
2385
  PutBucketIntelligentTieringConfigurationRequest[:payload] = :intelligent_tiering_configuration
@@ -2529,6 +2682,10 @@ module Aws::S3
2529
2682
 
2530
2683
  QueueConfigurationList.member = Shapes::ShapeRef.new(shape: QueueConfiguration)
2531
2684
 
2685
+ RecordExpiration.add_member(:expiration, Shapes::ShapeRef.new(shape: ExpirationState, required: true, location_name: "Expiration"))
2686
+ RecordExpiration.add_member(:days, Shapes::ShapeRef.new(shape: RecordExpirationDays, location_name: "Days", metadata: {"box" => true}))
2687
+ RecordExpiration.struct_class = Types::RecordExpiration
2688
+
2532
2689
  RecordsEvent.add_member(:payload, Shapes::ShapeRef.new(shape: Body, eventpayload: true, eventpayload_type: 'blob', location_name: "Payload", metadata: {"eventpayload" => true}))
2533
2690
  RecordsEvent.struct_class = Types::RecordsEvent
2534
2691
 
@@ -2543,6 +2700,22 @@ module Aws::S3
2543
2700
  RedirectAllRequestsTo.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "Protocol"))
2544
2701
  RedirectAllRequestsTo.struct_class = Types::RedirectAllRequestsTo
2545
2702
 
2703
+ RenameObjectOutput.struct_class = Types::RenameObjectOutput
2704
+
2705
+ RenameObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
2706
+ RenameObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam" => {"name" => "Key"}}))
2707
+ RenameObjectRequest.add_member(:rename_source, Shapes::ShapeRef.new(shape: RenameSource, required: true, location: "header", location_name: "x-amz-rename-source"))
2708
+ RenameObjectRequest.add_member(:destination_if_match, Shapes::ShapeRef.new(shape: IfMatch, location: "header", location_name: "If-Match"))
2709
+ RenameObjectRequest.add_member(:destination_if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
2710
+ RenameObjectRequest.add_member(:destination_if_modified_since, Shapes::ShapeRef.new(shape: IfModifiedSince, location: "header", location_name: "If-Modified-Since"))
2711
+ RenameObjectRequest.add_member(:destination_if_unmodified_since, Shapes::ShapeRef.new(shape: IfUnmodifiedSince, location: "header", location_name: "If-Unmodified-Since"))
2712
+ RenameObjectRequest.add_member(:source_if_match, Shapes::ShapeRef.new(shape: RenameSourceIfMatch, location: "header", location_name: "x-amz-rename-source-if-match"))
2713
+ RenameObjectRequest.add_member(:source_if_none_match, Shapes::ShapeRef.new(shape: RenameSourceIfNoneMatch, location: "header", location_name: "x-amz-rename-source-if-none-match"))
2714
+ RenameObjectRequest.add_member(:source_if_modified_since, Shapes::ShapeRef.new(shape: RenameSourceIfModifiedSince, location: "header", location_name: "x-amz-rename-source-if-modified-since"))
2715
+ RenameObjectRequest.add_member(:source_if_unmodified_since, Shapes::ShapeRef.new(shape: RenameSourceIfUnmodifiedSince, location: "header", location_name: "x-amz-rename-source-if-unmodified-since"))
2716
+ RenameObjectRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "header", location_name: "x-amz-client-token", metadata: {"idempotencyToken" => true}))
2717
+ RenameObjectRequest.struct_class = Types::RenameObjectRequest
2718
+
2546
2719
  ReplicaModifications.add_member(:status, Shapes::ShapeRef.new(shape: ReplicaModificationsStatus, required: true, location_name: "Status"))
2547
2720
  ReplicaModifications.struct_class = Types::ReplicaModifications
2548
2721
 
@@ -2704,6 +2877,7 @@ module Aws::S3
2704
2877
 
2705
2878
  ServerSideEncryptionRule.add_member(:apply_server_side_encryption_by_default, Shapes::ShapeRef.new(shape: ServerSideEncryptionByDefault, location_name: "ApplyServerSideEncryptionByDefault"))
2706
2879
  ServerSideEncryptionRule.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location_name: "BucketKeyEnabled"))
2880
+ ServerSideEncryptionRule.add_member(:blocked_encryption_types, Shapes::ShapeRef.new(shape: BlockedEncryptionTypes, location_name: "BlockedEncryptionTypes"))
2707
2881
  ServerSideEncryptionRule.struct_class = Types::ServerSideEncryptionRule
2708
2882
 
2709
2883
  ServerSideEncryptionRules.member = Shapes::ShapeRef.new(shape: ServerSideEncryptionRule)
@@ -2786,6 +2960,24 @@ module Aws::S3
2786
2960
 
2787
2961
  TransitionList.member = Shapes::ShapeRef.new(shape: Transition)
2788
2962
 
2963
+ UpdateBucketMetadataInventoryTableConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
2964
+ UpdateBucketMetadataInventoryTableConfigurationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
2965
+ UpdateBucketMetadataInventoryTableConfigurationRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
2966
+ UpdateBucketMetadataInventoryTableConfigurationRequest.add_member(:inventory_table_configuration, Shapes::ShapeRef.new(shape: InventoryTableConfigurationUpdates, required: true, location_name: "InventoryTableConfiguration", metadata: {"xmlNamespace" => {"uri" => "http://s3.amazonaws.com/doc/2006-03-01/"}}))
2967
+ UpdateBucketMetadataInventoryTableConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
2968
+ UpdateBucketMetadataInventoryTableConfigurationRequest.struct_class = Types::UpdateBucketMetadataInventoryTableConfigurationRequest
2969
+ UpdateBucketMetadataInventoryTableConfigurationRequest[:payload] = :inventory_table_configuration
2970
+ UpdateBucketMetadataInventoryTableConfigurationRequest[:payload_member] = UpdateBucketMetadataInventoryTableConfigurationRequest.member(:inventory_table_configuration)
2971
+
2972
+ UpdateBucketMetadataJournalTableConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam" => {"name" => "Bucket"}}))
2973
+ UpdateBucketMetadataJournalTableConfigurationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
2974
+ UpdateBucketMetadataJournalTableConfigurationRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
2975
+ UpdateBucketMetadataJournalTableConfigurationRequest.add_member(:journal_table_configuration, Shapes::ShapeRef.new(shape: JournalTableConfigurationUpdates, required: true, location_name: "JournalTableConfiguration", metadata: {"xmlNamespace" => {"uri" => "http://s3.amazonaws.com/doc/2006-03-01/"}}))
2976
+ UpdateBucketMetadataJournalTableConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
2977
+ UpdateBucketMetadataJournalTableConfigurationRequest.struct_class = Types::UpdateBucketMetadataJournalTableConfigurationRequest
2978
+ UpdateBucketMetadataJournalTableConfigurationRequest[:payload] = :journal_table_configuration
2979
+ UpdateBucketMetadataJournalTableConfigurationRequest[:payload_member] = UpdateBucketMetadataJournalTableConfigurationRequest.member(:journal_table_configuration)
2980
+
2789
2981
  UploadPartCopyOutput.add_member(:copy_source_version_id, Shapes::ShapeRef.new(shape: CopySourceVersionId, location: "header", location_name: "x-amz-copy-source-version-id"))
2790
2982
  UploadPartCopyOutput.add_member(:copy_part_result, Shapes::ShapeRef.new(shape: CopyPartResult, location_name: "CopyPartResult"))
2791
2983
  UploadPartCopyOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
@@ -2968,6 +3160,22 @@ module Aws::S3
2968
3160
  o.errors << Shapes::ShapeRef.new(shape: BucketAlreadyOwnedByYou)
2969
3161
  end)
2970
3162
 
3163
+ api.add_operation(:create_bucket_metadata_configuration, Seahorse::Model::Operation.new.tap do |o|
3164
+ o.name = "CreateBucketMetadataConfiguration"
3165
+ o.http_method = "POST"
3166
+ o.http_request_uri = "/?metadataConfiguration"
3167
+ o.http_checksum = {
3168
+ "requestAlgorithmMember" => "checksum_algorithm",
3169
+ "requestChecksumRequired" => true,
3170
+ }
3171
+ o.http_checksum = {
3172
+ "requestAlgorithmMember" => "checksum_algorithm",
3173
+ "requestChecksumRequired" => true,
3174
+ }
3175
+ o.input = Shapes::ShapeRef.new(shape: CreateBucketMetadataConfigurationRequest)
3176
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
3177
+ end)
3178
+
2971
3179
  api.add_operation(:create_bucket_metadata_table_configuration, Seahorse::Model::Operation.new.tap do |o|
2972
3180
  o.name = "CreateBucketMetadataTableConfiguration"
2973
3181
  o.http_method = "POST"
@@ -3057,6 +3265,14 @@ module Aws::S3
3057
3265
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
3058
3266
  end)
3059
3267
 
3268
+ api.add_operation(:delete_bucket_metadata_configuration, Seahorse::Model::Operation.new.tap do |o|
3269
+ o.name = "DeleteBucketMetadataConfiguration"
3270
+ o.http_method = "DELETE"
3271
+ o.http_request_uri = "/?metadataConfiguration"
3272
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketMetadataConfigurationRequest)
3273
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
3274
+ end)
3275
+
3060
3276
  api.add_operation(:delete_bucket_metadata_table_configuration, Seahorse::Model::Operation.new.tap do |o|
3061
3277
  o.name = "DeleteBucketMetadataTableConfiguration"
3062
3278
  o.http_method = "DELETE"
@@ -3153,6 +3369,14 @@ module Aws::S3
3153
3369
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
3154
3370
  end)
3155
3371
 
3372
+ api.add_operation(:get_bucket_abac, Seahorse::Model::Operation.new.tap do |o|
3373
+ o.name = "GetBucketAbac"
3374
+ o.http_method = "GET"
3375
+ o.http_request_uri = "/?abac"
3376
+ o.input = Shapes::ShapeRef.new(shape: GetBucketAbacRequest)
3377
+ o.output = Shapes::ShapeRef.new(shape: GetBucketAbacOutput)
3378
+ end)
3379
+
3156
3380
  api.add_operation(:get_bucket_accelerate_configuration, Seahorse::Model::Operation.new.tap do |o|
3157
3381
  o.name = "GetBucketAccelerateConfiguration"
3158
3382
  o.http_method = "GET"
@@ -3242,6 +3466,14 @@ module Aws::S3
3242
3466
  o.output = Shapes::ShapeRef.new(shape: GetBucketLoggingOutput)
3243
3467
  end)
3244
3468
 
3469
+ api.add_operation(:get_bucket_metadata_configuration, Seahorse::Model::Operation.new.tap do |o|
3470
+ o.name = "GetBucketMetadataConfiguration"
3471
+ o.http_method = "GET"
3472
+ o.http_request_uri = "/?metadataConfiguration"
3473
+ o.input = Shapes::ShapeRef.new(shape: GetBucketMetadataConfigurationRequest)
3474
+ o.output = Shapes::ShapeRef.new(shape: GetBucketMetadataConfigurationOutput)
3475
+ end)
3476
+
3245
3477
  api.add_operation(:get_bucket_metadata_table_configuration, Seahorse::Model::Operation.new.tap do |o|
3246
3478
  o.name = "GetBucketMetadataTableConfiguration"
3247
3479
  o.http_method = "GET"
@@ -3579,6 +3811,22 @@ module Aws::S3
3579
3811
  )
3580
3812
  end)
3581
3813
 
3814
+ api.add_operation(:put_bucket_abac, Seahorse::Model::Operation.new.tap do |o|
3815
+ o.name = "PutBucketAbac"
3816
+ o.http_method = "PUT"
3817
+ o.http_request_uri = "/?abac"
3818
+ o.http_checksum = {
3819
+ "requestAlgorithmMember" => "checksum_algorithm",
3820
+ "requestChecksumRequired" => false,
3821
+ }
3822
+ o.http_checksum = {
3823
+ "requestAlgorithmMember" => "checksum_algorithm",
3824
+ "requestChecksumRequired" => false,
3825
+ }
3826
+ o.input = Shapes::ShapeRef.new(shape: PutBucketAbacRequest)
3827
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
3828
+ end)
3829
+
3582
3830
  api.add_operation(:put_bucket_accelerate_configuration, Seahorse::Model::Operation.new.tap do |o|
3583
3831
  o.name = "PutBucketAccelerateConfiguration"
3584
3832
  o.http_method = "PUT"
@@ -3978,6 +4226,15 @@ module Aws::S3
3978
4226
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
3979
4227
  end)
3980
4228
 
4229
+ api.add_operation(:rename_object, Seahorse::Model::Operation.new.tap do |o|
4230
+ o.name = "RenameObject"
4231
+ o.http_method = "PUT"
4232
+ o.http_request_uri = "/{Key+}?renameObject"
4233
+ o.input = Shapes::ShapeRef.new(shape: RenameObjectRequest)
4234
+ o.output = Shapes::ShapeRef.new(shape: RenameObjectOutput)
4235
+ o.errors << Shapes::ShapeRef.new(shape: IdempotencyParameterMismatch)
4236
+ end)
4237
+
3981
4238
  api.add_operation(:restore_object, Seahorse::Model::Operation.new.tap do |o|
3982
4239
  o.name = "RestoreObject"
3983
4240
  o.http_method = "POST"
@@ -4008,6 +4265,38 @@ module Aws::S3
4008
4265
  o.output = Shapes::ShapeRef.new(shape: SelectObjectContentOutput)
4009
4266
  end)
4010
4267
 
4268
+ api.add_operation(:update_bucket_metadata_inventory_table_configuration, Seahorse::Model::Operation.new.tap do |o|
4269
+ o.name = "UpdateBucketMetadataInventoryTableConfiguration"
4270
+ o.http_method = "PUT"
4271
+ o.http_request_uri = "/?metadataInventoryTable"
4272
+ o.http_checksum = {
4273
+ "requestAlgorithmMember" => "checksum_algorithm",
4274
+ "requestChecksumRequired" => true,
4275
+ }
4276
+ o.http_checksum = {
4277
+ "requestAlgorithmMember" => "checksum_algorithm",
4278
+ "requestChecksumRequired" => true,
4279
+ }
4280
+ o.input = Shapes::ShapeRef.new(shape: UpdateBucketMetadataInventoryTableConfigurationRequest)
4281
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
4282
+ end)
4283
+
4284
+ api.add_operation(:update_bucket_metadata_journal_table_configuration, Seahorse::Model::Operation.new.tap do |o|
4285
+ o.name = "UpdateBucketMetadataJournalTableConfiguration"
4286
+ o.http_method = "PUT"
4287
+ o.http_request_uri = "/?metadataJournalTable"
4288
+ o.http_checksum = {
4289
+ "requestAlgorithmMember" => "checksum_algorithm",
4290
+ "requestChecksumRequired" => true,
4291
+ }
4292
+ o.http_checksum = {
4293
+ "requestAlgorithmMember" => "checksum_algorithm",
4294
+ "requestChecksumRequired" => true,
4295
+ }
4296
+ o.input = Shapes::ShapeRef.new(shape: UpdateBucketMetadataJournalTableConfigurationRequest)
4297
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
4298
+ end)
4299
+
4011
4300
  api.add_operation(:upload_part, Seahorse::Model::Operation.new.tap do |o|
4012
4301
  o.name = "UploadPart"
4013
4302
  o.http_method = "PUT"