aws-sdk-s3 1.87.0 → 1.143.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1106 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-s3/bucket.rb +605 -114
- data/lib/aws-sdk-s3/bucket_acl.rb +36 -11
- data/lib/aws-sdk-s3/bucket_cors.rb +40 -15
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +42 -15
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +43 -13
- data/lib/aws-sdk-s3/bucket_logging.rb +40 -11
- data/lib/aws-sdk-s3/bucket_notification.rb +30 -12
- data/lib/aws-sdk-s3/bucket_policy.rb +82 -13
- data/lib/aws-sdk-s3/bucket_request_payment.rb +35 -13
- data/lib/aws-sdk-s3/bucket_tagging.rb +38 -13
- data/lib/aws-sdk-s3/bucket_versioning.rb +82 -21
- data/lib/aws-sdk-s3/bucket_website.rb +38 -13
- data/lib/aws-sdk-s3/client.rb +8666 -3425
- data/lib/aws-sdk-s3/client_api.rb +774 -225
- data/lib/aws-sdk-s3/customizations/bucket.rb +31 -50
- data/lib/aws-sdk-s3/customizations/errors.rb +27 -0
- data/lib/aws-sdk-s3/customizations/object.rb +211 -37
- data/lib/aws-sdk-s3/customizations/types/permanent_redirect.rb +26 -0
- data/lib/aws-sdk-s3/customizations.rb +7 -0
- data/lib/aws-sdk-s3/encryption/client.rb +7 -3
- data/lib/aws-sdk-s3/encryption/decrypt_handler.rb +0 -4
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +13 -9
- data/lib/aws-sdk-s3/encryptionV2/client.rb +7 -3
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +1 -4
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +3 -3
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +0 -4
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +10 -6
- data/lib/aws-sdk-s3/endpoint_parameters.rb +178 -0
- data/lib/aws-sdk-s3/endpoint_provider.rb +591 -0
- data/lib/aws-sdk-s3/endpoints.rb +2590 -0
- data/lib/aws-sdk-s3/errors.rb +1 -1
- data/lib/aws-sdk-s3/event_streams.rb +1 -1
- data/lib/aws-sdk-s3/express_credentials.rb +55 -0
- data/lib/aws-sdk-s3/express_credentials_cache.rb +30 -0
- data/lib/aws-sdk-s3/express_credentials_provider.rb +36 -0
- data/lib/aws-sdk-s3/file_downloader.rb +171 -41
- data/lib/aws-sdk-s3/file_uploader.rb +14 -7
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +26 -8
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +41 -14
- data/lib/aws-sdk-s3/multipart_upload.rb +198 -23
- data/lib/aws-sdk-s3/multipart_upload_part.rb +285 -34
- data/lib/aws-sdk-s3/object.rb +1824 -266
- data/lib/aws-sdk-s3/object_acl.rb +58 -19
- data/lib/aws-sdk-s3/object_copier.rb +7 -5
- data/lib/aws-sdk-s3/object_multipart_copier.rb +41 -19
- data/lib/aws-sdk-s3/object_summary.rb +1579 -299
- data/lib/aws-sdk-s3/object_version.rb +372 -64
- data/lib/aws-sdk-s3/plugins/accelerate.rb +1 -39
- data/lib/aws-sdk-s3/plugins/arn.rb +25 -142
- data/lib/aws-sdk-s3/plugins/bucket_dns.rb +3 -39
- data/lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb +1 -6
- data/lib/aws-sdk-s3/plugins/dualstack.rb +2 -49
- data/lib/aws-sdk-s3/plugins/endpoints.rb +274 -0
- data/lib/aws-sdk-s3/plugins/expect_100_continue.rb +3 -1
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +91 -0
- data/lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb +1 -1
- data/lib/aws-sdk-s3/plugins/iad_regional_endpoint.rb +8 -31
- data/lib/aws-sdk-s3/plugins/location_constraint.rb +3 -1
- data/lib/aws-sdk-s3/plugins/md5s.rb +6 -3
- data/lib/aws-sdk-s3/plugins/s3_signer.rb +35 -102
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +31 -0
- data/lib/aws-sdk-s3/plugins/streaming_retry.rb +23 -2
- data/lib/aws-sdk-s3/presigned_post.rb +99 -78
- data/lib/aws-sdk-s3/presigner.rb +43 -51
- data/lib/aws-sdk-s3/resource.rb +102 -6
- data/lib/aws-sdk-s3/types.rb +7404 -5114
- data/lib/aws-sdk-s3/waiters.rb +1 -1
- data/lib/aws-sdk-s3.rb +6 -2
- data/sig/bucket.rbs +212 -0
- data/sig/bucket_acl.rbs +78 -0
- data/sig/bucket_cors.rbs +69 -0
- data/sig/bucket_lifecycle.rbs +88 -0
- data/sig/bucket_lifecycle_configuration.rbs +111 -0
- data/sig/bucket_logging.rbs +76 -0
- data/sig/bucket_notification.rbs +114 -0
- data/sig/bucket_policy.rbs +59 -0
- data/sig/bucket_request_payment.rbs +54 -0
- data/sig/bucket_tagging.rbs +65 -0
- data/sig/bucket_versioning.rbs +77 -0
- data/sig/bucket_website.rbs +93 -0
- data/sig/client.rbs +2360 -0
- data/sig/errors.rbs +34 -0
- data/sig/multipart_upload.rbs +110 -0
- data/sig/multipart_upload_part.rbs +105 -0
- data/sig/object.rbs +436 -0
- data/sig/object_acl.rbs +86 -0
- data/sig/object_summary.rbs +334 -0
- data/sig/object_version.rbs +131 -0
- data/sig/resource.rbs +124 -0
- data/sig/types.rbs +2562 -0
- data/sig/waiters.rbs +83 -0
- metadata +51 -17
- data/lib/aws-sdk-s3/arn/access_point_arn.rb +0 -62
- data/lib/aws-sdk-s3/arn/outpost_access_point_arn.rb +0 -71
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -22,6 +22,9 @@ module Aws::S3
|
|
22
22
|
AcceptRanges = Shapes::StringShape.new(name: 'AcceptRanges')
|
23
23
|
AccessControlPolicy = Shapes::StructureShape.new(name: 'AccessControlPolicy')
|
24
24
|
AccessControlTranslation = Shapes::StructureShape.new(name: 'AccessControlTranslation')
|
25
|
+
AccessKeyIdValue = Shapes::StringShape.new(name: 'AccessKeyIdValue')
|
26
|
+
AccessPointAlias = Shapes::BooleanShape.new(name: 'AccessPointAlias')
|
27
|
+
AccessPointArn = Shapes::StringShape.new(name: 'AccessPointArn')
|
25
28
|
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
26
29
|
AllowQuotedRecordDelimiter = Shapes::BooleanShape.new(name: 'AllowQuotedRecordDelimiter')
|
27
30
|
AllowedHeader = Shapes::StringShape.new(name: 'AllowedHeader')
|
@@ -45,12 +48,15 @@ module Aws::S3
|
|
45
48
|
BucketAlreadyExists = Shapes::StructureShape.new(name: 'BucketAlreadyExists')
|
46
49
|
BucketAlreadyOwnedByYou = Shapes::StructureShape.new(name: 'BucketAlreadyOwnedByYou')
|
47
50
|
BucketCannedACL = Shapes::StringShape.new(name: 'BucketCannedACL')
|
51
|
+
BucketInfo = Shapes::StructureShape.new(name: 'BucketInfo')
|
48
52
|
BucketKeyEnabled = Shapes::BooleanShape.new(name: 'BucketKeyEnabled')
|
49
53
|
BucketLifecycleConfiguration = Shapes::StructureShape.new(name: 'BucketLifecycleConfiguration')
|
50
54
|
BucketLocationConstraint = Shapes::StringShape.new(name: 'BucketLocationConstraint')
|
55
|
+
BucketLocationName = Shapes::StringShape.new(name: 'BucketLocationName')
|
51
56
|
BucketLoggingStatus = Shapes::StructureShape.new(name: 'BucketLoggingStatus')
|
52
57
|
BucketLogsPermission = Shapes::StringShape.new(name: 'BucketLogsPermission')
|
53
58
|
BucketName = Shapes::StringShape.new(name: 'BucketName')
|
59
|
+
BucketType = Shapes::StringShape.new(name: 'BucketType')
|
54
60
|
BucketVersioningStatus = Shapes::StringShape.new(name: 'BucketVersioningStatus')
|
55
61
|
Buckets = Shapes::ListShape.new(name: 'Buckets')
|
56
62
|
BypassGovernanceRetention = Shapes::BooleanShape.new(name: 'BypassGovernanceRetention')
|
@@ -63,6 +69,14 @@ module Aws::S3
|
|
63
69
|
CSVInput = Shapes::StructureShape.new(name: 'CSVInput')
|
64
70
|
CSVOutput = Shapes::StructureShape.new(name: 'CSVOutput')
|
65
71
|
CacheControl = Shapes::StringShape.new(name: 'CacheControl')
|
72
|
+
Checksum = Shapes::StructureShape.new(name: 'Checksum')
|
73
|
+
ChecksumAlgorithm = Shapes::StringShape.new(name: 'ChecksumAlgorithm')
|
74
|
+
ChecksumAlgorithmList = Shapes::ListShape.new(name: 'ChecksumAlgorithmList', flattened: true)
|
75
|
+
ChecksumCRC32 = Shapes::StringShape.new(name: 'ChecksumCRC32')
|
76
|
+
ChecksumCRC32C = Shapes::StringShape.new(name: 'ChecksumCRC32C')
|
77
|
+
ChecksumMode = Shapes::StringShape.new(name: 'ChecksumMode')
|
78
|
+
ChecksumSHA1 = Shapes::StringShape.new(name: 'ChecksumSHA1')
|
79
|
+
ChecksumSHA256 = Shapes::StringShape.new(name: 'ChecksumSHA256')
|
66
80
|
CloudFunction = Shapes::StringShape.new(name: 'CloudFunction')
|
67
81
|
CloudFunctionConfiguration = Shapes::StructureShape.new(name: 'CloudFunctionConfiguration')
|
68
82
|
CloudFunctionInvocationRole = Shapes::StringShape.new(name: 'CloudFunctionInvocationRole')
|
@@ -105,7 +119,10 @@ module Aws::S3
|
|
105
119
|
CreateBucketRequest = Shapes::StructureShape.new(name: 'CreateBucketRequest')
|
106
120
|
CreateMultipartUploadOutput = Shapes::StructureShape.new(name: 'CreateMultipartUploadOutput')
|
107
121
|
CreateMultipartUploadRequest = Shapes::StructureShape.new(name: 'CreateMultipartUploadRequest')
|
122
|
+
CreateSessionOutput = Shapes::StructureShape.new(name: 'CreateSessionOutput')
|
123
|
+
CreateSessionRequest = Shapes::StructureShape.new(name: 'CreateSessionRequest')
|
108
124
|
CreationDate = Shapes::TimestampShape.new(name: 'CreationDate')
|
125
|
+
DataRedundancy = Shapes::StringShape.new(name: 'DataRedundancy')
|
109
126
|
Date = Shapes::TimestampShape.new(name: 'Date', timestampFormat: "iso8601")
|
110
127
|
Days = Shapes::IntegerShape.new(name: 'Days')
|
111
128
|
DaysAfterInitiation = Shapes::IntegerShape.new(name: 'DaysAfterInitiation')
|
@@ -142,6 +159,7 @@ module Aws::S3
|
|
142
159
|
Delimiter = Shapes::StringShape.new(name: 'Delimiter')
|
143
160
|
Description = Shapes::StringShape.new(name: 'Description')
|
144
161
|
Destination = Shapes::StructureShape.new(name: 'Destination')
|
162
|
+
DirectoryBucketToken = Shapes::StringShape.new(name: 'DirectoryBucketToken')
|
145
163
|
DisplayName = Shapes::StringShape.new(name: 'DisplayName')
|
146
164
|
ETag = Shapes::StringShape.new(name: 'ETag')
|
147
165
|
EmailAddress = Shapes::StringShape.new(name: 'EmailAddress')
|
@@ -152,9 +170,12 @@ module Aws::S3
|
|
152
170
|
End = Shapes::IntegerShape.new(name: 'End')
|
153
171
|
EndEvent = Shapes::StructureShape.new(name: 'EndEvent')
|
154
172
|
Error = Shapes::StructureShape.new(name: 'Error')
|
173
|
+
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
155
174
|
ErrorDocument = Shapes::StructureShape.new(name: 'ErrorDocument')
|
175
|
+
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
156
176
|
Errors = Shapes::ListShape.new(name: 'Errors', flattened: true)
|
157
177
|
Event = Shapes::StringShape.new(name: 'Event')
|
178
|
+
EventBridgeConfiguration = Shapes::StructureShape.new(name: 'EventBridgeConfiguration')
|
158
179
|
EventList = Shapes::ListShape.new(name: 'EventList', flattened: true)
|
159
180
|
ExistingObjectReplication = Shapes::StructureShape.new(name: 'ExistingObjectReplication')
|
160
181
|
ExistingObjectReplicationStatus = Shapes::StringShape.new(name: 'ExistingObjectReplicationStatus')
|
@@ -217,12 +238,16 @@ module Aws::S3
|
|
217
238
|
GetBucketWebsiteRequest = Shapes::StructureShape.new(name: 'GetBucketWebsiteRequest')
|
218
239
|
GetObjectAclOutput = Shapes::StructureShape.new(name: 'GetObjectAclOutput')
|
219
240
|
GetObjectAclRequest = Shapes::StructureShape.new(name: 'GetObjectAclRequest')
|
241
|
+
GetObjectAttributesOutput = Shapes::StructureShape.new(name: 'GetObjectAttributesOutput')
|
242
|
+
GetObjectAttributesParts = Shapes::StructureShape.new(name: 'GetObjectAttributesParts')
|
243
|
+
GetObjectAttributesRequest = Shapes::StructureShape.new(name: 'GetObjectAttributesRequest')
|
220
244
|
GetObjectLegalHoldOutput = Shapes::StructureShape.new(name: 'GetObjectLegalHoldOutput')
|
221
245
|
GetObjectLegalHoldRequest = Shapes::StructureShape.new(name: 'GetObjectLegalHoldRequest')
|
222
246
|
GetObjectLockConfigurationOutput = Shapes::StructureShape.new(name: 'GetObjectLockConfigurationOutput')
|
223
247
|
GetObjectLockConfigurationRequest = Shapes::StructureShape.new(name: 'GetObjectLockConfigurationRequest')
|
224
248
|
GetObjectOutput = Shapes::StructureShape.new(name: 'GetObjectOutput')
|
225
249
|
GetObjectRequest = Shapes::StructureShape.new(name: 'GetObjectRequest')
|
250
|
+
GetObjectResponseStatusCode = Shapes::IntegerShape.new(name: 'GetObjectResponseStatusCode')
|
226
251
|
GetObjectRetentionOutput = Shapes::StructureShape.new(name: 'GetObjectRetentionOutput')
|
227
252
|
GetObjectRetentionRequest = Shapes::StructureShape.new(name: 'GetObjectRetentionRequest')
|
228
253
|
GetObjectTaggingOutput = Shapes::StructureShape.new(name: 'GetObjectTaggingOutput')
|
@@ -240,6 +265,7 @@ module Aws::S3
|
|
240
265
|
GrantWriteACP = Shapes::StringShape.new(name: 'GrantWriteACP')
|
241
266
|
Grantee = Shapes::StructureShape.new(name: 'Grantee', xmlNamespace: {"prefix"=>"xsi", "uri"=>"http://www.w3.org/2001/XMLSchema-instance"})
|
242
267
|
Grants = Shapes::ListShape.new(name: 'Grants')
|
268
|
+
HeadBucketOutput = Shapes::StructureShape.new(name: 'HeadBucketOutput')
|
243
269
|
HeadBucketRequest = Shapes::StructureShape.new(name: 'HeadBucketRequest')
|
244
270
|
HeadObjectOutput = Shapes::StructureShape.new(name: 'HeadObjectOutput')
|
245
271
|
HeadObjectRequest = Shapes::StructureShape.new(name: 'HeadObjectRequest')
|
@@ -280,6 +306,7 @@ module Aws::S3
|
|
280
306
|
IsEnabled = Shapes::BooleanShape.new(name: 'IsEnabled')
|
281
307
|
IsLatest = Shapes::BooleanShape.new(name: 'IsLatest')
|
282
308
|
IsPublic = Shapes::BooleanShape.new(name: 'IsPublic')
|
309
|
+
IsRestoreInProgress = Shapes::BooleanShape.new(name: 'IsRestoreInProgress')
|
283
310
|
IsTruncated = Shapes::BooleanShape.new(name: 'IsTruncated')
|
284
311
|
JSONInput = Shapes::StructureShape.new(name: 'JSONInput')
|
285
312
|
JSONOutput = Shapes::StructureShape.new(name: 'JSONOutput')
|
@@ -307,6 +334,8 @@ module Aws::S3
|
|
307
334
|
ListBucketMetricsConfigurationsOutput = Shapes::StructureShape.new(name: 'ListBucketMetricsConfigurationsOutput')
|
308
335
|
ListBucketMetricsConfigurationsRequest = Shapes::StructureShape.new(name: 'ListBucketMetricsConfigurationsRequest')
|
309
336
|
ListBucketsOutput = Shapes::StructureShape.new(name: 'ListBucketsOutput')
|
337
|
+
ListDirectoryBucketsOutput = Shapes::StructureShape.new(name: 'ListDirectoryBucketsOutput')
|
338
|
+
ListDirectoryBucketsRequest = Shapes::StructureShape.new(name: 'ListDirectoryBucketsRequest')
|
310
339
|
ListMultipartUploadsOutput = Shapes::StructureShape.new(name: 'ListMultipartUploadsOutput')
|
311
340
|
ListMultipartUploadsRequest = Shapes::StructureShape.new(name: 'ListMultipartUploadsRequest')
|
312
341
|
ListObjectVersionsOutput = Shapes::StructureShape.new(name: 'ListObjectVersionsOutput')
|
@@ -318,13 +347,17 @@ module Aws::S3
|
|
318
347
|
ListPartsOutput = Shapes::StructureShape.new(name: 'ListPartsOutput')
|
319
348
|
ListPartsRequest = Shapes::StructureShape.new(name: 'ListPartsRequest')
|
320
349
|
Location = Shapes::StringShape.new(name: 'Location')
|
350
|
+
LocationInfo = Shapes::StructureShape.new(name: 'LocationInfo')
|
351
|
+
LocationNameAsString = Shapes::StringShape.new(name: 'LocationNameAsString')
|
321
352
|
LocationPrefix = Shapes::StringShape.new(name: 'LocationPrefix')
|
353
|
+
LocationType = Shapes::StringShape.new(name: 'LocationType')
|
322
354
|
LoggingEnabled = Shapes::StructureShape.new(name: 'LoggingEnabled')
|
323
355
|
MFA = Shapes::StringShape.new(name: 'MFA')
|
324
356
|
MFADelete = Shapes::StringShape.new(name: 'MFADelete')
|
325
357
|
MFADeleteStatus = Shapes::StringShape.new(name: 'MFADeleteStatus')
|
326
358
|
Marker = Shapes::StringShape.new(name: 'Marker')
|
327
359
|
MaxAgeSeconds = Shapes::IntegerShape.new(name: 'MaxAgeSeconds')
|
360
|
+
MaxDirectoryBuckets = Shapes::IntegerShape.new(name: 'MaxDirectoryBuckets')
|
328
361
|
MaxKeys = Shapes::IntegerShape.new(name: 'MaxKeys')
|
329
362
|
MaxParts = Shapes::IntegerShape.new(name: 'MaxParts')
|
330
363
|
MaxUploads = Shapes::IntegerShape.new(name: 'MaxUploads')
|
@@ -364,6 +397,8 @@ module Aws::S3
|
|
364
397
|
NotificationId = Shapes::StringShape.new(name: 'NotificationId')
|
365
398
|
Object = Shapes::StructureShape.new(name: 'Object')
|
366
399
|
ObjectAlreadyInActiveTierError = Shapes::StructureShape.new(name: 'ObjectAlreadyInActiveTierError')
|
400
|
+
ObjectAttributes = Shapes::StringShape.new(name: 'ObjectAttributes')
|
401
|
+
ObjectAttributesList = Shapes::ListShape.new(name: 'ObjectAttributesList')
|
367
402
|
ObjectCannedACL = Shapes::StringShape.new(name: 'ObjectCannedACL')
|
368
403
|
ObjectIdentifier = Shapes::StructureShape.new(name: 'ObjectIdentifier')
|
369
404
|
ObjectIdentifierList = Shapes::ListShape.new(name: 'ObjectIdentifierList', flattened: true)
|
@@ -382,11 +417,17 @@ module Aws::S3
|
|
382
417
|
ObjectLockToken = Shapes::StringShape.new(name: 'ObjectLockToken')
|
383
418
|
ObjectNotInActiveTierError = Shapes::StructureShape.new(name: 'ObjectNotInActiveTierError')
|
384
419
|
ObjectOwnership = Shapes::StringShape.new(name: 'ObjectOwnership')
|
420
|
+
ObjectPart = Shapes::StructureShape.new(name: 'ObjectPart')
|
421
|
+
ObjectSize = Shapes::IntegerShape.new(name: 'ObjectSize')
|
422
|
+
ObjectSizeGreaterThanBytes = Shapes::IntegerShape.new(name: 'ObjectSizeGreaterThanBytes')
|
423
|
+
ObjectSizeLessThanBytes = Shapes::IntegerShape.new(name: 'ObjectSizeLessThanBytes')
|
385
424
|
ObjectStorageClass = Shapes::StringShape.new(name: 'ObjectStorageClass')
|
386
425
|
ObjectVersion = Shapes::StructureShape.new(name: 'ObjectVersion')
|
387
426
|
ObjectVersionId = Shapes::StringShape.new(name: 'ObjectVersionId')
|
388
427
|
ObjectVersionList = Shapes::ListShape.new(name: 'ObjectVersionList', flattened: true)
|
389
428
|
ObjectVersionStorageClass = Shapes::StringShape.new(name: 'ObjectVersionStorageClass')
|
429
|
+
OptionalObjectAttributes = Shapes::StringShape.new(name: 'OptionalObjectAttributes')
|
430
|
+
OptionalObjectAttributesList = Shapes::ListShape.new(name: 'OptionalObjectAttributesList')
|
390
431
|
OutputLocation = Shapes::StructureShape.new(name: 'OutputLocation')
|
391
432
|
OutputSerialization = Shapes::StructureShape.new(name: 'OutputSerialization')
|
392
433
|
Owner = Shapes::StructureShape.new(name: 'Owner')
|
@@ -398,8 +439,11 @@ module Aws::S3
|
|
398
439
|
Part = Shapes::StructureShape.new(name: 'Part')
|
399
440
|
PartNumber = Shapes::IntegerShape.new(name: 'PartNumber')
|
400
441
|
PartNumberMarker = Shapes::IntegerShape.new(name: 'PartNumberMarker')
|
442
|
+
PartitionDateSource = Shapes::StringShape.new(name: 'PartitionDateSource')
|
443
|
+
PartitionedPrefix = Shapes::StructureShape.new(name: 'PartitionedPrefix')
|
401
444
|
Parts = Shapes::ListShape.new(name: 'Parts', flattened: true)
|
402
445
|
PartsCount = Shapes::IntegerShape.new(name: 'PartsCount')
|
446
|
+
PartsList = Shapes::ListShape.new(name: 'PartsList', flattened: true)
|
403
447
|
Payer = Shapes::StringShape.new(name: 'Payer')
|
404
448
|
Permission = Shapes::StringShape.new(name: 'Permission')
|
405
449
|
Policy = Shapes::StringShape.new(name: 'Policy')
|
@@ -456,6 +500,7 @@ module Aws::S3
|
|
456
500
|
RecordsEvent = Shapes::StructureShape.new(name: 'RecordsEvent')
|
457
501
|
Redirect = Shapes::StructureShape.new(name: 'Redirect')
|
458
502
|
RedirectAllRequestsTo = Shapes::StructureShape.new(name: 'RedirectAllRequestsTo')
|
503
|
+
Region = Shapes::StringShape.new(name: 'Region')
|
459
504
|
ReplaceKeyPrefixWith = Shapes::StringShape.new(name: 'ReplaceKeyPrefixWith')
|
460
505
|
ReplaceKeyWith = Shapes::StringShape.new(name: 'ReplaceKeyWith')
|
461
506
|
ReplicaKmsKeyID = Shapes::StringShape.new(name: 'ReplicaKmsKeyID')
|
@@ -475,6 +520,8 @@ module Aws::S3
|
|
475
520
|
RequestPayer = Shapes::StringShape.new(name: 'RequestPayer')
|
476
521
|
RequestPaymentConfiguration = Shapes::StructureShape.new(name: 'RequestPaymentConfiguration')
|
477
522
|
RequestProgress = Shapes::StructureShape.new(name: 'RequestProgress')
|
523
|
+
RequestRoute = Shapes::StringShape.new(name: 'RequestRoute')
|
524
|
+
RequestToken = Shapes::StringShape.new(name: 'RequestToken')
|
478
525
|
ResponseCacheControl = Shapes::StringShape.new(name: 'ResponseCacheControl')
|
479
526
|
ResponseContentDisposition = Shapes::StringShape.new(name: 'ResponseContentDisposition')
|
480
527
|
ResponseContentEncoding = Shapes::StringShape.new(name: 'ResponseContentEncoding')
|
@@ -482,11 +529,13 @@ module Aws::S3
|
|
482
529
|
ResponseContentType = Shapes::StringShape.new(name: 'ResponseContentType')
|
483
530
|
ResponseExpires = Shapes::TimestampShape.new(name: 'ResponseExpires', timestampFormat: "rfc822")
|
484
531
|
Restore = Shapes::StringShape.new(name: 'Restore')
|
532
|
+
RestoreExpiryDate = Shapes::TimestampShape.new(name: 'RestoreExpiryDate')
|
485
533
|
RestoreObjectOutput = Shapes::StructureShape.new(name: 'RestoreObjectOutput')
|
486
534
|
RestoreObjectRequest = Shapes::StructureShape.new(name: 'RestoreObjectRequest')
|
487
535
|
RestoreOutputPath = Shapes::StringShape.new(name: 'RestoreOutputPath')
|
488
536
|
RestoreRequest = Shapes::StructureShape.new(name: 'RestoreRequest')
|
489
537
|
RestoreRequestType = Shapes::StringShape.new(name: 'RestoreRequestType')
|
538
|
+
RestoreStatus = Shapes::StructureShape.new(name: 'RestoreStatus')
|
490
539
|
Role = Shapes::StringShape.new(name: 'Role')
|
491
540
|
RoutingRule = Shapes::StructureShape.new(name: 'RoutingRule')
|
492
541
|
RoutingRules = Shapes::ListShape.new(name: 'RoutingRules')
|
@@ -511,8 +560,14 @@ module Aws::S3
|
|
511
560
|
ServerSideEncryptionConfiguration = Shapes::StructureShape.new(name: 'ServerSideEncryptionConfiguration')
|
512
561
|
ServerSideEncryptionRule = Shapes::StructureShape.new(name: 'ServerSideEncryptionRule')
|
513
562
|
ServerSideEncryptionRules = Shapes::ListShape.new(name: 'ServerSideEncryptionRules', flattened: true)
|
563
|
+
SessionCredentialValue = Shapes::StringShape.new(name: 'SessionCredentialValue')
|
564
|
+
SessionCredentials = Shapes::StructureShape.new(name: 'SessionCredentials')
|
565
|
+
SessionExpiration = Shapes::TimestampShape.new(name: 'SessionExpiration')
|
566
|
+
SessionMode = Shapes::StringShape.new(name: 'SessionMode')
|
514
567
|
Setting = Shapes::BooleanShape.new(name: 'Setting')
|
568
|
+
SimplePrefix = Shapes::StructureShape.new(name: 'SimplePrefix')
|
515
569
|
Size = Shapes::IntegerShape.new(name: 'Size')
|
570
|
+
SkipValidation = Shapes::BooleanShape.new(name: 'SkipValidation')
|
516
571
|
SourceSelectionCriteria = Shapes::StructureShape.new(name: 'SourceSelectionCriteria')
|
517
572
|
SseKmsEncryptedObjects = Shapes::StructureShape.new(name: 'SseKmsEncryptedObjects')
|
518
573
|
SseKmsEncryptedObjectsStatus = Shapes::StringShape.new(name: 'SseKmsEncryptedObjectsStatus')
|
@@ -534,6 +589,7 @@ module Aws::S3
|
|
534
589
|
TargetBucket = Shapes::StringShape.new(name: 'TargetBucket')
|
535
590
|
TargetGrant = Shapes::StructureShape.new(name: 'TargetGrant')
|
536
591
|
TargetGrants = Shapes::ListShape.new(name: 'TargetGrants')
|
592
|
+
TargetObjectKeyFormat = Shapes::StructureShape.new(name: 'TargetObjectKeyFormat')
|
537
593
|
TargetPrefix = Shapes::StringShape.new(name: 'TargetPrefix')
|
538
594
|
Tier = Shapes::StringShape.new(name: 'Tier')
|
539
595
|
Tiering = Shapes::StructureShape.new(name: 'Tiering')
|
@@ -555,10 +611,12 @@ module Aws::S3
|
|
555
611
|
UploadPartRequest = Shapes::StructureShape.new(name: 'UploadPartRequest')
|
556
612
|
UserMetadata = Shapes::ListShape.new(name: 'UserMetadata')
|
557
613
|
Value = Shapes::StringShape.new(name: 'Value')
|
614
|
+
VersionCount = Shapes::IntegerShape.new(name: 'VersionCount')
|
558
615
|
VersionIdMarker = Shapes::StringShape.new(name: 'VersionIdMarker')
|
559
616
|
VersioningConfiguration = Shapes::StructureShape.new(name: 'VersioningConfiguration')
|
560
617
|
WebsiteConfiguration = Shapes::StructureShape.new(name: 'WebsiteConfiguration')
|
561
618
|
WebsiteRedirectLocation = Shapes::StringShape.new(name: 'WebsiteRedirectLocation')
|
619
|
+
WriteGetObjectResponseRequest = Shapes::StructureShape.new(name: 'WriteGetObjectResponseRequest')
|
562
620
|
Years = Shapes::IntegerShape.new(name: 'Years')
|
563
621
|
|
564
622
|
AbortIncompleteMultipartUpload.add_member(:days_after_initiation, Shapes::ShapeRef.new(shape: DaysAfterInitiation, location_name: "DaysAfterInitiation"))
|
@@ -567,8 +625,8 @@ module Aws::S3
|
|
567
625
|
AbortMultipartUploadOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
568
626
|
AbortMultipartUploadOutput.struct_class = Types::AbortMultipartUploadOutput
|
569
627
|
|
570
|
-
AbortMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
571
|
-
AbortMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
628
|
+
AbortMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
629
|
+
AbortMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam"=>{"name"=>"Key"}}))
|
572
630
|
AbortMultipartUploadRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
573
631
|
AbortMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
574
632
|
AbortMultipartUploadRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
@@ -623,6 +681,10 @@ module Aws::S3
|
|
623
681
|
|
624
682
|
BucketAlreadyOwnedByYou.struct_class = Types::BucketAlreadyOwnedByYou
|
625
683
|
|
684
|
+
BucketInfo.add_member(:data_redundancy, Shapes::ShapeRef.new(shape: DataRedundancy, location_name: "DataRedundancy"))
|
685
|
+
BucketInfo.add_member(:type, Shapes::ShapeRef.new(shape: BucketType, location_name: "Type"))
|
686
|
+
BucketInfo.struct_class = Types::BucketInfo
|
687
|
+
|
626
688
|
BucketLifecycleConfiguration.add_member(:rules, Shapes::ShapeRef.new(shape: LifecycleRules, required: true, location_name: "Rule"))
|
627
689
|
BucketLifecycleConfiguration.struct_class = Types::BucketLifecycleConfiguration
|
628
690
|
|
@@ -634,6 +696,7 @@ module Aws::S3
|
|
634
696
|
CORSConfiguration.add_member(:cors_rules, Shapes::ShapeRef.new(shape: CORSRules, required: true, location_name: "CORSRule"))
|
635
697
|
CORSConfiguration.struct_class = Types::CORSConfiguration
|
636
698
|
|
699
|
+
CORSRule.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
|
637
700
|
CORSRule.add_member(:allowed_headers, Shapes::ShapeRef.new(shape: AllowedHeaders, location_name: "AllowedHeader"))
|
638
701
|
CORSRule.add_member(:allowed_methods, Shapes::ShapeRef.new(shape: AllowedMethods, required: true, location_name: "AllowedMethod"))
|
639
702
|
CORSRule.add_member(:allowed_origins, Shapes::ShapeRef.new(shape: AllowedOrigins, required: true, location_name: "AllowedOrigin"))
|
@@ -659,6 +722,14 @@ module Aws::S3
|
|
659
722
|
CSVOutput.add_member(:quote_character, Shapes::ShapeRef.new(shape: QuoteCharacter, location_name: "QuoteCharacter"))
|
660
723
|
CSVOutput.struct_class = Types::CSVOutput
|
661
724
|
|
725
|
+
Checksum.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location_name: "ChecksumCRC32"))
|
726
|
+
Checksum.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location_name: "ChecksumCRC32C"))
|
727
|
+
Checksum.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location_name: "ChecksumSHA1"))
|
728
|
+
Checksum.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location_name: "ChecksumSHA256"))
|
729
|
+
Checksum.struct_class = Types::Checksum
|
730
|
+
|
731
|
+
ChecksumAlgorithmList.member = Shapes::ShapeRef.new(shape: ChecksumAlgorithm)
|
732
|
+
|
662
733
|
CloudFunctionConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
|
663
734
|
CloudFunctionConfiguration.add_member(:event, Shapes::ShapeRef.new(shape: Event, deprecated: true, location_name: "Event"))
|
664
735
|
CloudFunctionConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, location_name: "Event"))
|
@@ -676,6 +747,10 @@ module Aws::S3
|
|
676
747
|
CompleteMultipartUploadOutput.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
677
748
|
CompleteMultipartUploadOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
|
678
749
|
CompleteMultipartUploadOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
750
|
+
CompleteMultipartUploadOutput.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location_name: "ChecksumCRC32"))
|
751
|
+
CompleteMultipartUploadOutput.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location_name: "ChecksumCRC32C"))
|
752
|
+
CompleteMultipartUploadOutput.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location_name: "ChecksumSHA1"))
|
753
|
+
CompleteMultipartUploadOutput.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location_name: "ChecksumSHA256"))
|
679
754
|
CompleteMultipartUploadOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
680
755
|
CompleteMultipartUploadOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
681
756
|
CompleteMultipartUploadOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
@@ -683,12 +758,19 @@ module Aws::S3
|
|
683
758
|
CompleteMultipartUploadOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
684
759
|
CompleteMultipartUploadOutput.struct_class = Types::CompleteMultipartUploadOutput
|
685
760
|
|
686
|
-
CompleteMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
687
|
-
CompleteMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
761
|
+
CompleteMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
762
|
+
CompleteMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam"=>{"name"=>"Key"}}))
|
688
763
|
CompleteMultipartUploadRequest.add_member(:multipart_upload, Shapes::ShapeRef.new(shape: CompletedMultipartUpload, location_name: "CompleteMultipartUpload", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
689
764
|
CompleteMultipartUploadRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
765
|
+
CompleteMultipartUploadRequest.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location: "header", location_name: "x-amz-checksum-crc32"))
|
766
|
+
CompleteMultipartUploadRequest.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location: "header", location_name: "x-amz-checksum-crc32c"))
|
767
|
+
CompleteMultipartUploadRequest.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location: "header", location_name: "x-amz-checksum-sha1"))
|
768
|
+
CompleteMultipartUploadRequest.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location: "header", location_name: "x-amz-checksum-sha256"))
|
690
769
|
CompleteMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
691
770
|
CompleteMultipartUploadRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
771
|
+
CompleteMultipartUploadRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
772
|
+
CompleteMultipartUploadRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
773
|
+
CompleteMultipartUploadRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
692
774
|
CompleteMultipartUploadRequest.struct_class = Types::CompleteMultipartUploadRequest
|
693
775
|
CompleteMultipartUploadRequest[:payload] = :multipart_upload
|
694
776
|
CompleteMultipartUploadRequest[:payload_member] = CompleteMultipartUploadRequest.member(:multipart_upload)
|
@@ -697,6 +779,10 @@ module Aws::S3
|
|
697
779
|
CompletedMultipartUpload.struct_class = Types::CompletedMultipartUpload
|
698
780
|
|
699
781
|
CompletedPart.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
782
|
+
CompletedPart.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location_name: "ChecksumCRC32"))
|
783
|
+
CompletedPart.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location_name: "ChecksumCRC32C"))
|
784
|
+
CompletedPart.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location_name: "ChecksumSHA1"))
|
785
|
+
CompletedPart.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location_name: "ChecksumSHA256"))
|
700
786
|
CompletedPart.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location_name: "PartNumber"))
|
701
787
|
CompletedPart.struct_class = Types::CompletedPart
|
702
788
|
|
@@ -724,8 +810,9 @@ module Aws::S3
|
|
724
810
|
CopyObjectOutput[:payload_member] = CopyObjectOutput.member(:copy_object_result)
|
725
811
|
|
726
812
|
CopyObjectRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
727
|
-
CopyObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
813
|
+
CopyObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
728
814
|
CopyObjectRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
815
|
+
CopyObjectRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-checksum-algorithm"))
|
729
816
|
CopyObjectRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
|
730
817
|
CopyObjectRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
|
731
818
|
CopyObjectRequest.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
|
@@ -767,20 +854,30 @@ module Aws::S3
|
|
767
854
|
|
768
855
|
CopyObjectResult.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
769
856
|
CopyObjectResult.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
857
|
+
CopyObjectResult.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location_name: "ChecksumCRC32"))
|
858
|
+
CopyObjectResult.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location_name: "ChecksumCRC32C"))
|
859
|
+
CopyObjectResult.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location_name: "ChecksumSHA1"))
|
860
|
+
CopyObjectResult.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location_name: "ChecksumSHA256"))
|
770
861
|
CopyObjectResult.struct_class = Types::CopyObjectResult
|
771
862
|
|
772
863
|
CopyPartResult.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
773
864
|
CopyPartResult.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
865
|
+
CopyPartResult.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location_name: "ChecksumCRC32"))
|
866
|
+
CopyPartResult.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location_name: "ChecksumCRC32C"))
|
867
|
+
CopyPartResult.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location_name: "ChecksumSHA1"))
|
868
|
+
CopyPartResult.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location_name: "ChecksumSHA256"))
|
774
869
|
CopyPartResult.struct_class = Types::CopyPartResult
|
775
870
|
|
776
871
|
CreateBucketConfiguration.add_member(:location_constraint, Shapes::ShapeRef.new(shape: BucketLocationConstraint, location_name: "LocationConstraint"))
|
872
|
+
CreateBucketConfiguration.add_member(:location, Shapes::ShapeRef.new(shape: LocationInfo, location_name: "Location"))
|
873
|
+
CreateBucketConfiguration.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketInfo, location_name: "Bucket"))
|
777
874
|
CreateBucketConfiguration.struct_class = Types::CreateBucketConfiguration
|
778
875
|
|
779
876
|
CreateBucketOutput.add_member(:location, Shapes::ShapeRef.new(shape: Location, location: "header", location_name: "Location"))
|
780
877
|
CreateBucketOutput.struct_class = Types::CreateBucketOutput
|
781
878
|
|
782
879
|
CreateBucketRequest.add_member(:acl, Shapes::ShapeRef.new(shape: BucketCannedACL, location: "header", location_name: "x-amz-acl"))
|
783
|
-
CreateBucketRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
880
|
+
CreateBucketRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
784
881
|
CreateBucketRequest.add_member(:create_bucket_configuration, Shapes::ShapeRef.new(shape: CreateBucketConfiguration, location_name: "CreateBucketConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
785
882
|
CreateBucketRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
786
883
|
CreateBucketRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
@@ -788,6 +885,7 @@ module Aws::S3
|
|
788
885
|
CreateBucketRequest.add_member(:grant_write, Shapes::ShapeRef.new(shape: GrantWrite, location: "header", location_name: "x-amz-grant-write"))
|
789
886
|
CreateBucketRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
790
887
|
CreateBucketRequest.add_member(:object_lock_enabled_for_bucket, Shapes::ShapeRef.new(shape: ObjectLockEnabledForBucket, location: "header", location_name: "x-amz-bucket-object-lock-enabled"))
|
888
|
+
CreateBucketRequest.add_member(:object_ownership, Shapes::ShapeRef.new(shape: ObjectOwnership, location: "header", location_name: "x-amz-object-ownership"))
|
791
889
|
CreateBucketRequest.struct_class = Types::CreateBucketRequest
|
792
890
|
CreateBucketRequest[:payload] = :create_bucket_configuration
|
793
891
|
CreateBucketRequest[:payload_member] = CreateBucketRequest.member(:create_bucket_configuration)
|
@@ -804,10 +902,11 @@ module Aws::S3
|
|
804
902
|
CreateMultipartUploadOutput.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
|
805
903
|
CreateMultipartUploadOutput.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
806
904
|
CreateMultipartUploadOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
905
|
+
CreateMultipartUploadOutput.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-checksum-algorithm"))
|
807
906
|
CreateMultipartUploadOutput.struct_class = Types::CreateMultipartUploadOutput
|
808
907
|
|
809
908
|
CreateMultipartUploadRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
810
|
-
CreateMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
909
|
+
CreateMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
811
910
|
CreateMultipartUploadRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
812
911
|
CreateMultipartUploadRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
|
813
912
|
CreateMultipartUploadRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
|
@@ -818,7 +917,7 @@ module Aws::S3
|
|
818
917
|
CreateMultipartUploadRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
819
918
|
CreateMultipartUploadRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
820
919
|
CreateMultipartUploadRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
821
|
-
CreateMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
920
|
+
CreateMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam"=>{"name"=>"Key"}}))
|
822
921
|
CreateMultipartUploadRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
|
823
922
|
CreateMultipartUploadRequest.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
824
923
|
CreateMultipartUploadRequest.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
|
@@ -835,8 +934,16 @@ module Aws::S3
|
|
835
934
|
CreateMultipartUploadRequest.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: ObjectLockRetainUntilDate, location: "header", location_name: "x-amz-object-lock-retain-until-date"))
|
836
935
|
CreateMultipartUploadRequest.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
|
837
936
|
CreateMultipartUploadRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
937
|
+
CreateMultipartUploadRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-checksum-algorithm"))
|
838
938
|
CreateMultipartUploadRequest.struct_class = Types::CreateMultipartUploadRequest
|
839
939
|
|
940
|
+
CreateSessionOutput.add_member(:credentials, Shapes::ShapeRef.new(shape: SessionCredentials, required: true, location_name: "Credentials"))
|
941
|
+
CreateSessionOutput.struct_class = Types::CreateSessionOutput
|
942
|
+
|
943
|
+
CreateSessionRequest.add_member(:session_mode, Shapes::ShapeRef.new(shape: SessionMode, location: "header", location_name: "x-amz-create-session-mode"))
|
944
|
+
CreateSessionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
945
|
+
CreateSessionRequest.struct_class = Types::CreateSessionRequest
|
946
|
+
|
840
947
|
DefaultRetention.add_member(:mode, Shapes::ShapeRef.new(shape: ObjectLockRetentionMode, location_name: "Mode"))
|
841
948
|
DefaultRetention.add_member(:days, Shapes::ShapeRef.new(shape: Days, location_name: "Days"))
|
842
949
|
DefaultRetention.add_member(:years, Shapes::ShapeRef.new(shape: Years, location_name: "Years"))
|
@@ -846,58 +953,58 @@ module Aws::S3
|
|
846
953
|
Delete.add_member(:quiet, Shapes::ShapeRef.new(shape: Quiet, location_name: "Quiet"))
|
847
954
|
Delete.struct_class = Types::Delete
|
848
955
|
|
849
|
-
DeleteBucketAnalyticsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
956
|
+
DeleteBucketAnalyticsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
850
957
|
DeleteBucketAnalyticsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: AnalyticsId, required: true, location: "querystring", location_name: "id"))
|
851
958
|
DeleteBucketAnalyticsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
852
959
|
DeleteBucketAnalyticsConfigurationRequest.struct_class = Types::DeleteBucketAnalyticsConfigurationRequest
|
853
960
|
|
854
|
-
DeleteBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
961
|
+
DeleteBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
855
962
|
DeleteBucketCorsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
856
963
|
DeleteBucketCorsRequest.struct_class = Types::DeleteBucketCorsRequest
|
857
964
|
|
858
|
-
DeleteBucketEncryptionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
965
|
+
DeleteBucketEncryptionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
859
966
|
DeleteBucketEncryptionRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
860
967
|
DeleteBucketEncryptionRequest.struct_class = Types::DeleteBucketEncryptionRequest
|
861
968
|
|
862
|
-
DeleteBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
969
|
+
DeleteBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
863
970
|
DeleteBucketIntelligentTieringConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: IntelligentTieringId, required: true, location: "querystring", location_name: "id"))
|
864
971
|
DeleteBucketIntelligentTieringConfigurationRequest.struct_class = Types::DeleteBucketIntelligentTieringConfigurationRequest
|
865
972
|
|
866
|
-
DeleteBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
973
|
+
DeleteBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
867
974
|
DeleteBucketInventoryConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: InventoryId, required: true, location: "querystring", location_name: "id"))
|
868
975
|
DeleteBucketInventoryConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
869
976
|
DeleteBucketInventoryConfigurationRequest.struct_class = Types::DeleteBucketInventoryConfigurationRequest
|
870
977
|
|
871
|
-
DeleteBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
978
|
+
DeleteBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
872
979
|
DeleteBucketLifecycleRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
873
980
|
DeleteBucketLifecycleRequest.struct_class = Types::DeleteBucketLifecycleRequest
|
874
981
|
|
875
|
-
DeleteBucketMetricsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
982
|
+
DeleteBucketMetricsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
876
983
|
DeleteBucketMetricsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location: "querystring", location_name: "id"))
|
877
984
|
DeleteBucketMetricsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
878
985
|
DeleteBucketMetricsConfigurationRequest.struct_class = Types::DeleteBucketMetricsConfigurationRequest
|
879
986
|
|
880
|
-
DeleteBucketOwnershipControlsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
987
|
+
DeleteBucketOwnershipControlsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
881
988
|
DeleteBucketOwnershipControlsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
882
989
|
DeleteBucketOwnershipControlsRequest.struct_class = Types::DeleteBucketOwnershipControlsRequest
|
883
990
|
|
884
|
-
DeleteBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
991
|
+
DeleteBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
885
992
|
DeleteBucketPolicyRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
886
993
|
DeleteBucketPolicyRequest.struct_class = Types::DeleteBucketPolicyRequest
|
887
994
|
|
888
|
-
DeleteBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
995
|
+
DeleteBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
889
996
|
DeleteBucketReplicationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
890
997
|
DeleteBucketReplicationRequest.struct_class = Types::DeleteBucketReplicationRequest
|
891
998
|
|
892
|
-
DeleteBucketRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
999
|
+
DeleteBucketRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
893
1000
|
DeleteBucketRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
894
1001
|
DeleteBucketRequest.struct_class = Types::DeleteBucketRequest
|
895
1002
|
|
896
|
-
DeleteBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1003
|
+
DeleteBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
897
1004
|
DeleteBucketTaggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
898
1005
|
DeleteBucketTaggingRequest.struct_class = Types::DeleteBucketTaggingRequest
|
899
1006
|
|
900
|
-
DeleteBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1007
|
+
DeleteBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
901
1008
|
DeleteBucketWebsiteRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
902
1009
|
DeleteBucketWebsiteRequest.struct_class = Types::DeleteBucketWebsiteRequest
|
903
1010
|
|
@@ -918,8 +1025,8 @@ module Aws::S3
|
|
918
1025
|
DeleteObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
919
1026
|
DeleteObjectOutput.struct_class = Types::DeleteObjectOutput
|
920
1027
|
|
921
|
-
DeleteObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
922
|
-
DeleteObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1028
|
+
DeleteObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1029
|
+
DeleteObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam"=>{"name"=>"Key"}}))
|
923
1030
|
DeleteObjectRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
|
924
1031
|
DeleteObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
925
1032
|
DeleteObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
@@ -930,7 +1037,7 @@ module Aws::S3
|
|
930
1037
|
DeleteObjectTaggingOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
931
1038
|
DeleteObjectTaggingOutput.struct_class = Types::DeleteObjectTaggingOutput
|
932
1039
|
|
933
|
-
DeleteObjectTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1040
|
+
DeleteObjectTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
934
1041
|
DeleteObjectTaggingRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
935
1042
|
DeleteObjectTaggingRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
936
1043
|
DeleteObjectTaggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
@@ -941,17 +1048,18 @@ module Aws::S3
|
|
941
1048
|
DeleteObjectsOutput.add_member(:errors, Shapes::ShapeRef.new(shape: Errors, location_name: "Error"))
|
942
1049
|
DeleteObjectsOutput.struct_class = Types::DeleteObjectsOutput
|
943
1050
|
|
944
|
-
DeleteObjectsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1051
|
+
DeleteObjectsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
945
1052
|
DeleteObjectsRequest.add_member(:delete, Shapes::ShapeRef.new(shape: Delete, required: true, location_name: "Delete", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
946
1053
|
DeleteObjectsRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
|
947
1054
|
DeleteObjectsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
948
1055
|
DeleteObjectsRequest.add_member(:bypass_governance_retention, Shapes::ShapeRef.new(shape: BypassGovernanceRetention, location: "header", location_name: "x-amz-bypass-governance-retention"))
|
949
1056
|
DeleteObjectsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1057
|
+
DeleteObjectsRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
950
1058
|
DeleteObjectsRequest.struct_class = Types::DeleteObjectsRequest
|
951
1059
|
DeleteObjectsRequest[:payload] = :delete
|
952
1060
|
DeleteObjectsRequest[:payload_member] = DeleteObjectsRequest.member(:delete)
|
953
1061
|
|
954
|
-
DeletePublicAccessBlockRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1062
|
+
DeletePublicAccessBlockRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
955
1063
|
DeletePublicAccessBlockRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
956
1064
|
DeletePublicAccessBlockRequest.struct_class = Types::DeletePublicAccessBlockRequest
|
957
1065
|
|
@@ -993,6 +1101,8 @@ module Aws::S3
|
|
993
1101
|
|
994
1102
|
Errors.member = Shapes::ShapeRef.new(shape: Error)
|
995
1103
|
|
1104
|
+
EventBridgeConfiguration.struct_class = Types::EventBridgeConfiguration
|
1105
|
+
|
996
1106
|
EventList.member = Shapes::ShapeRef.new(shape: Event)
|
997
1107
|
|
998
1108
|
ExistingObjectReplication.add_member(:status, Shapes::ShapeRef.new(shape: ExistingObjectReplicationStatus, required: true, location_name: "Status"))
|
@@ -1007,17 +1117,19 @@ module Aws::S3
|
|
1007
1117
|
FilterRuleList.member = Shapes::ShapeRef.new(shape: FilterRule)
|
1008
1118
|
|
1009
1119
|
GetBucketAccelerateConfigurationOutput.add_member(:status, Shapes::ShapeRef.new(shape: BucketAccelerateStatus, location_name: "Status"))
|
1120
|
+
GetBucketAccelerateConfigurationOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1010
1121
|
GetBucketAccelerateConfigurationOutput.struct_class = Types::GetBucketAccelerateConfigurationOutput
|
1011
1122
|
|
1012
|
-
GetBucketAccelerateConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1123
|
+
GetBucketAccelerateConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1013
1124
|
GetBucketAccelerateConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1125
|
+
GetBucketAccelerateConfigurationRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1014
1126
|
GetBucketAccelerateConfigurationRequest.struct_class = Types::GetBucketAccelerateConfigurationRequest
|
1015
1127
|
|
1016
1128
|
GetBucketAclOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1017
1129
|
GetBucketAclOutput.add_member(:grants, Shapes::ShapeRef.new(shape: Grants, location_name: "AccessControlList"))
|
1018
1130
|
GetBucketAclOutput.struct_class = Types::GetBucketAclOutput
|
1019
1131
|
|
1020
|
-
GetBucketAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1132
|
+
GetBucketAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1021
1133
|
GetBucketAclRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1022
1134
|
GetBucketAclRequest.struct_class = Types::GetBucketAclRequest
|
1023
1135
|
|
@@ -1026,7 +1138,7 @@ module Aws::S3
|
|
1026
1138
|
GetBucketAnalyticsConfigurationOutput[:payload] = :analytics_configuration
|
1027
1139
|
GetBucketAnalyticsConfigurationOutput[:payload_member] = GetBucketAnalyticsConfigurationOutput.member(:analytics_configuration)
|
1028
1140
|
|
1029
|
-
GetBucketAnalyticsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1141
|
+
GetBucketAnalyticsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1030
1142
|
GetBucketAnalyticsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: AnalyticsId, required: true, location: "querystring", location_name: "id"))
|
1031
1143
|
GetBucketAnalyticsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1032
1144
|
GetBucketAnalyticsConfigurationRequest.struct_class = Types::GetBucketAnalyticsConfigurationRequest
|
@@ -1034,7 +1146,7 @@ module Aws::S3
|
|
1034
1146
|
GetBucketCorsOutput.add_member(:cors_rules, Shapes::ShapeRef.new(shape: CORSRules, location_name: "CORSRule"))
|
1035
1147
|
GetBucketCorsOutput.struct_class = Types::GetBucketCorsOutput
|
1036
1148
|
|
1037
|
-
GetBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1149
|
+
GetBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1038
1150
|
GetBucketCorsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1039
1151
|
GetBucketCorsRequest.struct_class = Types::GetBucketCorsRequest
|
1040
1152
|
|
@@ -1043,7 +1155,7 @@ module Aws::S3
|
|
1043
1155
|
GetBucketEncryptionOutput[:payload] = :server_side_encryption_configuration
|
1044
1156
|
GetBucketEncryptionOutput[:payload_member] = GetBucketEncryptionOutput.member(:server_side_encryption_configuration)
|
1045
1157
|
|
1046
|
-
GetBucketEncryptionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1158
|
+
GetBucketEncryptionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1047
1159
|
GetBucketEncryptionRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1048
1160
|
GetBucketEncryptionRequest.struct_class = Types::GetBucketEncryptionRequest
|
1049
1161
|
|
@@ -1052,7 +1164,7 @@ module Aws::S3
|
|
1052
1164
|
GetBucketIntelligentTieringConfigurationOutput[:payload] = :intelligent_tiering_configuration
|
1053
1165
|
GetBucketIntelligentTieringConfigurationOutput[:payload_member] = GetBucketIntelligentTieringConfigurationOutput.member(:intelligent_tiering_configuration)
|
1054
1166
|
|
1055
|
-
GetBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1167
|
+
GetBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1056
1168
|
GetBucketIntelligentTieringConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: IntelligentTieringId, required: true, location: "querystring", location_name: "id"))
|
1057
1169
|
GetBucketIntelligentTieringConfigurationRequest.struct_class = Types::GetBucketIntelligentTieringConfigurationRequest
|
1058
1170
|
|
@@ -1061,7 +1173,7 @@ module Aws::S3
|
|
1061
1173
|
GetBucketInventoryConfigurationOutput[:payload] = :inventory_configuration
|
1062
1174
|
GetBucketInventoryConfigurationOutput[:payload_member] = GetBucketInventoryConfigurationOutput.member(:inventory_configuration)
|
1063
1175
|
|
1064
|
-
GetBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1176
|
+
GetBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1065
1177
|
GetBucketInventoryConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: InventoryId, required: true, location: "querystring", location_name: "id"))
|
1066
1178
|
GetBucketInventoryConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1067
1179
|
GetBucketInventoryConfigurationRequest.struct_class = Types::GetBucketInventoryConfigurationRequest
|
@@ -1069,28 +1181,28 @@ module Aws::S3
|
|
1069
1181
|
GetBucketLifecycleConfigurationOutput.add_member(:rules, Shapes::ShapeRef.new(shape: LifecycleRules, location_name: "Rule"))
|
1070
1182
|
GetBucketLifecycleConfigurationOutput.struct_class = Types::GetBucketLifecycleConfigurationOutput
|
1071
1183
|
|
1072
|
-
GetBucketLifecycleConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1184
|
+
GetBucketLifecycleConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1073
1185
|
GetBucketLifecycleConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1074
1186
|
GetBucketLifecycleConfigurationRequest.struct_class = Types::GetBucketLifecycleConfigurationRequest
|
1075
1187
|
|
1076
1188
|
GetBucketLifecycleOutput.add_member(:rules, Shapes::ShapeRef.new(shape: Rules, location_name: "Rule"))
|
1077
1189
|
GetBucketLifecycleOutput.struct_class = Types::GetBucketLifecycleOutput
|
1078
1190
|
|
1079
|
-
GetBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1191
|
+
GetBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1080
1192
|
GetBucketLifecycleRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1081
1193
|
GetBucketLifecycleRequest.struct_class = Types::GetBucketLifecycleRequest
|
1082
1194
|
|
1083
1195
|
GetBucketLocationOutput.add_member(:location_constraint, Shapes::ShapeRef.new(shape: BucketLocationConstraint, location_name: "LocationConstraint"))
|
1084
1196
|
GetBucketLocationOutput.struct_class = Types::GetBucketLocationOutput
|
1085
1197
|
|
1086
|
-
GetBucketLocationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1198
|
+
GetBucketLocationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1087
1199
|
GetBucketLocationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1088
1200
|
GetBucketLocationRequest.struct_class = Types::GetBucketLocationRequest
|
1089
1201
|
|
1090
1202
|
GetBucketLoggingOutput.add_member(:logging_enabled, Shapes::ShapeRef.new(shape: LoggingEnabled, location_name: "LoggingEnabled"))
|
1091
1203
|
GetBucketLoggingOutput.struct_class = Types::GetBucketLoggingOutput
|
1092
1204
|
|
1093
|
-
GetBucketLoggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1205
|
+
GetBucketLoggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1094
1206
|
GetBucketLoggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1095
1207
|
GetBucketLoggingRequest.struct_class = Types::GetBucketLoggingRequest
|
1096
1208
|
|
@@ -1099,12 +1211,12 @@ module Aws::S3
|
|
1099
1211
|
GetBucketMetricsConfigurationOutput[:payload] = :metrics_configuration
|
1100
1212
|
GetBucketMetricsConfigurationOutput[:payload_member] = GetBucketMetricsConfigurationOutput.member(:metrics_configuration)
|
1101
1213
|
|
1102
|
-
GetBucketMetricsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1214
|
+
GetBucketMetricsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1103
1215
|
GetBucketMetricsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location: "querystring", location_name: "id"))
|
1104
1216
|
GetBucketMetricsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1105
1217
|
GetBucketMetricsConfigurationRequest.struct_class = Types::GetBucketMetricsConfigurationRequest
|
1106
1218
|
|
1107
|
-
GetBucketNotificationConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1219
|
+
GetBucketNotificationConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1108
1220
|
GetBucketNotificationConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1109
1221
|
GetBucketNotificationConfigurationRequest.struct_class = Types::GetBucketNotificationConfigurationRequest
|
1110
1222
|
|
@@ -1113,7 +1225,7 @@ module Aws::S3
|
|
1113
1225
|
GetBucketOwnershipControlsOutput[:payload] = :ownership_controls
|
1114
1226
|
GetBucketOwnershipControlsOutput[:payload_member] = GetBucketOwnershipControlsOutput.member(:ownership_controls)
|
1115
1227
|
|
1116
|
-
GetBucketOwnershipControlsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1228
|
+
GetBucketOwnershipControlsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1117
1229
|
GetBucketOwnershipControlsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1118
1230
|
GetBucketOwnershipControlsRequest.struct_class = Types::GetBucketOwnershipControlsRequest
|
1119
1231
|
|
@@ -1122,7 +1234,7 @@ module Aws::S3
|
|
1122
1234
|
GetBucketPolicyOutput[:payload] = :policy
|
1123
1235
|
GetBucketPolicyOutput[:payload_member] = GetBucketPolicyOutput.member(:policy)
|
1124
1236
|
|
1125
|
-
GetBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1237
|
+
GetBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1126
1238
|
GetBucketPolicyRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1127
1239
|
GetBucketPolicyRequest.struct_class = Types::GetBucketPolicyRequest
|
1128
1240
|
|
@@ -1131,7 +1243,7 @@ module Aws::S3
|
|
1131
1243
|
GetBucketPolicyStatusOutput[:payload] = :policy_status
|
1132
1244
|
GetBucketPolicyStatusOutput[:payload_member] = GetBucketPolicyStatusOutput.member(:policy_status)
|
1133
1245
|
|
1134
|
-
GetBucketPolicyStatusRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1246
|
+
GetBucketPolicyStatusRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1135
1247
|
GetBucketPolicyStatusRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1136
1248
|
GetBucketPolicyStatusRequest.struct_class = Types::GetBucketPolicyStatusRequest
|
1137
1249
|
|
@@ -1140,21 +1252,21 @@ module Aws::S3
|
|
1140
1252
|
GetBucketReplicationOutput[:payload] = :replication_configuration
|
1141
1253
|
GetBucketReplicationOutput[:payload_member] = GetBucketReplicationOutput.member(:replication_configuration)
|
1142
1254
|
|
1143
|
-
GetBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1255
|
+
GetBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1144
1256
|
GetBucketReplicationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1145
1257
|
GetBucketReplicationRequest.struct_class = Types::GetBucketReplicationRequest
|
1146
1258
|
|
1147
1259
|
GetBucketRequestPaymentOutput.add_member(:payer, Shapes::ShapeRef.new(shape: Payer, location_name: "Payer"))
|
1148
1260
|
GetBucketRequestPaymentOutput.struct_class = Types::GetBucketRequestPaymentOutput
|
1149
1261
|
|
1150
|
-
GetBucketRequestPaymentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1262
|
+
GetBucketRequestPaymentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1151
1263
|
GetBucketRequestPaymentRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1152
1264
|
GetBucketRequestPaymentRequest.struct_class = Types::GetBucketRequestPaymentRequest
|
1153
1265
|
|
1154
1266
|
GetBucketTaggingOutput.add_member(:tag_set, Shapes::ShapeRef.new(shape: TagSet, required: true, location_name: "TagSet"))
|
1155
1267
|
GetBucketTaggingOutput.struct_class = Types::GetBucketTaggingOutput
|
1156
1268
|
|
1157
|
-
GetBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1269
|
+
GetBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1158
1270
|
GetBucketTaggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1159
1271
|
GetBucketTaggingRequest.struct_class = Types::GetBucketTaggingRequest
|
1160
1272
|
|
@@ -1162,7 +1274,7 @@ module Aws::S3
|
|
1162
1274
|
GetBucketVersioningOutput.add_member(:mfa_delete, Shapes::ShapeRef.new(shape: MFADeleteStatus, location_name: "MfaDelete"))
|
1163
1275
|
GetBucketVersioningOutput.struct_class = Types::GetBucketVersioningOutput
|
1164
1276
|
|
1165
|
-
GetBucketVersioningRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1277
|
+
GetBucketVersioningRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1166
1278
|
GetBucketVersioningRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1167
1279
|
GetBucketVersioningRequest.struct_class = Types::GetBucketVersioningRequest
|
1168
1280
|
|
@@ -1172,7 +1284,7 @@ module Aws::S3
|
|
1172
1284
|
GetBucketWebsiteOutput.add_member(:routing_rules, Shapes::ShapeRef.new(shape: RoutingRules, location_name: "RoutingRules"))
|
1173
1285
|
GetBucketWebsiteOutput.struct_class = Types::GetBucketWebsiteOutput
|
1174
1286
|
|
1175
|
-
GetBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1287
|
+
GetBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1176
1288
|
GetBucketWebsiteRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1177
1289
|
GetBucketWebsiteRequest.struct_class = Types::GetBucketWebsiteRequest
|
1178
1290
|
|
@@ -1181,19 +1293,51 @@ module Aws::S3
|
|
1181
1293
|
GetObjectAclOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1182
1294
|
GetObjectAclOutput.struct_class = Types::GetObjectAclOutput
|
1183
1295
|
|
1184
|
-
GetObjectAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1185
|
-
GetObjectAclRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1296
|
+
GetObjectAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1297
|
+
GetObjectAclRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam"=>{"name"=>"Key"}}))
|
1186
1298
|
GetObjectAclRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1187
1299
|
GetObjectAclRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1188
1300
|
GetObjectAclRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1189
1301
|
GetObjectAclRequest.struct_class = Types::GetObjectAclRequest
|
1190
1302
|
|
1303
|
+
GetObjectAttributesOutput.add_member(:delete_marker, Shapes::ShapeRef.new(shape: DeleteMarker, location: "header", location_name: "x-amz-delete-marker"))
|
1304
|
+
GetObjectAttributesOutput.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location: "header", location_name: "Last-Modified"))
|
1305
|
+
GetObjectAttributesOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
1306
|
+
GetObjectAttributesOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1307
|
+
GetObjectAttributesOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
1308
|
+
GetObjectAttributesOutput.add_member(:checksum, Shapes::ShapeRef.new(shape: Checksum, location_name: "Checksum"))
|
1309
|
+
GetObjectAttributesOutput.add_member(:object_parts, Shapes::ShapeRef.new(shape: GetObjectAttributesParts, location_name: "ObjectParts"))
|
1310
|
+
GetObjectAttributesOutput.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
|
1311
|
+
GetObjectAttributesOutput.add_member(:object_size, Shapes::ShapeRef.new(shape: ObjectSize, location_name: "ObjectSize"))
|
1312
|
+
GetObjectAttributesOutput.struct_class = Types::GetObjectAttributesOutput
|
1313
|
+
|
1314
|
+
GetObjectAttributesParts.add_member(:total_parts_count, Shapes::ShapeRef.new(shape: PartsCount, location_name: "PartsCount"))
|
1315
|
+
GetObjectAttributesParts.add_member(:part_number_marker, Shapes::ShapeRef.new(shape: PartNumberMarker, location_name: "PartNumberMarker"))
|
1316
|
+
GetObjectAttributesParts.add_member(:next_part_number_marker, Shapes::ShapeRef.new(shape: NextPartNumberMarker, location_name: "NextPartNumberMarker"))
|
1317
|
+
GetObjectAttributesParts.add_member(:max_parts, Shapes::ShapeRef.new(shape: MaxParts, location_name: "MaxParts"))
|
1318
|
+
GetObjectAttributesParts.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
1319
|
+
GetObjectAttributesParts.add_member(:parts, Shapes::ShapeRef.new(shape: PartsList, location_name: "Part"))
|
1320
|
+
GetObjectAttributesParts.struct_class = Types::GetObjectAttributesParts
|
1321
|
+
|
1322
|
+
GetObjectAttributesRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1323
|
+
GetObjectAttributesRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1324
|
+
GetObjectAttributesRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1325
|
+
GetObjectAttributesRequest.add_member(:max_parts, Shapes::ShapeRef.new(shape: MaxParts, location: "header", location_name: "x-amz-max-parts"))
|
1326
|
+
GetObjectAttributesRequest.add_member(:part_number_marker, Shapes::ShapeRef.new(shape: PartNumberMarker, location: "header", location_name: "x-amz-part-number-marker"))
|
1327
|
+
GetObjectAttributesRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
1328
|
+
GetObjectAttributesRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
1329
|
+
GetObjectAttributesRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1330
|
+
GetObjectAttributesRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1331
|
+
GetObjectAttributesRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1332
|
+
GetObjectAttributesRequest.add_member(:object_attributes, Shapes::ShapeRef.new(shape: ObjectAttributesList, required: true, location: "header", location_name: "x-amz-object-attributes"))
|
1333
|
+
GetObjectAttributesRequest.struct_class = Types::GetObjectAttributesRequest
|
1334
|
+
|
1191
1335
|
GetObjectLegalHoldOutput.add_member(:legal_hold, Shapes::ShapeRef.new(shape: ObjectLockLegalHold, location_name: "LegalHold"))
|
1192
1336
|
GetObjectLegalHoldOutput.struct_class = Types::GetObjectLegalHoldOutput
|
1193
1337
|
GetObjectLegalHoldOutput[:payload] = :legal_hold
|
1194
1338
|
GetObjectLegalHoldOutput[:payload_member] = GetObjectLegalHoldOutput.member(:legal_hold)
|
1195
1339
|
|
1196
|
-
GetObjectLegalHoldRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1340
|
+
GetObjectLegalHoldRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1197
1341
|
GetObjectLegalHoldRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1198
1342
|
GetObjectLegalHoldRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1199
1343
|
GetObjectLegalHoldRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
@@ -1205,7 +1349,7 @@ module Aws::S3
|
|
1205
1349
|
GetObjectLockConfigurationOutput[:payload] = :object_lock_configuration
|
1206
1350
|
GetObjectLockConfigurationOutput[:payload_member] = GetObjectLockConfigurationOutput.member(:object_lock_configuration)
|
1207
1351
|
|
1208
|
-
GetObjectLockConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1352
|
+
GetObjectLockConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1209
1353
|
GetObjectLockConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1210
1354
|
GetObjectLockConfigurationRequest.struct_class = Types::GetObjectLockConfigurationRequest
|
1211
1355
|
|
@@ -1217,6 +1361,10 @@ module Aws::S3
|
|
1217
1361
|
GetObjectOutput.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location: "header", location_name: "Last-Modified"))
|
1218
1362
|
GetObjectOutput.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
1219
1363
|
GetObjectOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
|
1364
|
+
GetObjectOutput.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location: "header", location_name: "x-amz-checksum-crc32"))
|
1365
|
+
GetObjectOutput.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location: "header", location_name: "x-amz-checksum-crc32c"))
|
1366
|
+
GetObjectOutput.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location: "header", location_name: "x-amz-checksum-sha1"))
|
1367
|
+
GetObjectOutput.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location: "header", location_name: "x-amz-checksum-sha256"))
|
1220
1368
|
GetObjectOutput.add_member(:missing_meta, Shapes::ShapeRef.new(shape: MissingMeta, location: "header", location_name: "x-amz-missing-meta"))
|
1221
1369
|
GetObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
1222
1370
|
GetObjectOutput.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
@@ -1246,12 +1394,12 @@ module Aws::S3
|
|
1246
1394
|
GetObjectOutput[:payload] = :body
|
1247
1395
|
GetObjectOutput[:payload_member] = GetObjectOutput.member(:body)
|
1248
1396
|
|
1249
|
-
GetObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1397
|
+
GetObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1250
1398
|
GetObjectRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: IfMatch, location: "header", location_name: "If-Match"))
|
1251
1399
|
GetObjectRequest.add_member(:if_modified_since, Shapes::ShapeRef.new(shape: IfModifiedSince, location: "header", location_name: "If-Modified-Since"))
|
1252
1400
|
GetObjectRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
|
1253
1401
|
GetObjectRequest.add_member(:if_unmodified_since, Shapes::ShapeRef.new(shape: IfUnmodifiedSince, location: "header", location_name: "If-Unmodified-Since"))
|
1254
|
-
GetObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1402
|
+
GetObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam"=>{"name"=>"Key"}}))
|
1255
1403
|
GetObjectRequest.add_member(:range, Shapes::ShapeRef.new(shape: Range, location: "header", location_name: "Range"))
|
1256
1404
|
GetObjectRequest.add_member(:response_cache_control, Shapes::ShapeRef.new(shape: ResponseCacheControl, location: "querystring", location_name: "response-cache-control"))
|
1257
1405
|
GetObjectRequest.add_member(:response_content_disposition, Shapes::ShapeRef.new(shape: ResponseContentDisposition, location: "querystring", location_name: "response-content-disposition"))
|
@@ -1266,6 +1414,7 @@ module Aws::S3
|
|
1266
1414
|
GetObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1267
1415
|
GetObjectRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location: "querystring", location_name: "partNumber"))
|
1268
1416
|
GetObjectRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1417
|
+
GetObjectRequest.add_member(:checksum_mode, Shapes::ShapeRef.new(shape: ChecksumMode, location: "header", location_name: "x-amz-checksum-mode"))
|
1269
1418
|
GetObjectRequest.struct_class = Types::GetObjectRequest
|
1270
1419
|
|
1271
1420
|
GetObjectRetentionOutput.add_member(:retention, Shapes::ShapeRef.new(shape: ObjectLockRetention, location_name: "Retention"))
|
@@ -1273,7 +1422,7 @@ module Aws::S3
|
|
1273
1422
|
GetObjectRetentionOutput[:payload] = :retention
|
1274
1423
|
GetObjectRetentionOutput[:payload_member] = GetObjectRetentionOutput.member(:retention)
|
1275
1424
|
|
1276
|
-
GetObjectRetentionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1425
|
+
GetObjectRetentionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1277
1426
|
GetObjectRetentionRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1278
1427
|
GetObjectRetentionRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1279
1428
|
GetObjectRetentionRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
@@ -1284,10 +1433,11 @@ module Aws::S3
|
|
1284
1433
|
GetObjectTaggingOutput.add_member(:tag_set, Shapes::ShapeRef.new(shape: TagSet, required: true, location_name: "TagSet"))
|
1285
1434
|
GetObjectTaggingOutput.struct_class = Types::GetObjectTaggingOutput
|
1286
1435
|
|
1287
|
-
GetObjectTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1436
|
+
GetObjectTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1288
1437
|
GetObjectTaggingRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1289
1438
|
GetObjectTaggingRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1290
1439
|
GetObjectTaggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1440
|
+
GetObjectTaggingRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1291
1441
|
GetObjectTaggingRequest.struct_class = Types::GetObjectTaggingRequest
|
1292
1442
|
|
1293
1443
|
GetObjectTorrentOutput.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
@@ -1296,7 +1446,7 @@ module Aws::S3
|
|
1296
1446
|
GetObjectTorrentOutput[:payload] = :body
|
1297
1447
|
GetObjectTorrentOutput[:payload_member] = GetObjectTorrentOutput.member(:body)
|
1298
1448
|
|
1299
|
-
GetObjectTorrentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1449
|
+
GetObjectTorrentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1300
1450
|
GetObjectTorrentRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1301
1451
|
GetObjectTorrentRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1302
1452
|
GetObjectTorrentRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
@@ -1307,7 +1457,7 @@ module Aws::S3
|
|
1307
1457
|
GetPublicAccessBlockOutput[:payload] = :public_access_block_configuration
|
1308
1458
|
GetPublicAccessBlockOutput[:payload_member] = GetPublicAccessBlockOutput.member(:public_access_block_configuration)
|
1309
1459
|
|
1310
|
-
GetPublicAccessBlockRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1460
|
+
GetPublicAccessBlockRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1311
1461
|
GetPublicAccessBlockRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1312
1462
|
GetPublicAccessBlockRequest.struct_class = Types::GetPublicAccessBlockRequest
|
1313
1463
|
|
@@ -1327,7 +1477,13 @@ module Aws::S3
|
|
1327
1477
|
|
1328
1478
|
Grants.member = Shapes::ShapeRef.new(shape: Grant, location_name: "Grant")
|
1329
1479
|
|
1330
|
-
|
1480
|
+
HeadBucketOutput.add_member(:bucket_location_type, Shapes::ShapeRef.new(shape: LocationType, location: "header", location_name: "x-amz-bucket-location-type"))
|
1481
|
+
HeadBucketOutput.add_member(:bucket_location_name, Shapes::ShapeRef.new(shape: BucketLocationName, location: "header", location_name: "x-amz-bucket-location-name"))
|
1482
|
+
HeadBucketOutput.add_member(:bucket_region, Shapes::ShapeRef.new(shape: Region, location: "header", location_name: "x-amz-bucket-region"))
|
1483
|
+
HeadBucketOutput.add_member(:access_point_alias, Shapes::ShapeRef.new(shape: AccessPointAlias, location: "header", location_name: "x-amz-access-point-alias"))
|
1484
|
+
HeadBucketOutput.struct_class = Types::HeadBucketOutput
|
1485
|
+
|
1486
|
+
HeadBucketRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1331
1487
|
HeadBucketRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1332
1488
|
HeadBucketRequest.struct_class = Types::HeadBucketRequest
|
1333
1489
|
|
@@ -1338,6 +1494,10 @@ module Aws::S3
|
|
1338
1494
|
HeadObjectOutput.add_member(:archive_status, Shapes::ShapeRef.new(shape: ArchiveStatus, location: "header", location_name: "x-amz-archive-status"))
|
1339
1495
|
HeadObjectOutput.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location: "header", location_name: "Last-Modified"))
|
1340
1496
|
HeadObjectOutput.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
1497
|
+
HeadObjectOutput.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location: "header", location_name: "x-amz-checksum-crc32"))
|
1498
|
+
HeadObjectOutput.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location: "header", location_name: "x-amz-checksum-crc32c"))
|
1499
|
+
HeadObjectOutput.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location: "header", location_name: "x-amz-checksum-sha1"))
|
1500
|
+
HeadObjectOutput.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location: "header", location_name: "x-amz-checksum-sha256"))
|
1341
1501
|
HeadObjectOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
|
1342
1502
|
HeadObjectOutput.add_member(:missing_meta, Shapes::ShapeRef.new(shape: MissingMeta, location: "header", location_name: "x-amz-missing-meta"))
|
1343
1503
|
HeadObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
@@ -1364,12 +1524,12 @@ module Aws::S3
|
|
1364
1524
|
HeadObjectOutput.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
|
1365
1525
|
HeadObjectOutput.struct_class = Types::HeadObjectOutput
|
1366
1526
|
|
1367
|
-
HeadObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1527
|
+
HeadObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1368
1528
|
HeadObjectRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: IfMatch, location: "header", location_name: "If-Match"))
|
1369
1529
|
HeadObjectRequest.add_member(:if_modified_since, Shapes::ShapeRef.new(shape: IfModifiedSince, location: "header", location_name: "If-Modified-Since"))
|
1370
1530
|
HeadObjectRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
|
1371
1531
|
HeadObjectRequest.add_member(:if_unmodified_since, Shapes::ShapeRef.new(shape: IfUnmodifiedSince, location: "header", location_name: "If-Unmodified-Since"))
|
1372
|
-
HeadObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1532
|
+
HeadObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam"=>{"name"=>"Key"}}))
|
1373
1533
|
HeadObjectRequest.add_member(:range, Shapes::ShapeRef.new(shape: Range, location: "header", location_name: "Range"))
|
1374
1534
|
HeadObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1375
1535
|
HeadObjectRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
@@ -1378,6 +1538,7 @@ module Aws::S3
|
|
1378
1538
|
HeadObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1379
1539
|
HeadObjectRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location: "querystring", location_name: "partNumber"))
|
1380
1540
|
HeadObjectRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1541
|
+
HeadObjectRequest.add_member(:checksum_mode, Shapes::ShapeRef.new(shape: ChecksumMode, location: "header", location_name: "x-amz-checksum-mode"))
|
1381
1542
|
HeadObjectRequest.struct_class = Types::HeadObjectRequest
|
1382
1543
|
|
1383
1544
|
IndexDocument.add_member(:suffix, Shapes::ShapeRef.new(shape: Suffix, required: true, location_name: "Suffix"))
|
@@ -1482,10 +1643,14 @@ module Aws::S3
|
|
1482
1643
|
|
1483
1644
|
LifecycleRuleAndOperator.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
1484
1645
|
LifecycleRuleAndOperator.add_member(:tags, Shapes::ShapeRef.new(shape: TagSet, location_name: "Tag", metadata: {"flattened"=>true}))
|
1646
|
+
LifecycleRuleAndOperator.add_member(:object_size_greater_than, Shapes::ShapeRef.new(shape: ObjectSizeGreaterThanBytes, location_name: "ObjectSizeGreaterThan"))
|
1647
|
+
LifecycleRuleAndOperator.add_member(:object_size_less_than, Shapes::ShapeRef.new(shape: ObjectSizeLessThanBytes, location_name: "ObjectSizeLessThan"))
|
1485
1648
|
LifecycleRuleAndOperator.struct_class = Types::LifecycleRuleAndOperator
|
1486
1649
|
|
1487
1650
|
LifecycleRuleFilter.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
1488
1651
|
LifecycleRuleFilter.add_member(:tag, Shapes::ShapeRef.new(shape: Tag, location_name: "Tag"))
|
1652
|
+
LifecycleRuleFilter.add_member(:object_size_greater_than, Shapes::ShapeRef.new(shape: ObjectSizeGreaterThanBytes, location_name: "ObjectSizeGreaterThan"))
|
1653
|
+
LifecycleRuleFilter.add_member(:object_size_less_than, Shapes::ShapeRef.new(shape: ObjectSizeLessThanBytes, location_name: "ObjectSizeLessThan"))
|
1489
1654
|
LifecycleRuleFilter.add_member(:and, Shapes::ShapeRef.new(shape: LifecycleRuleAndOperator, location_name: "And"))
|
1490
1655
|
LifecycleRuleFilter.struct_class = Types::LifecycleRuleFilter
|
1491
1656
|
|
@@ -1497,7 +1662,7 @@ module Aws::S3
|
|
1497
1662
|
ListBucketAnalyticsConfigurationsOutput.add_member(:analytics_configuration_list, Shapes::ShapeRef.new(shape: AnalyticsConfigurationList, location_name: "AnalyticsConfiguration"))
|
1498
1663
|
ListBucketAnalyticsConfigurationsOutput.struct_class = Types::ListBucketAnalyticsConfigurationsOutput
|
1499
1664
|
|
1500
|
-
ListBucketAnalyticsConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1665
|
+
ListBucketAnalyticsConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1501
1666
|
ListBucketAnalyticsConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
|
1502
1667
|
ListBucketAnalyticsConfigurationsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1503
1668
|
ListBucketAnalyticsConfigurationsRequest.struct_class = Types::ListBucketAnalyticsConfigurationsRequest
|
@@ -1508,7 +1673,7 @@ module Aws::S3
|
|
1508
1673
|
ListBucketIntelligentTieringConfigurationsOutput.add_member(:intelligent_tiering_configuration_list, Shapes::ShapeRef.new(shape: IntelligentTieringConfigurationList, location_name: "IntelligentTieringConfiguration"))
|
1509
1674
|
ListBucketIntelligentTieringConfigurationsOutput.struct_class = Types::ListBucketIntelligentTieringConfigurationsOutput
|
1510
1675
|
|
1511
|
-
ListBucketIntelligentTieringConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1676
|
+
ListBucketIntelligentTieringConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1512
1677
|
ListBucketIntelligentTieringConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
|
1513
1678
|
ListBucketIntelligentTieringConfigurationsRequest.struct_class = Types::ListBucketIntelligentTieringConfigurationsRequest
|
1514
1679
|
|
@@ -1518,7 +1683,7 @@ module Aws::S3
|
|
1518
1683
|
ListBucketInventoryConfigurationsOutput.add_member(:next_continuation_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextContinuationToken"))
|
1519
1684
|
ListBucketInventoryConfigurationsOutput.struct_class = Types::ListBucketInventoryConfigurationsOutput
|
1520
1685
|
|
1521
|
-
ListBucketInventoryConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1686
|
+
ListBucketInventoryConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1522
1687
|
ListBucketInventoryConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
|
1523
1688
|
ListBucketInventoryConfigurationsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1524
1689
|
ListBucketInventoryConfigurationsRequest.struct_class = Types::ListBucketInventoryConfigurationsRequest
|
@@ -1529,7 +1694,7 @@ module Aws::S3
|
|
1529
1694
|
ListBucketMetricsConfigurationsOutput.add_member(:metrics_configuration_list, Shapes::ShapeRef.new(shape: MetricsConfigurationList, location_name: "MetricsConfiguration"))
|
1530
1695
|
ListBucketMetricsConfigurationsOutput.struct_class = Types::ListBucketMetricsConfigurationsOutput
|
1531
1696
|
|
1532
|
-
ListBucketMetricsConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1697
|
+
ListBucketMetricsConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1533
1698
|
ListBucketMetricsConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
|
1534
1699
|
ListBucketMetricsConfigurationsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1535
1700
|
ListBucketMetricsConfigurationsRequest.struct_class = Types::ListBucketMetricsConfigurationsRequest
|
@@ -1538,6 +1703,14 @@ module Aws::S3
|
|
1538
1703
|
ListBucketsOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1539
1704
|
ListBucketsOutput.struct_class = Types::ListBucketsOutput
|
1540
1705
|
|
1706
|
+
ListDirectoryBucketsOutput.add_member(:buckets, Shapes::ShapeRef.new(shape: Buckets, location_name: "Buckets"))
|
1707
|
+
ListDirectoryBucketsOutput.add_member(:continuation_token, Shapes::ShapeRef.new(shape: DirectoryBucketToken, location_name: "ContinuationToken"))
|
1708
|
+
ListDirectoryBucketsOutput.struct_class = Types::ListDirectoryBucketsOutput
|
1709
|
+
|
1710
|
+
ListDirectoryBucketsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: DirectoryBucketToken, location: "querystring", location_name: "continuation-token"))
|
1711
|
+
ListDirectoryBucketsRequest.add_member(:max_directory_buckets, Shapes::ShapeRef.new(shape: MaxDirectoryBuckets, location: "querystring", location_name: "max-directory-buckets"))
|
1712
|
+
ListDirectoryBucketsRequest.struct_class = Types::ListDirectoryBucketsRequest
|
1713
|
+
|
1541
1714
|
ListMultipartUploadsOutput.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
|
1542
1715
|
ListMultipartUploadsOutput.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location_name: "KeyMarker"))
|
1543
1716
|
ListMultipartUploadsOutput.add_member(:upload_id_marker, Shapes::ShapeRef.new(shape: UploadIdMarker, location_name: "UploadIdMarker"))
|
@@ -1550,16 +1723,18 @@ module Aws::S3
|
|
1550
1723
|
ListMultipartUploadsOutput.add_member(:uploads, Shapes::ShapeRef.new(shape: MultipartUploadList, location_name: "Upload"))
|
1551
1724
|
ListMultipartUploadsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
|
1552
1725
|
ListMultipartUploadsOutput.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location_name: "EncodingType"))
|
1726
|
+
ListMultipartUploadsOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1553
1727
|
ListMultipartUploadsOutput.struct_class = Types::ListMultipartUploadsOutput
|
1554
1728
|
|
1555
|
-
ListMultipartUploadsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1729
|
+
ListMultipartUploadsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1556
1730
|
ListMultipartUploadsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
1557
1731
|
ListMultipartUploadsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
1558
1732
|
ListMultipartUploadsRequest.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location: "querystring", location_name: "key-marker"))
|
1559
1733
|
ListMultipartUploadsRequest.add_member(:max_uploads, Shapes::ShapeRef.new(shape: MaxUploads, location: "querystring", location_name: "max-uploads"))
|
1560
|
-
ListMultipartUploadsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
|
1734
|
+
ListMultipartUploadsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix", metadata: {"contextParam"=>{"name"=>"Prefix"}}))
|
1561
1735
|
ListMultipartUploadsRequest.add_member(:upload_id_marker, Shapes::ShapeRef.new(shape: UploadIdMarker, location: "querystring", location_name: "upload-id-marker"))
|
1562
1736
|
ListMultipartUploadsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1737
|
+
ListMultipartUploadsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1563
1738
|
ListMultipartUploadsRequest.struct_class = Types::ListMultipartUploadsRequest
|
1564
1739
|
|
1565
1740
|
ListObjectVersionsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
@@ -1575,16 +1750,19 @@ module Aws::S3
|
|
1575
1750
|
ListObjectVersionsOutput.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location_name: "MaxKeys"))
|
1576
1751
|
ListObjectVersionsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
|
1577
1752
|
ListObjectVersionsOutput.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location_name: "EncodingType"))
|
1753
|
+
ListObjectVersionsOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1578
1754
|
ListObjectVersionsOutput.struct_class = Types::ListObjectVersionsOutput
|
1579
1755
|
|
1580
|
-
ListObjectVersionsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1756
|
+
ListObjectVersionsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1581
1757
|
ListObjectVersionsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
1582
1758
|
ListObjectVersionsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
1583
1759
|
ListObjectVersionsRequest.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location: "querystring", location_name: "key-marker"))
|
1584
1760
|
ListObjectVersionsRequest.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
|
1585
|
-
ListObjectVersionsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
|
1761
|
+
ListObjectVersionsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix", metadata: {"contextParam"=>{"name"=>"Prefix"}}))
|
1586
1762
|
ListObjectVersionsRequest.add_member(:version_id_marker, Shapes::ShapeRef.new(shape: VersionIdMarker, location: "querystring", location_name: "version-id-marker"))
|
1587
1763
|
ListObjectVersionsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1764
|
+
ListObjectVersionsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1765
|
+
ListObjectVersionsRequest.add_member(:optional_object_attributes, Shapes::ShapeRef.new(shape: OptionalObjectAttributesList, location: "header", location_name: "x-amz-optional-object-attributes"))
|
1588
1766
|
ListObjectVersionsRequest.struct_class = Types::ListObjectVersionsRequest
|
1589
1767
|
|
1590
1768
|
ListObjectsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
@@ -1597,16 +1775,18 @@ module Aws::S3
|
|
1597
1775
|
ListObjectsOutput.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location_name: "MaxKeys"))
|
1598
1776
|
ListObjectsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
|
1599
1777
|
ListObjectsOutput.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location_name: "EncodingType"))
|
1778
|
+
ListObjectsOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1600
1779
|
ListObjectsOutput.struct_class = Types::ListObjectsOutput
|
1601
1780
|
|
1602
|
-
ListObjectsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1781
|
+
ListObjectsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1603
1782
|
ListObjectsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
1604
1783
|
ListObjectsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
1605
1784
|
ListObjectsRequest.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location: "querystring", location_name: "marker"))
|
1606
1785
|
ListObjectsRequest.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
|
1607
|
-
ListObjectsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
|
1786
|
+
ListObjectsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix", metadata: {"contextParam"=>{"name"=>"Prefix"}}))
|
1608
1787
|
ListObjectsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1609
1788
|
ListObjectsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1789
|
+
ListObjectsRequest.add_member(:optional_object_attributes, Shapes::ShapeRef.new(shape: OptionalObjectAttributesList, location: "header", location_name: "x-amz-optional-object-attributes"))
|
1610
1790
|
ListObjectsRequest.struct_class = Types::ListObjectsRequest
|
1611
1791
|
|
1612
1792
|
ListObjectsV2Output.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
@@ -1621,18 +1801,20 @@ module Aws::S3
|
|
1621
1801
|
ListObjectsV2Output.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location_name: "ContinuationToken"))
|
1622
1802
|
ListObjectsV2Output.add_member(:next_continuation_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextContinuationToken"))
|
1623
1803
|
ListObjectsV2Output.add_member(:start_after, Shapes::ShapeRef.new(shape: StartAfter, location_name: "StartAfter"))
|
1804
|
+
ListObjectsV2Output.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1624
1805
|
ListObjectsV2Output.struct_class = Types::ListObjectsV2Output
|
1625
1806
|
|
1626
|
-
ListObjectsV2Request.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1807
|
+
ListObjectsV2Request.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1627
1808
|
ListObjectsV2Request.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
1628
1809
|
ListObjectsV2Request.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
1629
1810
|
ListObjectsV2Request.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
|
1630
|
-
ListObjectsV2Request.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
|
1811
|
+
ListObjectsV2Request.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix", metadata: {"contextParam"=>{"name"=>"Prefix"}}))
|
1631
1812
|
ListObjectsV2Request.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
|
1632
1813
|
ListObjectsV2Request.add_member(:fetch_owner, Shapes::ShapeRef.new(shape: FetchOwner, location: "querystring", location_name: "fetch-owner"))
|
1633
1814
|
ListObjectsV2Request.add_member(:start_after, Shapes::ShapeRef.new(shape: StartAfter, location: "querystring", location_name: "start-after"))
|
1634
1815
|
ListObjectsV2Request.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1635
1816
|
ListObjectsV2Request.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1817
|
+
ListObjectsV2Request.add_member(:optional_object_attributes, Shapes::ShapeRef.new(shape: OptionalObjectAttributesList, location: "header", location_name: "x-amz-optional-object-attributes"))
|
1636
1818
|
ListObjectsV2Request.struct_class = Types::ListObjectsV2Request
|
1637
1819
|
|
1638
1820
|
ListPartsOutput.add_member(:abort_date, Shapes::ShapeRef.new(shape: AbortDate, location: "header", location_name: "x-amz-abort-date"))
|
@@ -1649,20 +1831,29 @@ module Aws::S3
|
|
1649
1831
|
ListPartsOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1650
1832
|
ListPartsOutput.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
|
1651
1833
|
ListPartsOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1834
|
+
ListPartsOutput.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location_name: "ChecksumAlgorithm"))
|
1652
1835
|
ListPartsOutput.struct_class = Types::ListPartsOutput
|
1653
1836
|
|
1654
|
-
ListPartsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1655
|
-
ListPartsRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1837
|
+
ListPartsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1838
|
+
ListPartsRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam"=>{"name"=>"Key"}}))
|
1656
1839
|
ListPartsRequest.add_member(:max_parts, Shapes::ShapeRef.new(shape: MaxParts, location: "querystring", location_name: "max-parts"))
|
1657
1840
|
ListPartsRequest.add_member(:part_number_marker, Shapes::ShapeRef.new(shape: PartNumberMarker, location: "querystring", location_name: "part-number-marker"))
|
1658
1841
|
ListPartsRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
1659
1842
|
ListPartsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1660
1843
|
ListPartsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1844
|
+
ListPartsRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
1845
|
+
ListPartsRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
1846
|
+
ListPartsRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1661
1847
|
ListPartsRequest.struct_class = Types::ListPartsRequest
|
1662
1848
|
|
1849
|
+
LocationInfo.add_member(:type, Shapes::ShapeRef.new(shape: LocationType, location_name: "Type"))
|
1850
|
+
LocationInfo.add_member(:name, Shapes::ShapeRef.new(shape: LocationNameAsString, location_name: "Name"))
|
1851
|
+
LocationInfo.struct_class = Types::LocationInfo
|
1852
|
+
|
1663
1853
|
LoggingEnabled.add_member(:target_bucket, Shapes::ShapeRef.new(shape: TargetBucket, required: true, location_name: "TargetBucket"))
|
1664
1854
|
LoggingEnabled.add_member(:target_grants, Shapes::ShapeRef.new(shape: TargetGrants, location_name: "TargetGrants"))
|
1665
1855
|
LoggingEnabled.add_member(:target_prefix, Shapes::ShapeRef.new(shape: TargetPrefix, required: true, location_name: "TargetPrefix"))
|
1856
|
+
LoggingEnabled.add_member(:target_object_key_format, Shapes::ShapeRef.new(shape: TargetObjectKeyFormat, location_name: "TargetObjectKeyFormat"))
|
1666
1857
|
LoggingEnabled.struct_class = Types::LoggingEnabled
|
1667
1858
|
|
1668
1859
|
Metadata.key = Shapes::ShapeRef.new(shape: MetadataKey)
|
@@ -1678,6 +1869,7 @@ module Aws::S3
|
|
1678
1869
|
|
1679
1870
|
MetricsAndOperator.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
1680
1871
|
MetricsAndOperator.add_member(:tags, Shapes::ShapeRef.new(shape: TagSet, location_name: "Tag", metadata: {"flattened"=>true}))
|
1872
|
+
MetricsAndOperator.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: AccessPointArn, location_name: "AccessPointArn"))
|
1681
1873
|
MetricsAndOperator.struct_class = Types::MetricsAndOperator
|
1682
1874
|
|
1683
1875
|
MetricsConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location_name: "Id"))
|
@@ -1688,6 +1880,7 @@ module Aws::S3
|
|
1688
1880
|
|
1689
1881
|
MetricsFilter.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
1690
1882
|
MetricsFilter.add_member(:tag, Shapes::ShapeRef.new(shape: Tag, location_name: "Tag"))
|
1883
|
+
MetricsFilter.add_member(:access_point_arn, Shapes::ShapeRef.new(shape: AccessPointArn, location_name: "AccessPointArn"))
|
1691
1884
|
MetricsFilter.add_member(:and, Shapes::ShapeRef.new(shape: MetricsAndOperator, location_name: "And"))
|
1692
1885
|
MetricsFilter.struct_class = Types::MetricsFilter
|
1693
1886
|
|
@@ -1697,6 +1890,7 @@ module Aws::S3
|
|
1697
1890
|
MultipartUpload.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
|
1698
1891
|
MultipartUpload.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1699
1892
|
MultipartUpload.add_member(:initiator, Shapes::ShapeRef.new(shape: Initiator, location_name: "Initiator"))
|
1893
|
+
MultipartUpload.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location_name: "ChecksumAlgorithm"))
|
1700
1894
|
MultipartUpload.struct_class = Types::MultipartUpload
|
1701
1895
|
|
1702
1896
|
MultipartUploadList.member = Shapes::ShapeRef.new(shape: MultipartUpload)
|
@@ -1708,10 +1902,12 @@ module Aws::S3
|
|
1708
1902
|
NoSuchUpload.struct_class = Types::NoSuchUpload
|
1709
1903
|
|
1710
1904
|
NoncurrentVersionExpiration.add_member(:noncurrent_days, Shapes::ShapeRef.new(shape: Days, location_name: "NoncurrentDays"))
|
1905
|
+
NoncurrentVersionExpiration.add_member(:newer_noncurrent_versions, Shapes::ShapeRef.new(shape: VersionCount, location_name: "NewerNoncurrentVersions"))
|
1711
1906
|
NoncurrentVersionExpiration.struct_class = Types::NoncurrentVersionExpiration
|
1712
1907
|
|
1713
1908
|
NoncurrentVersionTransition.add_member(:noncurrent_days, Shapes::ShapeRef.new(shape: Days, location_name: "NoncurrentDays"))
|
1714
1909
|
NoncurrentVersionTransition.add_member(:storage_class, Shapes::ShapeRef.new(shape: TransitionStorageClass, location_name: "StorageClass"))
|
1910
|
+
NoncurrentVersionTransition.add_member(:newer_noncurrent_versions, Shapes::ShapeRef.new(shape: VersionCount, location_name: "NewerNoncurrentVersions"))
|
1715
1911
|
NoncurrentVersionTransition.struct_class = Types::NoncurrentVersionTransition
|
1716
1912
|
|
1717
1913
|
NoncurrentVersionTransitionList.member = Shapes::ShapeRef.new(shape: NoncurrentVersionTransition)
|
@@ -1719,6 +1915,7 @@ module Aws::S3
|
|
1719
1915
|
NotificationConfiguration.add_member(:topic_configurations, Shapes::ShapeRef.new(shape: TopicConfigurationList, location_name: "TopicConfiguration"))
|
1720
1916
|
NotificationConfiguration.add_member(:queue_configurations, Shapes::ShapeRef.new(shape: QueueConfigurationList, location_name: "QueueConfiguration"))
|
1721
1917
|
NotificationConfiguration.add_member(:lambda_function_configurations, Shapes::ShapeRef.new(shape: LambdaFunctionConfigurationList, location_name: "CloudFunctionConfiguration"))
|
1918
|
+
NotificationConfiguration.add_member(:event_bridge_configuration, Shapes::ShapeRef.new(shape: EventBridgeConfiguration, location_name: "EventBridgeConfiguration"))
|
1722
1919
|
NotificationConfiguration.struct_class = Types::NotificationConfiguration
|
1723
1920
|
|
1724
1921
|
NotificationConfigurationDeprecated.add_member(:topic_configuration, Shapes::ShapeRef.new(shape: TopicConfigurationDeprecated, location_name: "TopicConfiguration"))
|
@@ -1732,13 +1929,17 @@ module Aws::S3
|
|
1732
1929
|
Object.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
1733
1930
|
Object.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
1734
1931
|
Object.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
1932
|
+
Object.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithmList, location_name: "ChecksumAlgorithm"))
|
1735
1933
|
Object.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
|
1736
1934
|
Object.add_member(:storage_class, Shapes::ShapeRef.new(shape: ObjectStorageClass, location_name: "StorageClass"))
|
1737
1935
|
Object.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1936
|
+
Object.add_member(:restore_status, Shapes::ShapeRef.new(shape: RestoreStatus, location_name: "RestoreStatus"))
|
1738
1937
|
Object.struct_class = Types::Object
|
1739
1938
|
|
1740
1939
|
ObjectAlreadyInActiveTierError.struct_class = Types::ObjectAlreadyInActiveTierError
|
1741
1940
|
|
1941
|
+
ObjectAttributesList.member = Shapes::ShapeRef.new(shape: ObjectAttributes)
|
1942
|
+
|
1742
1943
|
ObjectIdentifier.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location_name: "Key"))
|
1743
1944
|
ObjectIdentifier.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
|
1744
1945
|
ObjectIdentifier.struct_class = Types::ObjectIdentifier
|
@@ -1763,7 +1964,16 @@ module Aws::S3
|
|
1763
1964
|
|
1764
1965
|
ObjectNotInActiveTierError.struct_class = Types::ObjectNotInActiveTierError
|
1765
1966
|
|
1967
|
+
ObjectPart.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location_name: "PartNumber"))
|
1968
|
+
ObjectPart.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
|
1969
|
+
ObjectPart.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location_name: "ChecksumCRC32"))
|
1970
|
+
ObjectPart.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location_name: "ChecksumCRC32C"))
|
1971
|
+
ObjectPart.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location_name: "ChecksumSHA1"))
|
1972
|
+
ObjectPart.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location_name: "ChecksumSHA256"))
|
1973
|
+
ObjectPart.struct_class = Types::ObjectPart
|
1974
|
+
|
1766
1975
|
ObjectVersion.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
1976
|
+
ObjectVersion.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithmList, location_name: "ChecksumAlgorithm"))
|
1767
1977
|
ObjectVersion.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
|
1768
1978
|
ObjectVersion.add_member(:storage_class, Shapes::ShapeRef.new(shape: ObjectVersionStorageClass, location_name: "StorageClass"))
|
1769
1979
|
ObjectVersion.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
@@ -1771,10 +1981,13 @@ module Aws::S3
|
|
1771
1981
|
ObjectVersion.add_member(:is_latest, Shapes::ShapeRef.new(shape: IsLatest, location_name: "IsLatest"))
|
1772
1982
|
ObjectVersion.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
1773
1983
|
ObjectVersion.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1984
|
+
ObjectVersion.add_member(:restore_status, Shapes::ShapeRef.new(shape: RestoreStatus, location_name: "RestoreStatus"))
|
1774
1985
|
ObjectVersion.struct_class = Types::ObjectVersion
|
1775
1986
|
|
1776
1987
|
ObjectVersionList.member = Shapes::ShapeRef.new(shape: ObjectVersion)
|
1777
1988
|
|
1989
|
+
OptionalObjectAttributesList.member = Shapes::ShapeRef.new(shape: OptionalObjectAttributes)
|
1990
|
+
|
1778
1991
|
OutputLocation.add_member(:s3, Shapes::ShapeRef.new(shape: S3Location, location_name: "S3"))
|
1779
1992
|
OutputLocation.struct_class = Types::OutputLocation
|
1780
1993
|
|
@@ -1800,10 +2013,19 @@ module Aws::S3
|
|
1800
2013
|
Part.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
1801
2014
|
Part.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
1802
2015
|
Part.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
|
2016
|
+
Part.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location_name: "ChecksumCRC32"))
|
2017
|
+
Part.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location_name: "ChecksumCRC32C"))
|
2018
|
+
Part.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location_name: "ChecksumSHA1"))
|
2019
|
+
Part.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location_name: "ChecksumSHA256"))
|
1803
2020
|
Part.struct_class = Types::Part
|
1804
2021
|
|
2022
|
+
PartitionedPrefix.add_member(:partition_date_source, Shapes::ShapeRef.new(shape: PartitionDateSource, location_name: "PartitionDateSource"))
|
2023
|
+
PartitionedPrefix.struct_class = Types::PartitionedPrefix
|
2024
|
+
|
1805
2025
|
Parts.member = Shapes::ShapeRef.new(shape: Part)
|
1806
2026
|
|
2027
|
+
PartsList.member = Shapes::ShapeRef.new(shape: ObjectPart)
|
2028
|
+
|
1807
2029
|
PolicyStatus.add_member(:is_public, Shapes::ShapeRef.new(shape: IsPublic, location_name: "IsPublic"))
|
1808
2030
|
PolicyStatus.struct_class = Types::PolicyStatus
|
1809
2031
|
|
@@ -1821,17 +2043,19 @@ module Aws::S3
|
|
1821
2043
|
PublicAccessBlockConfiguration.add_member(:restrict_public_buckets, Shapes::ShapeRef.new(shape: Setting, location_name: "RestrictPublicBuckets"))
|
1822
2044
|
PublicAccessBlockConfiguration.struct_class = Types::PublicAccessBlockConfiguration
|
1823
2045
|
|
1824
|
-
PutBucketAccelerateConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2046
|
+
PutBucketAccelerateConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1825
2047
|
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/"}}))
|
1826
2048
|
PutBucketAccelerateConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
2049
|
+
PutBucketAccelerateConfigurationRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1827
2050
|
PutBucketAccelerateConfigurationRequest.struct_class = Types::PutBucketAccelerateConfigurationRequest
|
1828
2051
|
PutBucketAccelerateConfigurationRequest[:payload] = :accelerate_configuration
|
1829
2052
|
PutBucketAccelerateConfigurationRequest[:payload_member] = PutBucketAccelerateConfigurationRequest.member(:accelerate_configuration)
|
1830
2053
|
|
1831
2054
|
PutBucketAclRequest.add_member(:acl, Shapes::ShapeRef.new(shape: BucketCannedACL, location: "header", location_name: "x-amz-acl"))
|
1832
2055
|
PutBucketAclRequest.add_member(:access_control_policy, Shapes::ShapeRef.new(shape: AccessControlPolicy, location_name: "AccessControlPolicy", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1833
|
-
PutBucketAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2056
|
+
PutBucketAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1834
2057
|
PutBucketAclRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2058
|
+
PutBucketAclRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1835
2059
|
PutBucketAclRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
1836
2060
|
PutBucketAclRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
1837
2061
|
PutBucketAclRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
@@ -1842,7 +2066,7 @@ module Aws::S3
|
|
1842
2066
|
PutBucketAclRequest[:payload] = :access_control_policy
|
1843
2067
|
PutBucketAclRequest[:payload_member] = PutBucketAclRequest.member(:access_control_policy)
|
1844
2068
|
|
1845
|
-
PutBucketAnalyticsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2069
|
+
PutBucketAnalyticsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1846
2070
|
PutBucketAnalyticsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: AnalyticsId, required: true, location: "querystring", location_name: "id"))
|
1847
2071
|
PutBucketAnalyticsConfigurationRequest.add_member(:analytics_configuration, Shapes::ShapeRef.new(shape: AnalyticsConfiguration, required: true, location_name: "AnalyticsConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1848
2072
|
PutBucketAnalyticsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
@@ -1850,30 +2074,32 @@ module Aws::S3
|
|
1850
2074
|
PutBucketAnalyticsConfigurationRequest[:payload] = :analytics_configuration
|
1851
2075
|
PutBucketAnalyticsConfigurationRequest[:payload_member] = PutBucketAnalyticsConfigurationRequest.member(:analytics_configuration)
|
1852
2076
|
|
1853
|
-
PutBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2077
|
+
PutBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1854
2078
|
PutBucketCorsRequest.add_member(:cors_configuration, Shapes::ShapeRef.new(shape: CORSConfiguration, required: true, location_name: "CORSConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1855
2079
|
PutBucketCorsRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2080
|
+
PutBucketCorsRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1856
2081
|
PutBucketCorsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1857
2082
|
PutBucketCorsRequest.struct_class = Types::PutBucketCorsRequest
|
1858
2083
|
PutBucketCorsRequest[:payload] = :cors_configuration
|
1859
2084
|
PutBucketCorsRequest[:payload_member] = PutBucketCorsRequest.member(:cors_configuration)
|
1860
2085
|
|
1861
|
-
PutBucketEncryptionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2086
|
+
PutBucketEncryptionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1862
2087
|
PutBucketEncryptionRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2088
|
+
PutBucketEncryptionRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1863
2089
|
PutBucketEncryptionRequest.add_member(:server_side_encryption_configuration, Shapes::ShapeRef.new(shape: ServerSideEncryptionConfiguration, required: true, location_name: "ServerSideEncryptionConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1864
2090
|
PutBucketEncryptionRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1865
2091
|
PutBucketEncryptionRequest.struct_class = Types::PutBucketEncryptionRequest
|
1866
2092
|
PutBucketEncryptionRequest[:payload] = :server_side_encryption_configuration
|
1867
2093
|
PutBucketEncryptionRequest[:payload_member] = PutBucketEncryptionRequest.member(:server_side_encryption_configuration)
|
1868
2094
|
|
1869
|
-
PutBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2095
|
+
PutBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1870
2096
|
PutBucketIntelligentTieringConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: IntelligentTieringId, required: true, location: "querystring", location_name: "id"))
|
1871
2097
|
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/"}}))
|
1872
2098
|
PutBucketIntelligentTieringConfigurationRequest.struct_class = Types::PutBucketIntelligentTieringConfigurationRequest
|
1873
2099
|
PutBucketIntelligentTieringConfigurationRequest[:payload] = :intelligent_tiering_configuration
|
1874
2100
|
PutBucketIntelligentTieringConfigurationRequest[:payload_member] = PutBucketIntelligentTieringConfigurationRequest.member(:intelligent_tiering_configuration)
|
1875
2101
|
|
1876
|
-
PutBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2102
|
+
PutBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1877
2103
|
PutBucketInventoryConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: InventoryId, required: true, location: "querystring", location_name: "id"))
|
1878
2104
|
PutBucketInventoryConfigurationRequest.add_member(:inventory_configuration, Shapes::ShapeRef.new(shape: InventoryConfiguration, required: true, location_name: "InventoryConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1879
2105
|
PutBucketInventoryConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
@@ -1881,30 +2107,33 @@ module Aws::S3
|
|
1881
2107
|
PutBucketInventoryConfigurationRequest[:payload] = :inventory_configuration
|
1882
2108
|
PutBucketInventoryConfigurationRequest[:payload_member] = PutBucketInventoryConfigurationRequest.member(:inventory_configuration)
|
1883
2109
|
|
1884
|
-
PutBucketLifecycleConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2110
|
+
PutBucketLifecycleConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2111
|
+
PutBucketLifecycleConfigurationRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1885
2112
|
PutBucketLifecycleConfigurationRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: BucketLifecycleConfiguration, location_name: "LifecycleConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1886
2113
|
PutBucketLifecycleConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1887
2114
|
PutBucketLifecycleConfigurationRequest.struct_class = Types::PutBucketLifecycleConfigurationRequest
|
1888
2115
|
PutBucketLifecycleConfigurationRequest[:payload] = :lifecycle_configuration
|
1889
2116
|
PutBucketLifecycleConfigurationRequest[:payload_member] = PutBucketLifecycleConfigurationRequest.member(:lifecycle_configuration)
|
1890
2117
|
|
1891
|
-
PutBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2118
|
+
PutBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1892
2119
|
PutBucketLifecycleRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2120
|
+
PutBucketLifecycleRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1893
2121
|
PutBucketLifecycleRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: LifecycleConfiguration, location_name: "LifecycleConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1894
2122
|
PutBucketLifecycleRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1895
2123
|
PutBucketLifecycleRequest.struct_class = Types::PutBucketLifecycleRequest
|
1896
2124
|
PutBucketLifecycleRequest[:payload] = :lifecycle_configuration
|
1897
2125
|
PutBucketLifecycleRequest[:payload_member] = PutBucketLifecycleRequest.member(:lifecycle_configuration)
|
1898
2126
|
|
1899
|
-
PutBucketLoggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2127
|
+
PutBucketLoggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1900
2128
|
PutBucketLoggingRequest.add_member(:bucket_logging_status, Shapes::ShapeRef.new(shape: BucketLoggingStatus, required: true, location_name: "BucketLoggingStatus", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1901
2129
|
PutBucketLoggingRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2130
|
+
PutBucketLoggingRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1902
2131
|
PutBucketLoggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1903
2132
|
PutBucketLoggingRequest.struct_class = Types::PutBucketLoggingRequest
|
1904
2133
|
PutBucketLoggingRequest[:payload] = :bucket_logging_status
|
1905
2134
|
PutBucketLoggingRequest[:payload_member] = PutBucketLoggingRequest.member(:bucket_logging_status)
|
1906
2135
|
|
1907
|
-
PutBucketMetricsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2136
|
+
PutBucketMetricsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1908
2137
|
PutBucketMetricsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location: "querystring", location_name: "id"))
|
1909
2138
|
PutBucketMetricsConfigurationRequest.add_member(:metrics_configuration, Shapes::ShapeRef.new(shape: MetricsConfiguration, required: true, location_name: "MetricsConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1910
2139
|
PutBucketMetricsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
@@ -1912,22 +2141,24 @@ module Aws::S3
|
|
1912
2141
|
PutBucketMetricsConfigurationRequest[:payload] = :metrics_configuration
|
1913
2142
|
PutBucketMetricsConfigurationRequest[:payload_member] = PutBucketMetricsConfigurationRequest.member(:metrics_configuration)
|
1914
2143
|
|
1915
|
-
PutBucketNotificationConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2144
|
+
PutBucketNotificationConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1916
2145
|
PutBucketNotificationConfigurationRequest.add_member(:notification_configuration, Shapes::ShapeRef.new(shape: NotificationConfiguration, required: true, location_name: "NotificationConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1917
2146
|
PutBucketNotificationConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
2147
|
+
PutBucketNotificationConfigurationRequest.add_member(:skip_destination_validation, Shapes::ShapeRef.new(shape: SkipValidation, location: "header", location_name: "x-amz-skip-destination-validation"))
|
1918
2148
|
PutBucketNotificationConfigurationRequest.struct_class = Types::PutBucketNotificationConfigurationRequest
|
1919
2149
|
PutBucketNotificationConfigurationRequest[:payload] = :notification_configuration
|
1920
2150
|
PutBucketNotificationConfigurationRequest[:payload_member] = PutBucketNotificationConfigurationRequest.member(:notification_configuration)
|
1921
2151
|
|
1922
|
-
PutBucketNotificationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2152
|
+
PutBucketNotificationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1923
2153
|
PutBucketNotificationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2154
|
+
PutBucketNotificationRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1924
2155
|
PutBucketNotificationRequest.add_member(:notification_configuration, Shapes::ShapeRef.new(shape: NotificationConfigurationDeprecated, required: true, location_name: "NotificationConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1925
2156
|
PutBucketNotificationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1926
2157
|
PutBucketNotificationRequest.struct_class = Types::PutBucketNotificationRequest
|
1927
2158
|
PutBucketNotificationRequest[:payload] = :notification_configuration
|
1928
2159
|
PutBucketNotificationRequest[:payload_member] = PutBucketNotificationRequest.member(:notification_configuration)
|
1929
2160
|
|
1930
|
-
PutBucketOwnershipControlsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2161
|
+
PutBucketOwnershipControlsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1931
2162
|
PutBucketOwnershipControlsRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1932
2163
|
PutBucketOwnershipControlsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1933
2164
|
PutBucketOwnershipControlsRequest.add_member(:ownership_controls, Shapes::ShapeRef.new(shape: OwnershipControls, required: true, location_name: "OwnershipControls", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
@@ -1935,8 +2166,9 @@ module Aws::S3
|
|
1935
2166
|
PutBucketOwnershipControlsRequest[:payload] = :ownership_controls
|
1936
2167
|
PutBucketOwnershipControlsRequest[:payload_member] = PutBucketOwnershipControlsRequest.member(:ownership_controls)
|
1937
2168
|
|
1938
|
-
PutBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2169
|
+
PutBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1939
2170
|
PutBucketPolicyRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2171
|
+
PutBucketPolicyRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1940
2172
|
PutBucketPolicyRequest.add_member(:confirm_remove_self_bucket_access, Shapes::ShapeRef.new(shape: ConfirmRemoveSelfBucketAccess, location: "header", location_name: "x-amz-confirm-remove-self-bucket-access"))
|
1941
2173
|
PutBucketPolicyRequest.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, required: true, location_name: "Policy"))
|
1942
2174
|
PutBucketPolicyRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
@@ -1944,8 +2176,9 @@ module Aws::S3
|
|
1944
2176
|
PutBucketPolicyRequest[:payload] = :policy
|
1945
2177
|
PutBucketPolicyRequest[:payload_member] = PutBucketPolicyRequest.member(:policy)
|
1946
2178
|
|
1947
|
-
PutBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2179
|
+
PutBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1948
2180
|
PutBucketReplicationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2181
|
+
PutBucketReplicationRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1949
2182
|
PutBucketReplicationRequest.add_member(:replication_configuration, Shapes::ShapeRef.new(shape: ReplicationConfiguration, required: true, location_name: "ReplicationConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1950
2183
|
PutBucketReplicationRequest.add_member(:token, Shapes::ShapeRef.new(shape: ObjectLockToken, location: "header", location_name: "x-amz-bucket-object-lock-token"))
|
1951
2184
|
PutBucketReplicationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
@@ -1953,24 +2186,27 @@ module Aws::S3
|
|
1953
2186
|
PutBucketReplicationRequest[:payload] = :replication_configuration
|
1954
2187
|
PutBucketReplicationRequest[:payload_member] = PutBucketReplicationRequest.member(:replication_configuration)
|
1955
2188
|
|
1956
|
-
PutBucketRequestPaymentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2189
|
+
PutBucketRequestPaymentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1957
2190
|
PutBucketRequestPaymentRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2191
|
+
PutBucketRequestPaymentRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1958
2192
|
PutBucketRequestPaymentRequest.add_member(:request_payment_configuration, Shapes::ShapeRef.new(shape: RequestPaymentConfiguration, required: true, location_name: "RequestPaymentConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1959
2193
|
PutBucketRequestPaymentRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1960
2194
|
PutBucketRequestPaymentRequest.struct_class = Types::PutBucketRequestPaymentRequest
|
1961
2195
|
PutBucketRequestPaymentRequest[:payload] = :request_payment_configuration
|
1962
2196
|
PutBucketRequestPaymentRequest[:payload_member] = PutBucketRequestPaymentRequest.member(:request_payment_configuration)
|
1963
2197
|
|
1964
|
-
PutBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2198
|
+
PutBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1965
2199
|
PutBucketTaggingRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2200
|
+
PutBucketTaggingRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1966
2201
|
PutBucketTaggingRequest.add_member(:tagging, Shapes::ShapeRef.new(shape: Tagging, required: true, location_name: "Tagging", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1967
2202
|
PutBucketTaggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1968
2203
|
PutBucketTaggingRequest.struct_class = Types::PutBucketTaggingRequest
|
1969
2204
|
PutBucketTaggingRequest[:payload] = :tagging
|
1970
2205
|
PutBucketTaggingRequest[:payload_member] = PutBucketTaggingRequest.member(:tagging)
|
1971
2206
|
|
1972
|
-
PutBucketVersioningRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2207
|
+
PutBucketVersioningRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1973
2208
|
PutBucketVersioningRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2209
|
+
PutBucketVersioningRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1974
2210
|
PutBucketVersioningRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
|
1975
2211
|
PutBucketVersioningRequest.add_member(:versioning_configuration, Shapes::ShapeRef.new(shape: VersioningConfiguration, required: true, location_name: "VersioningConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1976
2212
|
PutBucketVersioningRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
@@ -1978,8 +2214,9 @@ module Aws::S3
|
|
1978
2214
|
PutBucketVersioningRequest[:payload] = :versioning_configuration
|
1979
2215
|
PutBucketVersioningRequest[:payload_member] = PutBucketVersioningRequest.member(:versioning_configuration)
|
1980
2216
|
|
1981
|
-
PutBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2217
|
+
PutBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1982
2218
|
PutBucketWebsiteRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2219
|
+
PutBucketWebsiteRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1983
2220
|
PutBucketWebsiteRequest.add_member(:website_configuration, Shapes::ShapeRef.new(shape: WebsiteConfiguration, required: true, location_name: "WebsiteConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1984
2221
|
PutBucketWebsiteRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1985
2222
|
PutBucketWebsiteRequest.struct_class = Types::PutBucketWebsiteRequest
|
@@ -1991,14 +2228,15 @@ module Aws::S3
|
|
1991
2228
|
|
1992
2229
|
PutObjectAclRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
1993
2230
|
PutObjectAclRequest.add_member(:access_control_policy, Shapes::ShapeRef.new(shape: AccessControlPolicy, location_name: "AccessControlPolicy", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1994
|
-
PutObjectAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2231
|
+
PutObjectAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1995
2232
|
PutObjectAclRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2233
|
+
PutObjectAclRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
1996
2234
|
PutObjectAclRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
1997
2235
|
PutObjectAclRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
1998
2236
|
PutObjectAclRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
1999
2237
|
PutObjectAclRequest.add_member(:grant_write, Shapes::ShapeRef.new(shape: GrantWrite, location: "header", location_name: "x-amz-grant-write"))
|
2000
2238
|
PutObjectAclRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
2001
|
-
PutObjectAclRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
2239
|
+
PutObjectAclRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam"=>{"name"=>"Key"}}))
|
2002
2240
|
PutObjectAclRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
2003
2241
|
PutObjectAclRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
2004
2242
|
PutObjectAclRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
@@ -2009,12 +2247,13 @@ module Aws::S3
|
|
2009
2247
|
PutObjectLegalHoldOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
2010
2248
|
PutObjectLegalHoldOutput.struct_class = Types::PutObjectLegalHoldOutput
|
2011
2249
|
|
2012
|
-
PutObjectLegalHoldRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2250
|
+
PutObjectLegalHoldRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2013
2251
|
PutObjectLegalHoldRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
2014
2252
|
PutObjectLegalHoldRequest.add_member(:legal_hold, Shapes::ShapeRef.new(shape: ObjectLockLegalHold, location_name: "LegalHold", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
2015
2253
|
PutObjectLegalHoldRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
2016
2254
|
PutObjectLegalHoldRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
2017
2255
|
PutObjectLegalHoldRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2256
|
+
PutObjectLegalHoldRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
2018
2257
|
PutObjectLegalHoldRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
2019
2258
|
PutObjectLegalHoldRequest.struct_class = Types::PutObjectLegalHoldRequest
|
2020
2259
|
PutObjectLegalHoldRequest[:payload] = :legal_hold
|
@@ -2023,11 +2262,12 @@ module Aws::S3
|
|
2023
2262
|
PutObjectLockConfigurationOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
2024
2263
|
PutObjectLockConfigurationOutput.struct_class = Types::PutObjectLockConfigurationOutput
|
2025
2264
|
|
2026
|
-
PutObjectLockConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2265
|
+
PutObjectLockConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2027
2266
|
PutObjectLockConfigurationRequest.add_member(:object_lock_configuration, Shapes::ShapeRef.new(shape: ObjectLockConfiguration, location_name: "ObjectLockConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
2028
2267
|
PutObjectLockConfigurationRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
2029
2268
|
PutObjectLockConfigurationRequest.add_member(:token, Shapes::ShapeRef.new(shape: ObjectLockToken, location: "header", location_name: "x-amz-bucket-object-lock-token"))
|
2030
2269
|
PutObjectLockConfigurationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2270
|
+
PutObjectLockConfigurationRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
2031
2271
|
PutObjectLockConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
2032
2272
|
PutObjectLockConfigurationRequest.struct_class = Types::PutObjectLockConfigurationRequest
|
2033
2273
|
PutObjectLockConfigurationRequest[:payload] = :object_lock_configuration
|
@@ -2035,6 +2275,10 @@ module Aws::S3
|
|
2035
2275
|
|
2036
2276
|
PutObjectOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
|
2037
2277
|
PutObjectOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
|
2278
|
+
PutObjectOutput.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location: "header", location_name: "x-amz-checksum-crc32"))
|
2279
|
+
PutObjectOutput.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location: "header", location_name: "x-amz-checksum-crc32c"))
|
2280
|
+
PutObjectOutput.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location: "header", location_name: "x-amz-checksum-sha1"))
|
2281
|
+
PutObjectOutput.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location: "header", location_name: "x-amz-checksum-sha256"))
|
2038
2282
|
PutObjectOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
2039
2283
|
PutObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
2040
2284
|
PutObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
@@ -2047,7 +2291,7 @@ module Aws::S3
|
|
2047
2291
|
|
2048
2292
|
PutObjectRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
2049
2293
|
PutObjectRequest.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
2050
|
-
PutObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2294
|
+
PutObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2051
2295
|
PutObjectRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
2052
2296
|
PutObjectRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
|
2053
2297
|
PutObjectRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
|
@@ -2055,12 +2299,17 @@ module Aws::S3
|
|
2055
2299
|
PutObjectRequest.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
2056
2300
|
PutObjectRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2057
2301
|
PutObjectRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
|
2302
|
+
PutObjectRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
2303
|
+
PutObjectRequest.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location: "header", location_name: "x-amz-checksum-crc32"))
|
2304
|
+
PutObjectRequest.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location: "header", location_name: "x-amz-checksum-crc32c"))
|
2305
|
+
PutObjectRequest.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location: "header", location_name: "x-amz-checksum-sha1"))
|
2306
|
+
PutObjectRequest.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location: "header", location_name: "x-amz-checksum-sha256"))
|
2058
2307
|
PutObjectRequest.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
|
2059
2308
|
PutObjectRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
2060
2309
|
PutObjectRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
2061
2310
|
PutObjectRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
2062
2311
|
PutObjectRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
2063
|
-
PutObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
2312
|
+
PutObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam"=>{"name"=>"Key"}}))
|
2064
2313
|
PutObjectRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
|
2065
2314
|
PutObjectRequest.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
2066
2315
|
PutObjectRequest.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
|
@@ -2084,13 +2333,14 @@ module Aws::S3
|
|
2084
2333
|
PutObjectRetentionOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
2085
2334
|
PutObjectRetentionOutput.struct_class = Types::PutObjectRetentionOutput
|
2086
2335
|
|
2087
|
-
PutObjectRetentionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2336
|
+
PutObjectRetentionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2088
2337
|
PutObjectRetentionRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
2089
2338
|
PutObjectRetentionRequest.add_member(:retention, Shapes::ShapeRef.new(shape: ObjectLockRetention, location_name: "Retention", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
2090
2339
|
PutObjectRetentionRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
2091
2340
|
PutObjectRetentionRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
2092
2341
|
PutObjectRetentionRequest.add_member(:bypass_governance_retention, Shapes::ShapeRef.new(shape: BypassGovernanceRetention, location: "header", location_name: "x-amz-bypass-governance-retention"))
|
2093
2342
|
PutObjectRetentionRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2343
|
+
PutObjectRetentionRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
2094
2344
|
PutObjectRetentionRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
2095
2345
|
PutObjectRetentionRequest.struct_class = Types::PutObjectRetentionRequest
|
2096
2346
|
PutObjectRetentionRequest[:payload] = :retention
|
@@ -2099,18 +2349,21 @@ module Aws::S3
|
|
2099
2349
|
PutObjectTaggingOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
2100
2350
|
PutObjectTaggingOutput.struct_class = Types::PutObjectTaggingOutput
|
2101
2351
|
|
2102
|
-
PutObjectTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2352
|
+
PutObjectTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2103
2353
|
PutObjectTaggingRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
2104
2354
|
PutObjectTaggingRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
2105
2355
|
PutObjectTaggingRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2356
|
+
PutObjectTaggingRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
2106
2357
|
PutObjectTaggingRequest.add_member(:tagging, Shapes::ShapeRef.new(shape: Tagging, required: true, location_name: "Tagging", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
2107
2358
|
PutObjectTaggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
2359
|
+
PutObjectTaggingRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
2108
2360
|
PutObjectTaggingRequest.struct_class = Types::PutObjectTaggingRequest
|
2109
2361
|
PutObjectTaggingRequest[:payload] = :tagging
|
2110
2362
|
PutObjectTaggingRequest[:payload_member] = PutObjectTaggingRequest.member(:tagging)
|
2111
2363
|
|
2112
|
-
PutPublicAccessBlockRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2364
|
+
PutPublicAccessBlockRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2113
2365
|
PutPublicAccessBlockRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2366
|
+
PutPublicAccessBlockRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
2114
2367
|
PutPublicAccessBlockRequest.add_member(:public_access_block_configuration, Shapes::ShapeRef.new(shape: PublicAccessBlockConfiguration, required: true, location_name: "PublicAccessBlockConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
2115
2368
|
PutPublicAccessBlockRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
2116
2369
|
PutPublicAccessBlockRequest.struct_class = Types::PutPublicAccessBlockRequest
|
@@ -2191,11 +2444,12 @@ module Aws::S3
|
|
2191
2444
|
RestoreObjectOutput.add_member(:restore_output_path, Shapes::ShapeRef.new(shape: RestoreOutputPath, location: "header", location_name: "x-amz-restore-output-path"))
|
2192
2445
|
RestoreObjectOutput.struct_class = Types::RestoreObjectOutput
|
2193
2446
|
|
2194
|
-
RestoreObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2447
|
+
RestoreObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2195
2448
|
RestoreObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
2196
2449
|
RestoreObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
2197
2450
|
RestoreObjectRequest.add_member(:restore_request, Shapes::ShapeRef.new(shape: RestoreRequest, location_name: "RestoreRequest", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
2198
2451
|
RestoreObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
2452
|
+
RestoreObjectRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
2199
2453
|
RestoreObjectRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
2200
2454
|
RestoreObjectRequest.struct_class = Types::RestoreObjectRequest
|
2201
2455
|
RestoreObjectRequest[:payload] = :restore_request
|
@@ -2210,6 +2464,10 @@ module Aws::S3
|
|
2210
2464
|
RestoreRequest.add_member(:output_location, Shapes::ShapeRef.new(shape: OutputLocation, location_name: "OutputLocation"))
|
2211
2465
|
RestoreRequest.struct_class = Types::RestoreRequest
|
2212
2466
|
|
2467
|
+
RestoreStatus.add_member(:is_restore_in_progress, Shapes::ShapeRef.new(shape: IsRestoreInProgress, location_name: "IsRestoreInProgress"))
|
2468
|
+
RestoreStatus.add_member(:restore_expiry_date, Shapes::ShapeRef.new(shape: RestoreExpiryDate, location_name: "RestoreExpiryDate"))
|
2469
|
+
RestoreStatus.struct_class = Types::RestoreStatus
|
2470
|
+
|
2213
2471
|
RoutingRule.add_member(:condition, Shapes::ShapeRef.new(shape: Condition, location_name: "Condition"))
|
2214
2472
|
RoutingRule.add_member(:redirect, Shapes::ShapeRef.new(shape: Redirect, required: true, location_name: "Redirect"))
|
2215
2473
|
RoutingRule.struct_class = Types::RoutingRule
|
@@ -2262,7 +2520,7 @@ module Aws::S3
|
|
2262
2520
|
SelectObjectContentOutput[:payload] = :payload
|
2263
2521
|
SelectObjectContentOutput[:payload_member] = SelectObjectContentOutput.member(:payload)
|
2264
2522
|
|
2265
|
-
SelectObjectContentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2523
|
+
SelectObjectContentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2266
2524
|
SelectObjectContentRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
2267
2525
|
SelectObjectContentRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
2268
2526
|
SelectObjectContentRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
@@ -2295,6 +2553,14 @@ module Aws::S3
|
|
2295
2553
|
|
2296
2554
|
ServerSideEncryptionRules.member = Shapes::ShapeRef.new(shape: ServerSideEncryptionRule)
|
2297
2555
|
|
2556
|
+
SessionCredentials.add_member(:access_key_id, Shapes::ShapeRef.new(shape: AccessKeyIdValue, required: true, location_name: "AccessKeyId"))
|
2557
|
+
SessionCredentials.add_member(:secret_access_key, Shapes::ShapeRef.new(shape: SessionCredentialValue, required: true, location_name: "SecretAccessKey"))
|
2558
|
+
SessionCredentials.add_member(:session_token, Shapes::ShapeRef.new(shape: SessionCredentialValue, required: true, location_name: "SessionToken"))
|
2559
|
+
SessionCredentials.add_member(:expiration, Shapes::ShapeRef.new(shape: SessionExpiration, required: true, location_name: "Expiration"))
|
2560
|
+
SessionCredentials.struct_class = Types::SessionCredentials
|
2561
|
+
|
2562
|
+
SimplePrefix.struct_class = Types::SimplePrefix
|
2563
|
+
|
2298
2564
|
SourceSelectionCriteria.add_member(:sse_kms_encrypted_objects, Shapes::ShapeRef.new(shape: SseKmsEncryptedObjects, location_name: "SseKmsEncryptedObjects"))
|
2299
2565
|
SourceSelectionCriteria.add_member(:replica_modifications, Shapes::ShapeRef.new(shape: ReplicaModifications, location_name: "ReplicaModifications"))
|
2300
2566
|
SourceSelectionCriteria.struct_class = Types::SourceSelectionCriteria
|
@@ -2332,6 +2598,10 @@ module Aws::S3
|
|
2332
2598
|
|
2333
2599
|
TargetGrants.member = Shapes::ShapeRef.new(shape: TargetGrant, location_name: "Grant")
|
2334
2600
|
|
2601
|
+
TargetObjectKeyFormat.add_member(:simple_prefix, Shapes::ShapeRef.new(shape: SimplePrefix, location_name: "SimplePrefix"))
|
2602
|
+
TargetObjectKeyFormat.add_member(:partitioned_prefix, Shapes::ShapeRef.new(shape: PartitionedPrefix, location_name: "PartitionedPrefix"))
|
2603
|
+
TargetObjectKeyFormat.struct_class = Types::TargetObjectKeyFormat
|
2604
|
+
|
2335
2605
|
Tiering.add_member(:days, Shapes::ShapeRef.new(shape: IntelligentTieringDays, required: true, location_name: "Days"))
|
2336
2606
|
Tiering.add_member(:access_tier, Shapes::ShapeRef.new(shape: IntelligentTieringAccessTier, required: true, location_name: "AccessTier"))
|
2337
2607
|
Tiering.struct_class = Types::Tiering
|
@@ -2371,7 +2641,7 @@ module Aws::S3
|
|
2371
2641
|
UploadPartCopyOutput[:payload] = :copy_part_result
|
2372
2642
|
UploadPartCopyOutput[:payload_member] = UploadPartCopyOutput.member(:copy_part_result)
|
2373
2643
|
|
2374
|
-
UploadPartCopyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2644
|
+
UploadPartCopyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2375
2645
|
UploadPartCopyRequest.add_member(:copy_source, Shapes::ShapeRef.new(shape: CopySource, required: true, location: "header", location_name: "x-amz-copy-source"))
|
2376
2646
|
UploadPartCopyRequest.add_member(:copy_source_if_match, Shapes::ShapeRef.new(shape: CopySourceIfMatch, location: "header", location_name: "x-amz-copy-source-if-match"))
|
2377
2647
|
UploadPartCopyRequest.add_member(:copy_source_if_modified_since, Shapes::ShapeRef.new(shape: CopySourceIfModifiedSince, location: "header", location_name: "x-amz-copy-source-if-modified-since"))
|
@@ -2394,6 +2664,10 @@ module Aws::S3
|
|
2394
2664
|
|
2395
2665
|
UploadPartOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
2396
2666
|
UploadPartOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
|
2667
|
+
UploadPartOutput.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location: "header", location_name: "x-amz-checksum-crc32"))
|
2668
|
+
UploadPartOutput.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location: "header", location_name: "x-amz-checksum-crc32c"))
|
2669
|
+
UploadPartOutput.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location: "header", location_name: "x-amz-checksum-sha1"))
|
2670
|
+
UploadPartOutput.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location: "header", location_name: "x-amz-checksum-sha256"))
|
2397
2671
|
UploadPartOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
2398
2672
|
UploadPartOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
2399
2673
|
UploadPartOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
@@ -2402,10 +2676,15 @@ module Aws::S3
|
|
2402
2676
|
UploadPartOutput.struct_class = Types::UploadPartOutput
|
2403
2677
|
|
2404
2678
|
UploadPartRequest.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
2405
|
-
UploadPartRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
2679
|
+
UploadPartRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2406
2680
|
UploadPartRequest.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
2407
2681
|
UploadPartRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2408
|
-
UploadPartRequest.add_member(:
|
2682
|
+
UploadPartRequest.add_member(:checksum_algorithm, Shapes::ShapeRef.new(shape: ChecksumAlgorithm, location: "header", location_name: "x-amz-sdk-checksum-algorithm"))
|
2683
|
+
UploadPartRequest.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location: "header", location_name: "x-amz-checksum-crc32"))
|
2684
|
+
UploadPartRequest.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location: "header", location_name: "x-amz-checksum-crc32c"))
|
2685
|
+
UploadPartRequest.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location: "header", location_name: "x-amz-checksum-sha1"))
|
2686
|
+
UploadPartRequest.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location: "header", location_name: "x-amz-checksum-sha256"))
|
2687
|
+
UploadPartRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key", metadata: {"contextParam"=>{"name"=>"Key"}}))
|
2409
2688
|
UploadPartRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, required: true, location: "querystring", location_name: "partNumber"))
|
2410
2689
|
UploadPartRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
2411
2690
|
UploadPartRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
@@ -2429,6 +2708,50 @@ module Aws::S3
|
|
2429
2708
|
WebsiteConfiguration.add_member(:routing_rules, Shapes::ShapeRef.new(shape: RoutingRules, location_name: "RoutingRules"))
|
2430
2709
|
WebsiteConfiguration.struct_class = Types::WebsiteConfiguration
|
2431
2710
|
|
2711
|
+
WriteGetObjectResponseRequest.add_member(:request_route, Shapes::ShapeRef.new(shape: RequestRoute, required: true, location: "header", location_name: "x-amz-request-route", metadata: {"hostLabel"=>true, "hostLabelName"=>"RequestRoute"}))
|
2712
|
+
WriteGetObjectResponseRequest.add_member(:request_token, Shapes::ShapeRef.new(shape: RequestToken, required: true, location: "header", location_name: "x-amz-request-token"))
|
2713
|
+
WriteGetObjectResponseRequest.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
2714
|
+
WriteGetObjectResponseRequest.add_member(:status_code, Shapes::ShapeRef.new(shape: GetObjectResponseStatusCode, location: "header", location_name: "x-amz-fwd-status"))
|
2715
|
+
WriteGetObjectResponseRequest.add_member(:error_code, Shapes::ShapeRef.new(shape: ErrorCode, location: "header", location_name: "x-amz-fwd-error-code"))
|
2716
|
+
WriteGetObjectResponseRequest.add_member(:error_message, Shapes::ShapeRef.new(shape: ErrorMessage, location: "header", location_name: "x-amz-fwd-error-message"))
|
2717
|
+
WriteGetObjectResponseRequest.add_member(:accept_ranges, Shapes::ShapeRef.new(shape: AcceptRanges, location: "header", location_name: "x-amz-fwd-header-accept-ranges"))
|
2718
|
+
WriteGetObjectResponseRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "x-amz-fwd-header-Cache-Control"))
|
2719
|
+
WriteGetObjectResponseRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "x-amz-fwd-header-Content-Disposition"))
|
2720
|
+
WriteGetObjectResponseRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "x-amz-fwd-header-Content-Encoding"))
|
2721
|
+
WriteGetObjectResponseRequest.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "x-amz-fwd-header-Content-Language"))
|
2722
|
+
WriteGetObjectResponseRequest.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
2723
|
+
WriteGetObjectResponseRequest.add_member(:content_range, Shapes::ShapeRef.new(shape: ContentRange, location: "header", location_name: "x-amz-fwd-header-Content-Range"))
|
2724
|
+
WriteGetObjectResponseRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "x-amz-fwd-header-Content-Type"))
|
2725
|
+
WriteGetObjectResponseRequest.add_member(:checksum_crc32, Shapes::ShapeRef.new(shape: ChecksumCRC32, location: "header", location_name: "x-amz-fwd-header-x-amz-checksum-crc32"))
|
2726
|
+
WriteGetObjectResponseRequest.add_member(:checksum_crc32c, Shapes::ShapeRef.new(shape: ChecksumCRC32C, location: "header", location_name: "x-amz-fwd-header-x-amz-checksum-crc32c"))
|
2727
|
+
WriteGetObjectResponseRequest.add_member(:checksum_sha1, Shapes::ShapeRef.new(shape: ChecksumSHA1, location: "header", location_name: "x-amz-fwd-header-x-amz-checksum-sha1"))
|
2728
|
+
WriteGetObjectResponseRequest.add_member(:checksum_sha256, Shapes::ShapeRef.new(shape: ChecksumSHA256, location: "header", location_name: "x-amz-fwd-header-x-amz-checksum-sha256"))
|
2729
|
+
WriteGetObjectResponseRequest.add_member(:delete_marker, Shapes::ShapeRef.new(shape: DeleteMarker, location: "header", location_name: "x-amz-fwd-header-x-amz-delete-marker"))
|
2730
|
+
WriteGetObjectResponseRequest.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "x-amz-fwd-header-ETag"))
|
2731
|
+
WriteGetObjectResponseRequest.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "x-amz-fwd-header-Expires"))
|
2732
|
+
WriteGetObjectResponseRequest.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-fwd-header-x-amz-expiration"))
|
2733
|
+
WriteGetObjectResponseRequest.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location: "header", location_name: "x-amz-fwd-header-Last-Modified"))
|
2734
|
+
WriteGetObjectResponseRequest.add_member(:missing_meta, Shapes::ShapeRef.new(shape: MissingMeta, location: "header", location_name: "x-amz-fwd-header-x-amz-missing-meta"))
|
2735
|
+
WriteGetObjectResponseRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
|
2736
|
+
WriteGetObjectResponseRequest.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: ObjectLockMode, location: "header", location_name: "x-amz-fwd-header-x-amz-object-lock-mode"))
|
2737
|
+
WriteGetObjectResponseRequest.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-fwd-header-x-amz-object-lock-legal-hold"))
|
2738
|
+
WriteGetObjectResponseRequest.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: ObjectLockRetainUntilDate, location: "header", location_name: "x-amz-fwd-header-x-amz-object-lock-retain-until-date"))
|
2739
|
+
WriteGetObjectResponseRequest.add_member(:parts_count, Shapes::ShapeRef.new(shape: PartsCount, location: "header", location_name: "x-amz-fwd-header-x-amz-mp-parts-count"))
|
2740
|
+
WriteGetObjectResponseRequest.add_member(:replication_status, Shapes::ShapeRef.new(shape: ReplicationStatus, location: "header", location_name: "x-amz-fwd-header-x-amz-replication-status"))
|
2741
|
+
WriteGetObjectResponseRequest.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-fwd-header-x-amz-request-charged"))
|
2742
|
+
WriteGetObjectResponseRequest.add_member(:restore, Shapes::ShapeRef.new(shape: Restore, location: "header", location_name: "x-amz-fwd-header-x-amz-restore"))
|
2743
|
+
WriteGetObjectResponseRequest.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-fwd-header-x-amz-server-side-encryption"))
|
2744
|
+
WriteGetObjectResponseRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-fwd-header-x-amz-server-side-encryption-customer-algorithm"))
|
2745
|
+
WriteGetObjectResponseRequest.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-fwd-header-x-amz-server-side-encryption-aws-kms-key-id"))
|
2746
|
+
WriteGetObjectResponseRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-fwd-header-x-amz-server-side-encryption-customer-key-MD5"))
|
2747
|
+
WriteGetObjectResponseRequest.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-fwd-header-x-amz-storage-class"))
|
2748
|
+
WriteGetObjectResponseRequest.add_member(:tag_count, Shapes::ShapeRef.new(shape: TagCount, location: "header", location_name: "x-amz-fwd-header-x-amz-tagging-count"))
|
2749
|
+
WriteGetObjectResponseRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-fwd-header-x-amz-version-id"))
|
2750
|
+
WriteGetObjectResponseRequest.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-fwd-header-x-amz-server-side-encryption-bucket-key-enabled"))
|
2751
|
+
WriteGetObjectResponseRequest.struct_class = Types::WriteGetObjectResponseRequest
|
2752
|
+
WriteGetObjectResponseRequest[:payload] = :body
|
2753
|
+
WriteGetObjectResponseRequest[:payload_member] = WriteGetObjectResponseRequest.member(:body)
|
2754
|
+
|
2432
2755
|
|
2433
2756
|
# @api private
|
2434
2757
|
API = Seahorse::Model::Api.new.tap do |api|
|
@@ -2450,7 +2773,7 @@ module Aws::S3
|
|
2450
2773
|
api.add_operation(:abort_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
|
2451
2774
|
o.name = "AbortMultipartUpload"
|
2452
2775
|
o.http_method = "DELETE"
|
2453
|
-
o.http_request_uri = "/{
|
2776
|
+
o.http_request_uri = "/{Key+}"
|
2454
2777
|
o.input = Shapes::ShapeRef.new(shape: AbortMultipartUploadRequest)
|
2455
2778
|
o.output = Shapes::ShapeRef.new(shape: AbortMultipartUploadOutput)
|
2456
2779
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchUpload)
|
@@ -2459,7 +2782,7 @@ module Aws::S3
|
|
2459
2782
|
api.add_operation(:complete_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
|
2460
2783
|
o.name = "CompleteMultipartUpload"
|
2461
2784
|
o.http_method = "POST"
|
2462
|
-
o.http_request_uri = "/{
|
2785
|
+
o.http_request_uri = "/{Key+}"
|
2463
2786
|
o.input = Shapes::ShapeRef.new(shape: CompleteMultipartUploadRequest)
|
2464
2787
|
o.output = Shapes::ShapeRef.new(shape: CompleteMultipartUploadOutput)
|
2465
2788
|
end)
|
@@ -2467,7 +2790,7 @@ module Aws::S3
|
|
2467
2790
|
api.add_operation(:copy_object, Seahorse::Model::Operation.new.tap do |o|
|
2468
2791
|
o.name = "CopyObject"
|
2469
2792
|
o.http_method = "PUT"
|
2470
|
-
o.http_request_uri = "/{
|
2793
|
+
o.http_request_uri = "/{Key+}"
|
2471
2794
|
o.input = Shapes::ShapeRef.new(shape: CopyObjectRequest)
|
2472
2795
|
o.output = Shapes::ShapeRef.new(shape: CopyObjectOutput)
|
2473
2796
|
o.errors << Shapes::ShapeRef.new(shape: ObjectNotInActiveTierError)
|
@@ -2476,7 +2799,7 @@ module Aws::S3
|
|
2476
2799
|
api.add_operation(:create_bucket, Seahorse::Model::Operation.new.tap do |o|
|
2477
2800
|
o.name = "CreateBucket"
|
2478
2801
|
o.http_method = "PUT"
|
2479
|
-
o.http_request_uri = "/
|
2802
|
+
o.http_request_uri = "/"
|
2480
2803
|
o.input = Shapes::ShapeRef.new(shape: CreateBucketRequest)
|
2481
2804
|
o.output = Shapes::ShapeRef.new(shape: CreateBucketOutput)
|
2482
2805
|
o.errors << Shapes::ShapeRef.new(shape: BucketAlreadyExists)
|
@@ -2486,15 +2809,24 @@ module Aws::S3
|
|
2486
2809
|
api.add_operation(:create_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
|
2487
2810
|
o.name = "CreateMultipartUpload"
|
2488
2811
|
o.http_method = "POST"
|
2489
|
-
o.http_request_uri = "/{
|
2812
|
+
o.http_request_uri = "/{Key+}?uploads"
|
2490
2813
|
o.input = Shapes::ShapeRef.new(shape: CreateMultipartUploadRequest)
|
2491
2814
|
o.output = Shapes::ShapeRef.new(shape: CreateMultipartUploadOutput)
|
2492
2815
|
end)
|
2493
2816
|
|
2817
|
+
api.add_operation(:create_session, Seahorse::Model::Operation.new.tap do |o|
|
2818
|
+
o.name = "CreateSession"
|
2819
|
+
o.http_method = "GET"
|
2820
|
+
o.http_request_uri = "/?session"
|
2821
|
+
o.input = Shapes::ShapeRef.new(shape: CreateSessionRequest)
|
2822
|
+
o.output = Shapes::ShapeRef.new(shape: CreateSessionOutput)
|
2823
|
+
o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
|
2824
|
+
end)
|
2825
|
+
|
2494
2826
|
api.add_operation(:delete_bucket, Seahorse::Model::Operation.new.tap do |o|
|
2495
2827
|
o.name = "DeleteBucket"
|
2496
2828
|
o.http_method = "DELETE"
|
2497
|
-
o.http_request_uri = "/
|
2829
|
+
o.http_request_uri = "/"
|
2498
2830
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketRequest)
|
2499
2831
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2500
2832
|
end)
|
@@ -2502,7 +2834,7 @@ module Aws::S3
|
|
2502
2834
|
api.add_operation(:delete_bucket_analytics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2503
2835
|
o.name = "DeleteBucketAnalyticsConfiguration"
|
2504
2836
|
o.http_method = "DELETE"
|
2505
|
-
o.http_request_uri = "
|
2837
|
+
o.http_request_uri = "/?analytics"
|
2506
2838
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketAnalyticsConfigurationRequest)
|
2507
2839
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2508
2840
|
end)
|
@@ -2510,7 +2842,7 @@ module Aws::S3
|
|
2510
2842
|
api.add_operation(:delete_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
|
2511
2843
|
o.name = "DeleteBucketCors"
|
2512
2844
|
o.http_method = "DELETE"
|
2513
|
-
o.http_request_uri = "
|
2845
|
+
o.http_request_uri = "/?cors"
|
2514
2846
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketCorsRequest)
|
2515
2847
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2516
2848
|
end)
|
@@ -2518,7 +2850,7 @@ module Aws::S3
|
|
2518
2850
|
api.add_operation(:delete_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
|
2519
2851
|
o.name = "DeleteBucketEncryption"
|
2520
2852
|
o.http_method = "DELETE"
|
2521
|
-
o.http_request_uri = "
|
2853
|
+
o.http_request_uri = "/?encryption"
|
2522
2854
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketEncryptionRequest)
|
2523
2855
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2524
2856
|
end)
|
@@ -2526,7 +2858,7 @@ module Aws::S3
|
|
2526
2858
|
api.add_operation(:delete_bucket_intelligent_tiering_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2527
2859
|
o.name = "DeleteBucketIntelligentTieringConfiguration"
|
2528
2860
|
o.http_method = "DELETE"
|
2529
|
-
o.http_request_uri = "
|
2861
|
+
o.http_request_uri = "/?intelligent-tiering"
|
2530
2862
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketIntelligentTieringConfigurationRequest)
|
2531
2863
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2532
2864
|
end)
|
@@ -2534,7 +2866,7 @@ module Aws::S3
|
|
2534
2866
|
api.add_operation(:delete_bucket_inventory_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2535
2867
|
o.name = "DeleteBucketInventoryConfiguration"
|
2536
2868
|
o.http_method = "DELETE"
|
2537
|
-
o.http_request_uri = "
|
2869
|
+
o.http_request_uri = "/?inventory"
|
2538
2870
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketInventoryConfigurationRequest)
|
2539
2871
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2540
2872
|
end)
|
@@ -2542,7 +2874,7 @@ module Aws::S3
|
|
2542
2874
|
api.add_operation(:delete_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
|
2543
2875
|
o.name = "DeleteBucketLifecycle"
|
2544
2876
|
o.http_method = "DELETE"
|
2545
|
-
o.http_request_uri = "
|
2877
|
+
o.http_request_uri = "/?lifecycle"
|
2546
2878
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketLifecycleRequest)
|
2547
2879
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2548
2880
|
end)
|
@@ -2550,7 +2882,7 @@ module Aws::S3
|
|
2550
2882
|
api.add_operation(:delete_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2551
2883
|
o.name = "DeleteBucketMetricsConfiguration"
|
2552
2884
|
o.http_method = "DELETE"
|
2553
|
-
o.http_request_uri = "
|
2885
|
+
o.http_request_uri = "/?metrics"
|
2554
2886
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketMetricsConfigurationRequest)
|
2555
2887
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2556
2888
|
end)
|
@@ -2558,7 +2890,7 @@ module Aws::S3
|
|
2558
2890
|
api.add_operation(:delete_bucket_ownership_controls, Seahorse::Model::Operation.new.tap do |o|
|
2559
2891
|
o.name = "DeleteBucketOwnershipControls"
|
2560
2892
|
o.http_method = "DELETE"
|
2561
|
-
o.http_request_uri = "
|
2893
|
+
o.http_request_uri = "/?ownershipControls"
|
2562
2894
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketOwnershipControlsRequest)
|
2563
2895
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2564
2896
|
end)
|
@@ -2566,7 +2898,7 @@ module Aws::S3
|
|
2566
2898
|
api.add_operation(:delete_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
2567
2899
|
o.name = "DeleteBucketPolicy"
|
2568
2900
|
o.http_method = "DELETE"
|
2569
|
-
o.http_request_uri = "
|
2901
|
+
o.http_request_uri = "/?policy"
|
2570
2902
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketPolicyRequest)
|
2571
2903
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2572
2904
|
end)
|
@@ -2574,7 +2906,7 @@ module Aws::S3
|
|
2574
2906
|
api.add_operation(:delete_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
|
2575
2907
|
o.name = "DeleteBucketReplication"
|
2576
2908
|
o.http_method = "DELETE"
|
2577
|
-
o.http_request_uri = "
|
2909
|
+
o.http_request_uri = "/?replication"
|
2578
2910
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketReplicationRequest)
|
2579
2911
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2580
2912
|
end)
|
@@ -2582,7 +2914,7 @@ module Aws::S3
|
|
2582
2914
|
api.add_operation(:delete_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
|
2583
2915
|
o.name = "DeleteBucketTagging"
|
2584
2916
|
o.http_method = "DELETE"
|
2585
|
-
o.http_request_uri = "
|
2917
|
+
o.http_request_uri = "/?tagging"
|
2586
2918
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketTaggingRequest)
|
2587
2919
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2588
2920
|
end)
|
@@ -2590,7 +2922,7 @@ module Aws::S3
|
|
2590
2922
|
api.add_operation(:delete_bucket_website, Seahorse::Model::Operation.new.tap do |o|
|
2591
2923
|
o.name = "DeleteBucketWebsite"
|
2592
2924
|
o.http_method = "DELETE"
|
2593
|
-
o.http_request_uri = "
|
2925
|
+
o.http_request_uri = "/?website"
|
2594
2926
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketWebsiteRequest)
|
2595
2927
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2596
2928
|
end)
|
@@ -2598,7 +2930,7 @@ module Aws::S3
|
|
2598
2930
|
api.add_operation(:delete_object, Seahorse::Model::Operation.new.tap do |o|
|
2599
2931
|
o.name = "DeleteObject"
|
2600
2932
|
o.http_method = "DELETE"
|
2601
|
-
o.http_request_uri = "/{
|
2933
|
+
o.http_request_uri = "/{Key+}"
|
2602
2934
|
o.input = Shapes::ShapeRef.new(shape: DeleteObjectRequest)
|
2603
2935
|
o.output = Shapes::ShapeRef.new(shape: DeleteObjectOutput)
|
2604
2936
|
end)
|
@@ -2606,7 +2938,7 @@ module Aws::S3
|
|
2606
2938
|
api.add_operation(:delete_object_tagging, Seahorse::Model::Operation.new.tap do |o|
|
2607
2939
|
o.name = "DeleteObjectTagging"
|
2608
2940
|
o.http_method = "DELETE"
|
2609
|
-
o.http_request_uri = "/{
|
2941
|
+
o.http_request_uri = "/{Key+}?tagging"
|
2610
2942
|
o.input = Shapes::ShapeRef.new(shape: DeleteObjectTaggingRequest)
|
2611
2943
|
o.output = Shapes::ShapeRef.new(shape: DeleteObjectTaggingOutput)
|
2612
2944
|
end)
|
@@ -2614,8 +2946,15 @@ module Aws::S3
|
|
2614
2946
|
api.add_operation(:delete_objects, Seahorse::Model::Operation.new.tap do |o|
|
2615
2947
|
o.name = "DeleteObjects"
|
2616
2948
|
o.http_method = "POST"
|
2617
|
-
o.http_request_uri = "
|
2618
|
-
o.
|
2949
|
+
o.http_request_uri = "/?delete"
|
2950
|
+
o.http_checksum = {
|
2951
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
2952
|
+
"requestChecksumRequired" => true,
|
2953
|
+
}
|
2954
|
+
o.http_checksum = {
|
2955
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
2956
|
+
"requestChecksumRequired" => true,
|
2957
|
+
}
|
2619
2958
|
o.input = Shapes::ShapeRef.new(shape: DeleteObjectsRequest)
|
2620
2959
|
o.output = Shapes::ShapeRef.new(shape: DeleteObjectsOutput)
|
2621
2960
|
end)
|
@@ -2623,7 +2962,7 @@ module Aws::S3
|
|
2623
2962
|
api.add_operation(:delete_public_access_block, Seahorse::Model::Operation.new.tap do |o|
|
2624
2963
|
o.name = "DeletePublicAccessBlock"
|
2625
2964
|
o.http_method = "DELETE"
|
2626
|
-
o.http_request_uri = "
|
2965
|
+
o.http_request_uri = "/?publicAccessBlock"
|
2627
2966
|
o.input = Shapes::ShapeRef.new(shape: DeletePublicAccessBlockRequest)
|
2628
2967
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2629
2968
|
end)
|
@@ -2631,7 +2970,7 @@ module Aws::S3
|
|
2631
2970
|
api.add_operation(:get_bucket_accelerate_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2632
2971
|
o.name = "GetBucketAccelerateConfiguration"
|
2633
2972
|
o.http_method = "GET"
|
2634
|
-
o.http_request_uri = "
|
2973
|
+
o.http_request_uri = "/?accelerate"
|
2635
2974
|
o.input = Shapes::ShapeRef.new(shape: GetBucketAccelerateConfigurationRequest)
|
2636
2975
|
o.output = Shapes::ShapeRef.new(shape: GetBucketAccelerateConfigurationOutput)
|
2637
2976
|
end)
|
@@ -2639,7 +2978,7 @@ module Aws::S3
|
|
2639
2978
|
api.add_operation(:get_bucket_acl, Seahorse::Model::Operation.new.tap do |o|
|
2640
2979
|
o.name = "GetBucketAcl"
|
2641
2980
|
o.http_method = "GET"
|
2642
|
-
o.http_request_uri = "
|
2981
|
+
o.http_request_uri = "/?acl"
|
2643
2982
|
o.input = Shapes::ShapeRef.new(shape: GetBucketAclRequest)
|
2644
2983
|
o.output = Shapes::ShapeRef.new(shape: GetBucketAclOutput)
|
2645
2984
|
end)
|
@@ -2647,7 +2986,7 @@ module Aws::S3
|
|
2647
2986
|
api.add_operation(:get_bucket_analytics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2648
2987
|
o.name = "GetBucketAnalyticsConfiguration"
|
2649
2988
|
o.http_method = "GET"
|
2650
|
-
o.http_request_uri = "
|
2989
|
+
o.http_request_uri = "/?analytics"
|
2651
2990
|
o.input = Shapes::ShapeRef.new(shape: GetBucketAnalyticsConfigurationRequest)
|
2652
2991
|
o.output = Shapes::ShapeRef.new(shape: GetBucketAnalyticsConfigurationOutput)
|
2653
2992
|
end)
|
@@ -2655,7 +2994,7 @@ module Aws::S3
|
|
2655
2994
|
api.add_operation(:get_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
|
2656
2995
|
o.name = "GetBucketCors"
|
2657
2996
|
o.http_method = "GET"
|
2658
|
-
o.http_request_uri = "
|
2997
|
+
o.http_request_uri = "/?cors"
|
2659
2998
|
o.input = Shapes::ShapeRef.new(shape: GetBucketCorsRequest)
|
2660
2999
|
o.output = Shapes::ShapeRef.new(shape: GetBucketCorsOutput)
|
2661
3000
|
end)
|
@@ -2663,7 +3002,7 @@ module Aws::S3
|
|
2663
3002
|
api.add_operation(:get_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
|
2664
3003
|
o.name = "GetBucketEncryption"
|
2665
3004
|
o.http_method = "GET"
|
2666
|
-
o.http_request_uri = "
|
3005
|
+
o.http_request_uri = "/?encryption"
|
2667
3006
|
o.input = Shapes::ShapeRef.new(shape: GetBucketEncryptionRequest)
|
2668
3007
|
o.output = Shapes::ShapeRef.new(shape: GetBucketEncryptionOutput)
|
2669
3008
|
end)
|
@@ -2671,7 +3010,7 @@ module Aws::S3
|
|
2671
3010
|
api.add_operation(:get_bucket_intelligent_tiering_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2672
3011
|
o.name = "GetBucketIntelligentTieringConfiguration"
|
2673
3012
|
o.http_method = "GET"
|
2674
|
-
o.http_request_uri = "
|
3013
|
+
o.http_request_uri = "/?intelligent-tiering"
|
2675
3014
|
o.input = Shapes::ShapeRef.new(shape: GetBucketIntelligentTieringConfigurationRequest)
|
2676
3015
|
o.output = Shapes::ShapeRef.new(shape: GetBucketIntelligentTieringConfigurationOutput)
|
2677
3016
|
end)
|
@@ -2679,7 +3018,7 @@ module Aws::S3
|
|
2679
3018
|
api.add_operation(:get_bucket_inventory_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2680
3019
|
o.name = "GetBucketInventoryConfiguration"
|
2681
3020
|
o.http_method = "GET"
|
2682
|
-
o.http_request_uri = "
|
3021
|
+
o.http_request_uri = "/?inventory"
|
2683
3022
|
o.input = Shapes::ShapeRef.new(shape: GetBucketInventoryConfigurationRequest)
|
2684
3023
|
o.output = Shapes::ShapeRef.new(shape: GetBucketInventoryConfigurationOutput)
|
2685
3024
|
end)
|
@@ -2687,7 +3026,7 @@ module Aws::S3
|
|
2687
3026
|
api.add_operation(:get_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
|
2688
3027
|
o.name = "GetBucketLifecycle"
|
2689
3028
|
o.http_method = "GET"
|
2690
|
-
o.http_request_uri = "
|
3029
|
+
o.http_request_uri = "/?lifecycle"
|
2691
3030
|
o.deprecated = true
|
2692
3031
|
o.input = Shapes::ShapeRef.new(shape: GetBucketLifecycleRequest)
|
2693
3032
|
o.output = Shapes::ShapeRef.new(shape: GetBucketLifecycleOutput)
|
@@ -2696,7 +3035,7 @@ module Aws::S3
|
|
2696
3035
|
api.add_operation(:get_bucket_lifecycle_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2697
3036
|
o.name = "GetBucketLifecycleConfiguration"
|
2698
3037
|
o.http_method = "GET"
|
2699
|
-
o.http_request_uri = "
|
3038
|
+
o.http_request_uri = "/?lifecycle"
|
2700
3039
|
o.input = Shapes::ShapeRef.new(shape: GetBucketLifecycleConfigurationRequest)
|
2701
3040
|
o.output = Shapes::ShapeRef.new(shape: GetBucketLifecycleConfigurationOutput)
|
2702
3041
|
end)
|
@@ -2704,7 +3043,7 @@ module Aws::S3
|
|
2704
3043
|
api.add_operation(:get_bucket_location, Seahorse::Model::Operation.new.tap do |o|
|
2705
3044
|
o.name = "GetBucketLocation"
|
2706
3045
|
o.http_method = "GET"
|
2707
|
-
o.http_request_uri = "
|
3046
|
+
o.http_request_uri = "/?location"
|
2708
3047
|
o.input = Shapes::ShapeRef.new(shape: GetBucketLocationRequest)
|
2709
3048
|
o.output = Shapes::ShapeRef.new(shape: GetBucketLocationOutput)
|
2710
3049
|
end)
|
@@ -2712,7 +3051,7 @@ module Aws::S3
|
|
2712
3051
|
api.add_operation(:get_bucket_logging, Seahorse::Model::Operation.new.tap do |o|
|
2713
3052
|
o.name = "GetBucketLogging"
|
2714
3053
|
o.http_method = "GET"
|
2715
|
-
o.http_request_uri = "
|
3054
|
+
o.http_request_uri = "/?logging"
|
2716
3055
|
o.input = Shapes::ShapeRef.new(shape: GetBucketLoggingRequest)
|
2717
3056
|
o.output = Shapes::ShapeRef.new(shape: GetBucketLoggingOutput)
|
2718
3057
|
end)
|
@@ -2720,7 +3059,7 @@ module Aws::S3
|
|
2720
3059
|
api.add_operation(:get_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2721
3060
|
o.name = "GetBucketMetricsConfiguration"
|
2722
3061
|
o.http_method = "GET"
|
2723
|
-
o.http_request_uri = "
|
3062
|
+
o.http_request_uri = "/?metrics"
|
2724
3063
|
o.input = Shapes::ShapeRef.new(shape: GetBucketMetricsConfigurationRequest)
|
2725
3064
|
o.output = Shapes::ShapeRef.new(shape: GetBucketMetricsConfigurationOutput)
|
2726
3065
|
end)
|
@@ -2728,7 +3067,7 @@ module Aws::S3
|
|
2728
3067
|
api.add_operation(:get_bucket_notification, Seahorse::Model::Operation.new.tap do |o|
|
2729
3068
|
o.name = "GetBucketNotification"
|
2730
3069
|
o.http_method = "GET"
|
2731
|
-
o.http_request_uri = "
|
3070
|
+
o.http_request_uri = "/?notification"
|
2732
3071
|
o.deprecated = true
|
2733
3072
|
o.input = Shapes::ShapeRef.new(shape: GetBucketNotificationConfigurationRequest)
|
2734
3073
|
o.output = Shapes::ShapeRef.new(shape: NotificationConfigurationDeprecated)
|
@@ -2737,7 +3076,7 @@ module Aws::S3
|
|
2737
3076
|
api.add_operation(:get_bucket_notification_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2738
3077
|
o.name = "GetBucketNotificationConfiguration"
|
2739
3078
|
o.http_method = "GET"
|
2740
|
-
o.http_request_uri = "
|
3079
|
+
o.http_request_uri = "/?notification"
|
2741
3080
|
o.input = Shapes::ShapeRef.new(shape: GetBucketNotificationConfigurationRequest)
|
2742
3081
|
o.output = Shapes::ShapeRef.new(shape: NotificationConfiguration)
|
2743
3082
|
end)
|
@@ -2745,7 +3084,7 @@ module Aws::S3
|
|
2745
3084
|
api.add_operation(:get_bucket_ownership_controls, Seahorse::Model::Operation.new.tap do |o|
|
2746
3085
|
o.name = "GetBucketOwnershipControls"
|
2747
3086
|
o.http_method = "GET"
|
2748
|
-
o.http_request_uri = "
|
3087
|
+
o.http_request_uri = "/?ownershipControls"
|
2749
3088
|
o.input = Shapes::ShapeRef.new(shape: GetBucketOwnershipControlsRequest)
|
2750
3089
|
o.output = Shapes::ShapeRef.new(shape: GetBucketOwnershipControlsOutput)
|
2751
3090
|
end)
|
@@ -2753,7 +3092,7 @@ module Aws::S3
|
|
2753
3092
|
api.add_operation(:get_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
2754
3093
|
o.name = "GetBucketPolicy"
|
2755
3094
|
o.http_method = "GET"
|
2756
|
-
o.http_request_uri = "
|
3095
|
+
o.http_request_uri = "/?policy"
|
2757
3096
|
o.input = Shapes::ShapeRef.new(shape: GetBucketPolicyRequest)
|
2758
3097
|
o.output = Shapes::ShapeRef.new(shape: GetBucketPolicyOutput)
|
2759
3098
|
end)
|
@@ -2761,7 +3100,7 @@ module Aws::S3
|
|
2761
3100
|
api.add_operation(:get_bucket_policy_status, Seahorse::Model::Operation.new.tap do |o|
|
2762
3101
|
o.name = "GetBucketPolicyStatus"
|
2763
3102
|
o.http_method = "GET"
|
2764
|
-
o.http_request_uri = "
|
3103
|
+
o.http_request_uri = "/?policyStatus"
|
2765
3104
|
o.input = Shapes::ShapeRef.new(shape: GetBucketPolicyStatusRequest)
|
2766
3105
|
o.output = Shapes::ShapeRef.new(shape: GetBucketPolicyStatusOutput)
|
2767
3106
|
end)
|
@@ -2769,7 +3108,7 @@ module Aws::S3
|
|
2769
3108
|
api.add_operation(:get_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
|
2770
3109
|
o.name = "GetBucketReplication"
|
2771
3110
|
o.http_method = "GET"
|
2772
|
-
o.http_request_uri = "
|
3111
|
+
o.http_request_uri = "/?replication"
|
2773
3112
|
o.input = Shapes::ShapeRef.new(shape: GetBucketReplicationRequest)
|
2774
3113
|
o.output = Shapes::ShapeRef.new(shape: GetBucketReplicationOutput)
|
2775
3114
|
end)
|
@@ -2777,7 +3116,7 @@ module Aws::S3
|
|
2777
3116
|
api.add_operation(:get_bucket_request_payment, Seahorse::Model::Operation.new.tap do |o|
|
2778
3117
|
o.name = "GetBucketRequestPayment"
|
2779
3118
|
o.http_method = "GET"
|
2780
|
-
o.http_request_uri = "
|
3119
|
+
o.http_request_uri = "/?requestPayment"
|
2781
3120
|
o.input = Shapes::ShapeRef.new(shape: GetBucketRequestPaymentRequest)
|
2782
3121
|
o.output = Shapes::ShapeRef.new(shape: GetBucketRequestPaymentOutput)
|
2783
3122
|
end)
|
@@ -2785,7 +3124,7 @@ module Aws::S3
|
|
2785
3124
|
api.add_operation(:get_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
|
2786
3125
|
o.name = "GetBucketTagging"
|
2787
3126
|
o.http_method = "GET"
|
2788
|
-
o.http_request_uri = "
|
3127
|
+
o.http_request_uri = "/?tagging"
|
2789
3128
|
o.input = Shapes::ShapeRef.new(shape: GetBucketTaggingRequest)
|
2790
3129
|
o.output = Shapes::ShapeRef.new(shape: GetBucketTaggingOutput)
|
2791
3130
|
end)
|
@@ -2793,7 +3132,7 @@ module Aws::S3
|
|
2793
3132
|
api.add_operation(:get_bucket_versioning, Seahorse::Model::Operation.new.tap do |o|
|
2794
3133
|
o.name = "GetBucketVersioning"
|
2795
3134
|
o.http_method = "GET"
|
2796
|
-
o.http_request_uri = "
|
3135
|
+
o.http_request_uri = "/?versioning"
|
2797
3136
|
o.input = Shapes::ShapeRef.new(shape: GetBucketVersioningRequest)
|
2798
3137
|
o.output = Shapes::ShapeRef.new(shape: GetBucketVersioningOutput)
|
2799
3138
|
end)
|
@@ -2801,7 +3140,7 @@ module Aws::S3
|
|
2801
3140
|
api.add_operation(:get_bucket_website, Seahorse::Model::Operation.new.tap do |o|
|
2802
3141
|
o.name = "GetBucketWebsite"
|
2803
3142
|
o.http_method = "GET"
|
2804
|
-
o.http_request_uri = "
|
3143
|
+
o.http_request_uri = "/?website"
|
2805
3144
|
o.input = Shapes::ShapeRef.new(shape: GetBucketWebsiteRequest)
|
2806
3145
|
o.output = Shapes::ShapeRef.new(shape: GetBucketWebsiteOutput)
|
2807
3146
|
end)
|
@@ -2809,7 +3148,15 @@ module Aws::S3
|
|
2809
3148
|
api.add_operation(:get_object, Seahorse::Model::Operation.new.tap do |o|
|
2810
3149
|
o.name = "GetObject"
|
2811
3150
|
o.http_method = "GET"
|
2812
|
-
o.http_request_uri = "/{
|
3151
|
+
o.http_request_uri = "/{Key+}"
|
3152
|
+
o.http_checksum = {
|
3153
|
+
"requestValidationModeMember" => "checksum_mode",
|
3154
|
+
"responseAlgorithms" => ["CRC32", "CRC32C", "SHA256", "SHA1"],
|
3155
|
+
}
|
3156
|
+
o.http_checksum = {
|
3157
|
+
"requestValidationModeMember" => "checksum_mode",
|
3158
|
+
"responseAlgorithms" => ["CRC32", "CRC32C", "SHA256", "SHA1"],
|
3159
|
+
}
|
2813
3160
|
o.input = Shapes::ShapeRef.new(shape: GetObjectRequest)
|
2814
3161
|
o.output = Shapes::ShapeRef.new(shape: GetObjectOutput)
|
2815
3162
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
@@ -2819,16 +3166,25 @@ module Aws::S3
|
|
2819
3166
|
api.add_operation(:get_object_acl, Seahorse::Model::Operation.new.tap do |o|
|
2820
3167
|
o.name = "GetObjectAcl"
|
2821
3168
|
o.http_method = "GET"
|
2822
|
-
o.http_request_uri = "/{
|
3169
|
+
o.http_request_uri = "/{Key+}?acl"
|
2823
3170
|
o.input = Shapes::ShapeRef.new(shape: GetObjectAclRequest)
|
2824
3171
|
o.output = Shapes::ShapeRef.new(shape: GetObjectAclOutput)
|
2825
3172
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
2826
3173
|
end)
|
2827
3174
|
|
3175
|
+
api.add_operation(:get_object_attributes, Seahorse::Model::Operation.new.tap do |o|
|
3176
|
+
o.name = "GetObjectAttributes"
|
3177
|
+
o.http_method = "GET"
|
3178
|
+
o.http_request_uri = "/{Key+}?attributes"
|
3179
|
+
o.input = Shapes::ShapeRef.new(shape: GetObjectAttributesRequest)
|
3180
|
+
o.output = Shapes::ShapeRef.new(shape: GetObjectAttributesOutput)
|
3181
|
+
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
3182
|
+
end)
|
3183
|
+
|
2828
3184
|
api.add_operation(:get_object_legal_hold, Seahorse::Model::Operation.new.tap do |o|
|
2829
3185
|
o.name = "GetObjectLegalHold"
|
2830
3186
|
o.http_method = "GET"
|
2831
|
-
o.http_request_uri = "/{
|
3187
|
+
o.http_request_uri = "/{Key+}?legal-hold"
|
2832
3188
|
o.input = Shapes::ShapeRef.new(shape: GetObjectLegalHoldRequest)
|
2833
3189
|
o.output = Shapes::ShapeRef.new(shape: GetObjectLegalHoldOutput)
|
2834
3190
|
end)
|
@@ -2836,7 +3192,7 @@ module Aws::S3
|
|
2836
3192
|
api.add_operation(:get_object_lock_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2837
3193
|
o.name = "GetObjectLockConfiguration"
|
2838
3194
|
o.http_method = "GET"
|
2839
|
-
o.http_request_uri = "
|
3195
|
+
o.http_request_uri = "/?object-lock"
|
2840
3196
|
o.input = Shapes::ShapeRef.new(shape: GetObjectLockConfigurationRequest)
|
2841
3197
|
o.output = Shapes::ShapeRef.new(shape: GetObjectLockConfigurationOutput)
|
2842
3198
|
end)
|
@@ -2844,7 +3200,7 @@ module Aws::S3
|
|
2844
3200
|
api.add_operation(:get_object_retention, Seahorse::Model::Operation.new.tap do |o|
|
2845
3201
|
o.name = "GetObjectRetention"
|
2846
3202
|
o.http_method = "GET"
|
2847
|
-
o.http_request_uri = "/{
|
3203
|
+
o.http_request_uri = "/{Key+}?retention"
|
2848
3204
|
o.input = Shapes::ShapeRef.new(shape: GetObjectRetentionRequest)
|
2849
3205
|
o.output = Shapes::ShapeRef.new(shape: GetObjectRetentionOutput)
|
2850
3206
|
end)
|
@@ -2852,7 +3208,7 @@ module Aws::S3
|
|
2852
3208
|
api.add_operation(:get_object_tagging, Seahorse::Model::Operation.new.tap do |o|
|
2853
3209
|
o.name = "GetObjectTagging"
|
2854
3210
|
o.http_method = "GET"
|
2855
|
-
o.http_request_uri = "/{
|
3211
|
+
o.http_request_uri = "/{Key+}?tagging"
|
2856
3212
|
o.input = Shapes::ShapeRef.new(shape: GetObjectTaggingRequest)
|
2857
3213
|
o.output = Shapes::ShapeRef.new(shape: GetObjectTaggingOutput)
|
2858
3214
|
end)
|
@@ -2860,7 +3216,7 @@ module Aws::S3
|
|
2860
3216
|
api.add_operation(:get_object_torrent, Seahorse::Model::Operation.new.tap do |o|
|
2861
3217
|
o.name = "GetObjectTorrent"
|
2862
3218
|
o.http_method = "GET"
|
2863
|
-
o.http_request_uri = "/{
|
3219
|
+
o.http_request_uri = "/{Key+}?torrent"
|
2864
3220
|
o.input = Shapes::ShapeRef.new(shape: GetObjectTorrentRequest)
|
2865
3221
|
o.output = Shapes::ShapeRef.new(shape: GetObjectTorrentOutput)
|
2866
3222
|
end)
|
@@ -2868,7 +3224,7 @@ module Aws::S3
|
|
2868
3224
|
api.add_operation(:get_public_access_block, Seahorse::Model::Operation.new.tap do |o|
|
2869
3225
|
o.name = "GetPublicAccessBlock"
|
2870
3226
|
o.http_method = "GET"
|
2871
|
-
o.http_request_uri = "
|
3227
|
+
o.http_request_uri = "/?publicAccessBlock"
|
2872
3228
|
o.input = Shapes::ShapeRef.new(shape: GetPublicAccessBlockRequest)
|
2873
3229
|
o.output = Shapes::ShapeRef.new(shape: GetPublicAccessBlockOutput)
|
2874
3230
|
end)
|
@@ -2876,16 +3232,16 @@ module Aws::S3
|
|
2876
3232
|
api.add_operation(:head_bucket, Seahorse::Model::Operation.new.tap do |o|
|
2877
3233
|
o.name = "HeadBucket"
|
2878
3234
|
o.http_method = "HEAD"
|
2879
|
-
o.http_request_uri = "/
|
3235
|
+
o.http_request_uri = "/"
|
2880
3236
|
o.input = Shapes::ShapeRef.new(shape: HeadBucketRequest)
|
2881
|
-
o.output = Shapes::ShapeRef.new(shape:
|
3237
|
+
o.output = Shapes::ShapeRef.new(shape: HeadBucketOutput)
|
2882
3238
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
|
2883
3239
|
end)
|
2884
3240
|
|
2885
3241
|
api.add_operation(:head_object, Seahorse::Model::Operation.new.tap do |o|
|
2886
3242
|
o.name = "HeadObject"
|
2887
3243
|
o.http_method = "HEAD"
|
2888
|
-
o.http_request_uri = "/{
|
3244
|
+
o.http_request_uri = "/{Key+}"
|
2889
3245
|
o.input = Shapes::ShapeRef.new(shape: HeadObjectRequest)
|
2890
3246
|
o.output = Shapes::ShapeRef.new(shape: HeadObjectOutput)
|
2891
3247
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
@@ -2894,7 +3250,7 @@ module Aws::S3
|
|
2894
3250
|
api.add_operation(:list_bucket_analytics_configurations, Seahorse::Model::Operation.new.tap do |o|
|
2895
3251
|
o.name = "ListBucketAnalyticsConfigurations"
|
2896
3252
|
o.http_method = "GET"
|
2897
|
-
o.http_request_uri = "
|
3253
|
+
o.http_request_uri = "/?analytics"
|
2898
3254
|
o.input = Shapes::ShapeRef.new(shape: ListBucketAnalyticsConfigurationsRequest)
|
2899
3255
|
o.output = Shapes::ShapeRef.new(shape: ListBucketAnalyticsConfigurationsOutput)
|
2900
3256
|
end)
|
@@ -2902,7 +3258,7 @@ module Aws::S3
|
|
2902
3258
|
api.add_operation(:list_bucket_intelligent_tiering_configurations, Seahorse::Model::Operation.new.tap do |o|
|
2903
3259
|
o.name = "ListBucketIntelligentTieringConfigurations"
|
2904
3260
|
o.http_method = "GET"
|
2905
|
-
o.http_request_uri = "
|
3261
|
+
o.http_request_uri = "/?intelligent-tiering"
|
2906
3262
|
o.input = Shapes::ShapeRef.new(shape: ListBucketIntelligentTieringConfigurationsRequest)
|
2907
3263
|
o.output = Shapes::ShapeRef.new(shape: ListBucketIntelligentTieringConfigurationsOutput)
|
2908
3264
|
end)
|
@@ -2910,7 +3266,7 @@ module Aws::S3
|
|
2910
3266
|
api.add_operation(:list_bucket_inventory_configurations, Seahorse::Model::Operation.new.tap do |o|
|
2911
3267
|
o.name = "ListBucketInventoryConfigurations"
|
2912
3268
|
o.http_method = "GET"
|
2913
|
-
o.http_request_uri = "
|
3269
|
+
o.http_request_uri = "/?inventory"
|
2914
3270
|
o.input = Shapes::ShapeRef.new(shape: ListBucketInventoryConfigurationsRequest)
|
2915
3271
|
o.output = Shapes::ShapeRef.new(shape: ListBucketInventoryConfigurationsOutput)
|
2916
3272
|
end)
|
@@ -2918,7 +3274,7 @@ module Aws::S3
|
|
2918
3274
|
api.add_operation(:list_bucket_metrics_configurations, Seahorse::Model::Operation.new.tap do |o|
|
2919
3275
|
o.name = "ListBucketMetricsConfigurations"
|
2920
3276
|
o.http_method = "GET"
|
2921
|
-
o.http_request_uri = "
|
3277
|
+
o.http_request_uri = "/?metrics"
|
2922
3278
|
o.input = Shapes::ShapeRef.new(shape: ListBucketMetricsConfigurationsRequest)
|
2923
3279
|
o.output = Shapes::ShapeRef.new(shape: ListBucketMetricsConfigurationsOutput)
|
2924
3280
|
end)
|
@@ -2931,10 +3287,24 @@ module Aws::S3
|
|
2931
3287
|
o.output = Shapes::ShapeRef.new(shape: ListBucketsOutput)
|
2932
3288
|
end)
|
2933
3289
|
|
3290
|
+
api.add_operation(:list_directory_buckets, Seahorse::Model::Operation.new.tap do |o|
|
3291
|
+
o.name = "ListDirectoryBuckets"
|
3292
|
+
o.http_method = "GET"
|
3293
|
+
o.http_request_uri = "/"
|
3294
|
+
o.input = Shapes::ShapeRef.new(shape: ListDirectoryBucketsRequest)
|
3295
|
+
o.output = Shapes::ShapeRef.new(shape: ListDirectoryBucketsOutput)
|
3296
|
+
o[:pager] = Aws::Pager.new(
|
3297
|
+
limit_key: "max_directory_buckets",
|
3298
|
+
tokens: {
|
3299
|
+
"continuation_token" => "continuation_token"
|
3300
|
+
}
|
3301
|
+
)
|
3302
|
+
end)
|
3303
|
+
|
2934
3304
|
api.add_operation(:list_multipart_uploads, Seahorse::Model::Operation.new.tap do |o|
|
2935
3305
|
o.name = "ListMultipartUploads"
|
2936
3306
|
o.http_method = "GET"
|
2937
|
-
o.http_request_uri = "
|
3307
|
+
o.http_request_uri = "/?uploads"
|
2938
3308
|
o.input = Shapes::ShapeRef.new(shape: ListMultipartUploadsRequest)
|
2939
3309
|
o.output = Shapes::ShapeRef.new(shape: ListMultipartUploadsOutput)
|
2940
3310
|
o[:pager] = Aws::Pager.new(
|
@@ -2950,7 +3320,7 @@ module Aws::S3
|
|
2950
3320
|
api.add_operation(:list_object_versions, Seahorse::Model::Operation.new.tap do |o|
|
2951
3321
|
o.name = "ListObjectVersions"
|
2952
3322
|
o.http_method = "GET"
|
2953
|
-
o.http_request_uri = "
|
3323
|
+
o.http_request_uri = "/?versions"
|
2954
3324
|
o.input = Shapes::ShapeRef.new(shape: ListObjectVersionsRequest)
|
2955
3325
|
o.output = Shapes::ShapeRef.new(shape: ListObjectVersionsOutput)
|
2956
3326
|
o[:pager] = Aws::Pager.new(
|
@@ -2966,7 +3336,7 @@ module Aws::S3
|
|
2966
3336
|
api.add_operation(:list_objects, Seahorse::Model::Operation.new.tap do |o|
|
2967
3337
|
o.name = "ListObjects"
|
2968
3338
|
o.http_method = "GET"
|
2969
|
-
o.http_request_uri = "/
|
3339
|
+
o.http_request_uri = "/"
|
2970
3340
|
o.input = Shapes::ShapeRef.new(shape: ListObjectsRequest)
|
2971
3341
|
o.output = Shapes::ShapeRef.new(shape: ListObjectsOutput)
|
2972
3342
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
|
@@ -2982,7 +3352,7 @@ module Aws::S3
|
|
2982
3352
|
api.add_operation(:list_objects_v2, Seahorse::Model::Operation.new.tap do |o|
|
2983
3353
|
o.name = "ListObjectsV2"
|
2984
3354
|
o.http_method = "GET"
|
2985
|
-
o.http_request_uri = "
|
3355
|
+
o.http_request_uri = "/?list-type=2"
|
2986
3356
|
o.input = Shapes::ShapeRef.new(shape: ListObjectsV2Request)
|
2987
3357
|
o.output = Shapes::ShapeRef.new(shape: ListObjectsV2Output)
|
2988
3358
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
|
@@ -2997,7 +3367,7 @@ module Aws::S3
|
|
2997
3367
|
api.add_operation(:list_parts, Seahorse::Model::Operation.new.tap do |o|
|
2998
3368
|
o.name = "ListParts"
|
2999
3369
|
o.http_method = "GET"
|
3000
|
-
o.http_request_uri = "/{
|
3370
|
+
o.http_request_uri = "/{Key+}"
|
3001
3371
|
o.input = Shapes::ShapeRef.new(shape: ListPartsRequest)
|
3002
3372
|
o.output = Shapes::ShapeRef.new(shape: ListPartsOutput)
|
3003
3373
|
o[:pager] = Aws::Pager.new(
|
@@ -3012,7 +3382,15 @@ module Aws::S3
|
|
3012
3382
|
api.add_operation(:put_bucket_accelerate_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3013
3383
|
o.name = "PutBucketAccelerateConfiguration"
|
3014
3384
|
o.http_method = "PUT"
|
3015
|
-
o.http_request_uri = "
|
3385
|
+
o.http_request_uri = "/?accelerate"
|
3386
|
+
o.http_checksum = {
|
3387
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3388
|
+
"requestChecksumRequired" => false,
|
3389
|
+
}
|
3390
|
+
o.http_checksum = {
|
3391
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3392
|
+
"requestChecksumRequired" => false,
|
3393
|
+
}
|
3016
3394
|
o.input = Shapes::ShapeRef.new(shape: PutBucketAccelerateConfigurationRequest)
|
3017
3395
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3018
3396
|
end)
|
@@ -3020,8 +3398,15 @@ module Aws::S3
|
|
3020
3398
|
api.add_operation(:put_bucket_acl, Seahorse::Model::Operation.new.tap do |o|
|
3021
3399
|
o.name = "PutBucketAcl"
|
3022
3400
|
o.http_method = "PUT"
|
3023
|
-
o.http_request_uri = "
|
3024
|
-
o.
|
3401
|
+
o.http_request_uri = "/?acl"
|
3402
|
+
o.http_checksum = {
|
3403
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3404
|
+
"requestChecksumRequired" => true,
|
3405
|
+
}
|
3406
|
+
o.http_checksum = {
|
3407
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3408
|
+
"requestChecksumRequired" => true,
|
3409
|
+
}
|
3025
3410
|
o.input = Shapes::ShapeRef.new(shape: PutBucketAclRequest)
|
3026
3411
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3027
3412
|
end)
|
@@ -3029,7 +3414,7 @@ module Aws::S3
|
|
3029
3414
|
api.add_operation(:put_bucket_analytics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3030
3415
|
o.name = "PutBucketAnalyticsConfiguration"
|
3031
3416
|
o.http_method = "PUT"
|
3032
|
-
o.http_request_uri = "
|
3417
|
+
o.http_request_uri = "/?analytics"
|
3033
3418
|
o.input = Shapes::ShapeRef.new(shape: PutBucketAnalyticsConfigurationRequest)
|
3034
3419
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3035
3420
|
end)
|
@@ -3037,8 +3422,15 @@ module Aws::S3
|
|
3037
3422
|
api.add_operation(:put_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
|
3038
3423
|
o.name = "PutBucketCors"
|
3039
3424
|
o.http_method = "PUT"
|
3040
|
-
o.http_request_uri = "
|
3041
|
-
o.
|
3425
|
+
o.http_request_uri = "/?cors"
|
3426
|
+
o.http_checksum = {
|
3427
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3428
|
+
"requestChecksumRequired" => true,
|
3429
|
+
}
|
3430
|
+
o.http_checksum = {
|
3431
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3432
|
+
"requestChecksumRequired" => true,
|
3433
|
+
}
|
3042
3434
|
o.input = Shapes::ShapeRef.new(shape: PutBucketCorsRequest)
|
3043
3435
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3044
3436
|
end)
|
@@ -3046,8 +3438,15 @@ module Aws::S3
|
|
3046
3438
|
api.add_operation(:put_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
|
3047
3439
|
o.name = "PutBucketEncryption"
|
3048
3440
|
o.http_method = "PUT"
|
3049
|
-
o.http_request_uri = "
|
3050
|
-
o.
|
3441
|
+
o.http_request_uri = "/?encryption"
|
3442
|
+
o.http_checksum = {
|
3443
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3444
|
+
"requestChecksumRequired" => true,
|
3445
|
+
}
|
3446
|
+
o.http_checksum = {
|
3447
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3448
|
+
"requestChecksumRequired" => true,
|
3449
|
+
}
|
3051
3450
|
o.input = Shapes::ShapeRef.new(shape: PutBucketEncryptionRequest)
|
3052
3451
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3053
3452
|
end)
|
@@ -3055,7 +3454,7 @@ module Aws::S3
|
|
3055
3454
|
api.add_operation(:put_bucket_intelligent_tiering_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3056
3455
|
o.name = "PutBucketIntelligentTieringConfiguration"
|
3057
3456
|
o.http_method = "PUT"
|
3058
|
-
o.http_request_uri = "
|
3457
|
+
o.http_request_uri = "/?intelligent-tiering"
|
3059
3458
|
o.input = Shapes::ShapeRef.new(shape: PutBucketIntelligentTieringConfigurationRequest)
|
3060
3459
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3061
3460
|
end)
|
@@ -3063,7 +3462,7 @@ module Aws::S3
|
|
3063
3462
|
api.add_operation(:put_bucket_inventory_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3064
3463
|
o.name = "PutBucketInventoryConfiguration"
|
3065
3464
|
o.http_method = "PUT"
|
3066
|
-
o.http_request_uri = "
|
3465
|
+
o.http_request_uri = "/?inventory"
|
3067
3466
|
o.input = Shapes::ShapeRef.new(shape: PutBucketInventoryConfigurationRequest)
|
3068
3467
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3069
3468
|
end)
|
@@ -3071,8 +3470,15 @@ module Aws::S3
|
|
3071
3470
|
api.add_operation(:put_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
|
3072
3471
|
o.name = "PutBucketLifecycle"
|
3073
3472
|
o.http_method = "PUT"
|
3074
|
-
o.http_request_uri = "
|
3075
|
-
o.
|
3473
|
+
o.http_request_uri = "/?lifecycle"
|
3474
|
+
o.http_checksum = {
|
3475
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3476
|
+
"requestChecksumRequired" => true,
|
3477
|
+
}
|
3478
|
+
o.http_checksum = {
|
3479
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3480
|
+
"requestChecksumRequired" => true,
|
3481
|
+
}
|
3076
3482
|
o.deprecated = true
|
3077
3483
|
o.input = Shapes::ShapeRef.new(shape: PutBucketLifecycleRequest)
|
3078
3484
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
@@ -3081,8 +3487,15 @@ module Aws::S3
|
|
3081
3487
|
api.add_operation(:put_bucket_lifecycle_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3082
3488
|
o.name = "PutBucketLifecycleConfiguration"
|
3083
3489
|
o.http_method = "PUT"
|
3084
|
-
o.http_request_uri = "
|
3085
|
-
o.
|
3490
|
+
o.http_request_uri = "/?lifecycle"
|
3491
|
+
o.http_checksum = {
|
3492
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3493
|
+
"requestChecksumRequired" => true,
|
3494
|
+
}
|
3495
|
+
o.http_checksum = {
|
3496
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3497
|
+
"requestChecksumRequired" => true,
|
3498
|
+
}
|
3086
3499
|
o.input = Shapes::ShapeRef.new(shape: PutBucketLifecycleConfigurationRequest)
|
3087
3500
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3088
3501
|
end)
|
@@ -3090,8 +3503,15 @@ module Aws::S3
|
|
3090
3503
|
api.add_operation(:put_bucket_logging, Seahorse::Model::Operation.new.tap do |o|
|
3091
3504
|
o.name = "PutBucketLogging"
|
3092
3505
|
o.http_method = "PUT"
|
3093
|
-
o.http_request_uri = "
|
3094
|
-
o.
|
3506
|
+
o.http_request_uri = "/?logging"
|
3507
|
+
o.http_checksum = {
|
3508
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3509
|
+
"requestChecksumRequired" => true,
|
3510
|
+
}
|
3511
|
+
o.http_checksum = {
|
3512
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3513
|
+
"requestChecksumRequired" => true,
|
3514
|
+
}
|
3095
3515
|
o.input = Shapes::ShapeRef.new(shape: PutBucketLoggingRequest)
|
3096
3516
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3097
3517
|
end)
|
@@ -3099,7 +3519,7 @@ module Aws::S3
|
|
3099
3519
|
api.add_operation(:put_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3100
3520
|
o.name = "PutBucketMetricsConfiguration"
|
3101
3521
|
o.http_method = "PUT"
|
3102
|
-
o.http_request_uri = "
|
3522
|
+
o.http_request_uri = "/?metrics"
|
3103
3523
|
o.input = Shapes::ShapeRef.new(shape: PutBucketMetricsConfigurationRequest)
|
3104
3524
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3105
3525
|
end)
|
@@ -3107,8 +3527,15 @@ module Aws::S3
|
|
3107
3527
|
api.add_operation(:put_bucket_notification, Seahorse::Model::Operation.new.tap do |o|
|
3108
3528
|
o.name = "PutBucketNotification"
|
3109
3529
|
o.http_method = "PUT"
|
3110
|
-
o.http_request_uri = "
|
3111
|
-
o.
|
3530
|
+
o.http_request_uri = "/?notification"
|
3531
|
+
o.http_checksum = {
|
3532
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3533
|
+
"requestChecksumRequired" => true,
|
3534
|
+
}
|
3535
|
+
o.http_checksum = {
|
3536
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3537
|
+
"requestChecksumRequired" => true,
|
3538
|
+
}
|
3112
3539
|
o.deprecated = true
|
3113
3540
|
o.input = Shapes::ShapeRef.new(shape: PutBucketNotificationRequest)
|
3114
3541
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
@@ -3117,7 +3544,7 @@ module Aws::S3
|
|
3117
3544
|
api.add_operation(:put_bucket_notification_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3118
3545
|
o.name = "PutBucketNotificationConfiguration"
|
3119
3546
|
o.http_method = "PUT"
|
3120
|
-
o.http_request_uri = "
|
3547
|
+
o.http_request_uri = "/?notification"
|
3121
3548
|
o.input = Shapes::ShapeRef.new(shape: PutBucketNotificationConfigurationRequest)
|
3122
3549
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3123
3550
|
end)
|
@@ -3125,8 +3552,10 @@ module Aws::S3
|
|
3125
3552
|
api.add_operation(:put_bucket_ownership_controls, Seahorse::Model::Operation.new.tap do |o|
|
3126
3553
|
o.name = "PutBucketOwnershipControls"
|
3127
3554
|
o.http_method = "PUT"
|
3128
|
-
o.http_request_uri = "
|
3129
|
-
o.
|
3555
|
+
o.http_request_uri = "/?ownershipControls"
|
3556
|
+
o.http_checksum = {
|
3557
|
+
"requestChecksumRequired" => true,
|
3558
|
+
}
|
3130
3559
|
o.input = Shapes::ShapeRef.new(shape: PutBucketOwnershipControlsRequest)
|
3131
3560
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3132
3561
|
end)
|
@@ -3134,8 +3563,15 @@ module Aws::S3
|
|
3134
3563
|
api.add_operation(:put_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
3135
3564
|
o.name = "PutBucketPolicy"
|
3136
3565
|
o.http_method = "PUT"
|
3137
|
-
o.http_request_uri = "
|
3138
|
-
o.
|
3566
|
+
o.http_request_uri = "/?policy"
|
3567
|
+
o.http_checksum = {
|
3568
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3569
|
+
"requestChecksumRequired" => true,
|
3570
|
+
}
|
3571
|
+
o.http_checksum = {
|
3572
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3573
|
+
"requestChecksumRequired" => true,
|
3574
|
+
}
|
3139
3575
|
o.input = Shapes::ShapeRef.new(shape: PutBucketPolicyRequest)
|
3140
3576
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3141
3577
|
end)
|
@@ -3143,8 +3579,15 @@ module Aws::S3
|
|
3143
3579
|
api.add_operation(:put_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
|
3144
3580
|
o.name = "PutBucketReplication"
|
3145
3581
|
o.http_method = "PUT"
|
3146
|
-
o.http_request_uri = "
|
3147
|
-
o.
|
3582
|
+
o.http_request_uri = "/?replication"
|
3583
|
+
o.http_checksum = {
|
3584
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3585
|
+
"requestChecksumRequired" => true,
|
3586
|
+
}
|
3587
|
+
o.http_checksum = {
|
3588
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3589
|
+
"requestChecksumRequired" => true,
|
3590
|
+
}
|
3148
3591
|
o.input = Shapes::ShapeRef.new(shape: PutBucketReplicationRequest)
|
3149
3592
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3150
3593
|
end)
|
@@ -3152,8 +3595,15 @@ module Aws::S3
|
|
3152
3595
|
api.add_operation(:put_bucket_request_payment, Seahorse::Model::Operation.new.tap do |o|
|
3153
3596
|
o.name = "PutBucketRequestPayment"
|
3154
3597
|
o.http_method = "PUT"
|
3155
|
-
o.http_request_uri = "
|
3156
|
-
o.
|
3598
|
+
o.http_request_uri = "/?requestPayment"
|
3599
|
+
o.http_checksum = {
|
3600
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3601
|
+
"requestChecksumRequired" => true,
|
3602
|
+
}
|
3603
|
+
o.http_checksum = {
|
3604
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3605
|
+
"requestChecksumRequired" => true,
|
3606
|
+
}
|
3157
3607
|
o.input = Shapes::ShapeRef.new(shape: PutBucketRequestPaymentRequest)
|
3158
3608
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3159
3609
|
end)
|
@@ -3161,8 +3611,15 @@ module Aws::S3
|
|
3161
3611
|
api.add_operation(:put_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
|
3162
3612
|
o.name = "PutBucketTagging"
|
3163
3613
|
o.http_method = "PUT"
|
3164
|
-
o.http_request_uri = "
|
3165
|
-
o.
|
3614
|
+
o.http_request_uri = "/?tagging"
|
3615
|
+
o.http_checksum = {
|
3616
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3617
|
+
"requestChecksumRequired" => true,
|
3618
|
+
}
|
3619
|
+
o.http_checksum = {
|
3620
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3621
|
+
"requestChecksumRequired" => true,
|
3622
|
+
}
|
3166
3623
|
o.input = Shapes::ShapeRef.new(shape: PutBucketTaggingRequest)
|
3167
3624
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3168
3625
|
end)
|
@@ -3170,8 +3627,15 @@ module Aws::S3
|
|
3170
3627
|
api.add_operation(:put_bucket_versioning, Seahorse::Model::Operation.new.tap do |o|
|
3171
3628
|
o.name = "PutBucketVersioning"
|
3172
3629
|
o.http_method = "PUT"
|
3173
|
-
o.http_request_uri = "
|
3174
|
-
o.
|
3630
|
+
o.http_request_uri = "/?versioning"
|
3631
|
+
o.http_checksum = {
|
3632
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3633
|
+
"requestChecksumRequired" => true,
|
3634
|
+
}
|
3635
|
+
o.http_checksum = {
|
3636
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3637
|
+
"requestChecksumRequired" => true,
|
3638
|
+
}
|
3175
3639
|
o.input = Shapes::ShapeRef.new(shape: PutBucketVersioningRequest)
|
3176
3640
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3177
3641
|
end)
|
@@ -3179,8 +3643,15 @@ module Aws::S3
|
|
3179
3643
|
api.add_operation(:put_bucket_website, Seahorse::Model::Operation.new.tap do |o|
|
3180
3644
|
o.name = "PutBucketWebsite"
|
3181
3645
|
o.http_method = "PUT"
|
3182
|
-
o.http_request_uri = "
|
3183
|
-
o.
|
3646
|
+
o.http_request_uri = "/?website"
|
3647
|
+
o.http_checksum = {
|
3648
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3649
|
+
"requestChecksumRequired" => true,
|
3650
|
+
}
|
3651
|
+
o.http_checksum = {
|
3652
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3653
|
+
"requestChecksumRequired" => true,
|
3654
|
+
}
|
3184
3655
|
o.input = Shapes::ShapeRef.new(shape: PutBucketWebsiteRequest)
|
3185
3656
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3186
3657
|
end)
|
@@ -3188,7 +3659,15 @@ module Aws::S3
|
|
3188
3659
|
api.add_operation(:put_object, Seahorse::Model::Operation.new.tap do |o|
|
3189
3660
|
o.name = "PutObject"
|
3190
3661
|
o.http_method = "PUT"
|
3191
|
-
o.http_request_uri = "/{
|
3662
|
+
o.http_request_uri = "/{Key+}"
|
3663
|
+
o.http_checksum = {
|
3664
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3665
|
+
"requestChecksumRequired" => false,
|
3666
|
+
}
|
3667
|
+
o.http_checksum = {
|
3668
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3669
|
+
"requestChecksumRequired" => false,
|
3670
|
+
}
|
3192
3671
|
o.input = Shapes::ShapeRef.new(shape: PutObjectRequest)
|
3193
3672
|
o.output = Shapes::ShapeRef.new(shape: PutObjectOutput)
|
3194
3673
|
end)
|
@@ -3196,8 +3675,15 @@ module Aws::S3
|
|
3196
3675
|
api.add_operation(:put_object_acl, Seahorse::Model::Operation.new.tap do |o|
|
3197
3676
|
o.name = "PutObjectAcl"
|
3198
3677
|
o.http_method = "PUT"
|
3199
|
-
o.http_request_uri = "/{
|
3200
|
-
o.
|
3678
|
+
o.http_request_uri = "/{Key+}?acl"
|
3679
|
+
o.http_checksum = {
|
3680
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3681
|
+
"requestChecksumRequired" => true,
|
3682
|
+
}
|
3683
|
+
o.http_checksum = {
|
3684
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3685
|
+
"requestChecksumRequired" => true,
|
3686
|
+
}
|
3201
3687
|
o.input = Shapes::ShapeRef.new(shape: PutObjectAclRequest)
|
3202
3688
|
o.output = Shapes::ShapeRef.new(shape: PutObjectAclOutput)
|
3203
3689
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
@@ -3206,8 +3692,15 @@ module Aws::S3
|
|
3206
3692
|
api.add_operation(:put_object_legal_hold, Seahorse::Model::Operation.new.tap do |o|
|
3207
3693
|
o.name = "PutObjectLegalHold"
|
3208
3694
|
o.http_method = "PUT"
|
3209
|
-
o.http_request_uri = "/{
|
3210
|
-
o.
|
3695
|
+
o.http_request_uri = "/{Key+}?legal-hold"
|
3696
|
+
o.http_checksum = {
|
3697
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3698
|
+
"requestChecksumRequired" => true,
|
3699
|
+
}
|
3700
|
+
o.http_checksum = {
|
3701
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3702
|
+
"requestChecksumRequired" => true,
|
3703
|
+
}
|
3211
3704
|
o.input = Shapes::ShapeRef.new(shape: PutObjectLegalHoldRequest)
|
3212
3705
|
o.output = Shapes::ShapeRef.new(shape: PutObjectLegalHoldOutput)
|
3213
3706
|
end)
|
@@ -3215,8 +3708,15 @@ module Aws::S3
|
|
3215
3708
|
api.add_operation(:put_object_lock_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3216
3709
|
o.name = "PutObjectLockConfiguration"
|
3217
3710
|
o.http_method = "PUT"
|
3218
|
-
o.http_request_uri = "
|
3219
|
-
o.
|
3711
|
+
o.http_request_uri = "/?object-lock"
|
3712
|
+
o.http_checksum = {
|
3713
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3714
|
+
"requestChecksumRequired" => true,
|
3715
|
+
}
|
3716
|
+
o.http_checksum = {
|
3717
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3718
|
+
"requestChecksumRequired" => true,
|
3719
|
+
}
|
3220
3720
|
o.input = Shapes::ShapeRef.new(shape: PutObjectLockConfigurationRequest)
|
3221
3721
|
o.output = Shapes::ShapeRef.new(shape: PutObjectLockConfigurationOutput)
|
3222
3722
|
end)
|
@@ -3224,8 +3724,15 @@ module Aws::S3
|
|
3224
3724
|
api.add_operation(:put_object_retention, Seahorse::Model::Operation.new.tap do |o|
|
3225
3725
|
o.name = "PutObjectRetention"
|
3226
3726
|
o.http_method = "PUT"
|
3227
|
-
o.http_request_uri = "/{
|
3228
|
-
o.
|
3727
|
+
o.http_request_uri = "/{Key+}?retention"
|
3728
|
+
o.http_checksum = {
|
3729
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3730
|
+
"requestChecksumRequired" => true,
|
3731
|
+
}
|
3732
|
+
o.http_checksum = {
|
3733
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3734
|
+
"requestChecksumRequired" => true,
|
3735
|
+
}
|
3229
3736
|
o.input = Shapes::ShapeRef.new(shape: PutObjectRetentionRequest)
|
3230
3737
|
o.output = Shapes::ShapeRef.new(shape: PutObjectRetentionOutput)
|
3231
3738
|
end)
|
@@ -3233,8 +3740,15 @@ module Aws::S3
|
|
3233
3740
|
api.add_operation(:put_object_tagging, Seahorse::Model::Operation.new.tap do |o|
|
3234
3741
|
o.name = "PutObjectTagging"
|
3235
3742
|
o.http_method = "PUT"
|
3236
|
-
o.http_request_uri = "/{
|
3237
|
-
o.
|
3743
|
+
o.http_request_uri = "/{Key+}?tagging"
|
3744
|
+
o.http_checksum = {
|
3745
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3746
|
+
"requestChecksumRequired" => true,
|
3747
|
+
}
|
3748
|
+
o.http_checksum = {
|
3749
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3750
|
+
"requestChecksumRequired" => true,
|
3751
|
+
}
|
3238
3752
|
o.input = Shapes::ShapeRef.new(shape: PutObjectTaggingRequest)
|
3239
3753
|
o.output = Shapes::ShapeRef.new(shape: PutObjectTaggingOutput)
|
3240
3754
|
end)
|
@@ -3242,8 +3756,15 @@ module Aws::S3
|
|
3242
3756
|
api.add_operation(:put_public_access_block, Seahorse::Model::Operation.new.tap do |o|
|
3243
3757
|
o.name = "PutPublicAccessBlock"
|
3244
3758
|
o.http_method = "PUT"
|
3245
|
-
o.http_request_uri = "
|
3246
|
-
o.
|
3759
|
+
o.http_request_uri = "/?publicAccessBlock"
|
3760
|
+
o.http_checksum = {
|
3761
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3762
|
+
"requestChecksumRequired" => true,
|
3763
|
+
}
|
3764
|
+
o.http_checksum = {
|
3765
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3766
|
+
"requestChecksumRequired" => true,
|
3767
|
+
}
|
3247
3768
|
o.input = Shapes::ShapeRef.new(shape: PutPublicAccessBlockRequest)
|
3248
3769
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3249
3770
|
end)
|
@@ -3251,7 +3772,15 @@ module Aws::S3
|
|
3251
3772
|
api.add_operation(:restore_object, Seahorse::Model::Operation.new.tap do |o|
|
3252
3773
|
o.name = "RestoreObject"
|
3253
3774
|
o.http_method = "POST"
|
3254
|
-
o.http_request_uri = "/{
|
3775
|
+
o.http_request_uri = "/{Key+}?restore"
|
3776
|
+
o.http_checksum = {
|
3777
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3778
|
+
"requestChecksumRequired" => false,
|
3779
|
+
}
|
3780
|
+
o.http_checksum = {
|
3781
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3782
|
+
"requestChecksumRequired" => false,
|
3783
|
+
}
|
3255
3784
|
o.input = Shapes::ShapeRef.new(shape: RestoreObjectRequest)
|
3256
3785
|
o.output = Shapes::ShapeRef.new(shape: RestoreObjectOutput)
|
3257
3786
|
o.errors << Shapes::ShapeRef.new(shape: ObjectAlreadyInActiveTierError)
|
@@ -3260,7 +3789,7 @@ module Aws::S3
|
|
3260
3789
|
api.add_operation(:select_object_content, Seahorse::Model::Operation.new.tap do |o|
|
3261
3790
|
o.name = "SelectObjectContent"
|
3262
3791
|
o.http_method = "POST"
|
3263
|
-
o.http_request_uri = "/{
|
3792
|
+
o.http_request_uri = "/{Key+}?select&select-type=2"
|
3264
3793
|
o.input = Shapes::ShapeRef.new(shape: SelectObjectContentRequest,
|
3265
3794
|
location_name: "SelectObjectContentRequest",
|
3266
3795
|
metadata: {
|
@@ -3273,7 +3802,15 @@ module Aws::S3
|
|
3273
3802
|
api.add_operation(:upload_part, Seahorse::Model::Operation.new.tap do |o|
|
3274
3803
|
o.name = "UploadPart"
|
3275
3804
|
o.http_method = "PUT"
|
3276
|
-
o.http_request_uri = "/{
|
3805
|
+
o.http_request_uri = "/{Key+}"
|
3806
|
+
o.http_checksum = {
|
3807
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3808
|
+
"requestChecksumRequired" => false,
|
3809
|
+
}
|
3810
|
+
o.http_checksum = {
|
3811
|
+
"requestAlgorithmMember" => "checksum_algorithm",
|
3812
|
+
"requestChecksumRequired" => false,
|
3813
|
+
}
|
3277
3814
|
o.input = Shapes::ShapeRef.new(shape: UploadPartRequest)
|
3278
3815
|
o.output = Shapes::ShapeRef.new(shape: UploadPartOutput)
|
3279
3816
|
end)
|
@@ -3281,10 +3818,22 @@ module Aws::S3
|
|
3281
3818
|
api.add_operation(:upload_part_copy, Seahorse::Model::Operation.new.tap do |o|
|
3282
3819
|
o.name = "UploadPartCopy"
|
3283
3820
|
o.http_method = "PUT"
|
3284
|
-
o.http_request_uri = "/{
|
3821
|
+
o.http_request_uri = "/{Key+}"
|
3285
3822
|
o.input = Shapes::ShapeRef.new(shape: UploadPartCopyRequest)
|
3286
3823
|
o.output = Shapes::ShapeRef.new(shape: UploadPartCopyOutput)
|
3287
3824
|
end)
|
3825
|
+
|
3826
|
+
api.add_operation(:write_get_object_response, Seahorse::Model::Operation.new.tap do |o|
|
3827
|
+
o.name = "WriteGetObjectResponse"
|
3828
|
+
o.http_method = "POST"
|
3829
|
+
o.http_request_uri = "/WriteGetObjectResponse"
|
3830
|
+
o['authtype'] = "v4-unsigned-body"
|
3831
|
+
o.endpoint_pattern = {
|
3832
|
+
"hostPrefix" => "{RequestRoute}.",
|
3833
|
+
}
|
3834
|
+
o.input = Shapes::ShapeRef.new(shape: WriteGetObjectResponseRequest)
|
3835
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3836
|
+
end)
|
3288
3837
|
end
|
3289
3838
|
|
3290
3839
|
end
|