aws-sdk-s3 1.45.0 → 1.143.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +1106 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-s3/bucket.rb +784 -98
- data/lib/aws-sdk-s3/bucket_acl.rb +64 -18
- data/lib/aws-sdk-s3/bucket_cors.rb +79 -18
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +66 -20
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +68 -20
- data/lib/aws-sdk-s3/bucket_logging.rb +68 -16
- data/lib/aws-sdk-s3/bucket_notification.rb +52 -20
- data/lib/aws-sdk-s3/bucket_policy.rb +107 -17
- data/lib/aws-sdk-s3/bucket_region_cache.rb +2 -0
- data/lib/aws-sdk-s3/bucket_request_payment.rb +60 -15
- data/lib/aws-sdk-s3/bucket_tagging.rb +71 -18
- data/lib/aws-sdk-s3/bucket_versioning.rb +133 -17
- data/lib/aws-sdk-s3/bucket_website.rb +78 -21
- data/lib/aws-sdk-s3/client.rb +12610 -902
- data/lib/aws-sdk-s3/client_api.rb +1086 -191
- data/lib/aws-sdk-s3/customizations/bucket.rb +56 -37
- data/lib/aws-sdk-s3/customizations/errors.rb +27 -0
- data/lib/aws-sdk-s3/customizations/multipart_upload.rb +2 -0
- data/lib/aws-sdk-s3/customizations/object.rb +282 -68
- data/lib/aws-sdk-s3/customizations/object_summary.rb +5 -0
- data/lib/aws-sdk-s3/customizations/types/list_object_versions_output.rb +2 -0
- data/lib/aws-sdk-s3/customizations/types/permanent_redirect.rb +26 -0
- data/lib/aws-sdk-s3/customizations.rb +11 -1
- data/lib/aws-sdk-s3/encryption/client.rb +28 -7
- data/lib/aws-sdk-s3/encryption/decrypt_handler.rb +71 -29
- data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +43 -5
- data/lib/aws-sdk-s3/encryption/default_key_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +13 -2
- data/lib/aws-sdk-s3/encryption/errors.rb +2 -0
- data/lib/aws-sdk-s3/encryption/io_auth_decrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryption/io_decrypter.rb +11 -3
- data/lib/aws-sdk-s3/encryption/io_encrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryption/key_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +46 -11
- data/lib/aws-sdk-s3/encryption/materials.rb +8 -6
- data/lib/aws-sdk-s3/encryption/utils.rb +25 -0
- data/lib/aws-sdk-s3/encryption.rb +4 -0
- data/lib/aws-sdk-s3/encryptionV2/client.rb +570 -0
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +223 -0
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +170 -0
- data/lib/aws-sdk-s3/encryptionV2/default_key_provider.rb +40 -0
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +65 -0
- data/lib/aws-sdk-s3/encryptionV2/errors.rb +37 -0
- data/lib/aws-sdk-s3/encryptionV2/io_auth_decrypter.rb +58 -0
- data/lib/aws-sdk-s3/encryptionV2/io_decrypter.rb +37 -0
- data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +73 -0
- data/lib/aws-sdk-s3/encryptionV2/key_provider.rb +31 -0
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +173 -0
- data/lib/aws-sdk-s3/encryptionV2/materials.rb +60 -0
- data/lib/aws-sdk-s3/encryptionV2/utils.rb +103 -0
- data/lib/aws-sdk-s3/encryption_v2.rb +23 -0
- 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 +123 -1
- data/lib/aws-sdk-s3/event_streams.rb +8 -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 +176 -44
- data/lib/aws-sdk-s3/file_part.rb +11 -6
- data/lib/aws-sdk-s3/file_uploader.rb +39 -18
- data/lib/aws-sdk-s3/legacy_signer.rb +17 -25
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +78 -20
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +56 -18
- data/lib/aws-sdk-s3/multipart_upload.rb +242 -32
- data/lib/aws-sdk-s3/multipart_upload_error.rb +2 -0
- data/lib/aws-sdk-s3/multipart_upload_part.rb +367 -45
- data/lib/aws-sdk-s3/object.rb +2191 -227
- data/lib/aws-sdk-s3/object_acl.rb +103 -25
- data/lib/aws-sdk-s3/object_copier.rb +9 -5
- data/lib/aws-sdk-s3/object_multipart_copier.rb +43 -19
- data/lib/aws-sdk-s3/object_summary.rb +1811 -208
- data/lib/aws-sdk-s3/object_version.rb +452 -80
- data/lib/aws-sdk-s3/plugins/accelerate.rb +17 -64
- data/lib/aws-sdk-s3/plugins/arn.rb +70 -0
- data/lib/aws-sdk-s3/plugins/bucket_dns.rb +7 -43
- data/lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb +20 -3
- data/lib/aws-sdk-s3/plugins/dualstack.rb +7 -50
- data/lib/aws-sdk-s3/plugins/endpoints.rb +274 -0
- data/lib/aws-sdk-s3/plugins/expect_100_continue.rb +5 -4
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +91 -0
- data/lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb +3 -1
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +11 -3
- data/lib/aws-sdk-s3/plugins/iad_regional_endpoint.rb +44 -0
- data/lib/aws-sdk-s3/plugins/location_constraint.rb +5 -1
- data/lib/aws-sdk-s3/plugins/md5s.rb +35 -30
- data/lib/aws-sdk-s3/plugins/redirects.rb +2 -0
- data/lib/aws-sdk-s3/plugins/s3_host_id.rb +2 -0
- data/lib/aws-sdk-s3/plugins/s3_signer.rb +56 -92
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +31 -0
- data/lib/aws-sdk-s3/plugins/sse_cpk.rb +3 -1
- data/lib/aws-sdk-s3/plugins/streaming_retry.rb +139 -0
- data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -0
- data/lib/aws-sdk-s3/presigned_post.rb +160 -99
- data/lib/aws-sdk-s3/presigner.rb +171 -80
- data/lib/aws-sdk-s3/resource.rb +120 -8
- data/lib/aws-sdk-s3/types.rb +11353 -4225
- data/lib/aws-sdk-s3/waiters.rb +67 -1
- data/lib/aws-sdk-s3.rb +16 -6
- 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 +68 -15
@@ -1,7 +1,9 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
4
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
@@ -20,6 +22,9 @@ module Aws::S3
|
|
20
22
|
AcceptRanges = Shapes::StringShape.new(name: 'AcceptRanges')
|
21
23
|
AccessControlPolicy = Shapes::StructureShape.new(name: 'AccessControlPolicy')
|
22
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')
|
23
28
|
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
24
29
|
AllowQuotedRecordDelimiter = Shapes::BooleanShape.new(name: 'AllowQuotedRecordDelimiter')
|
25
30
|
AllowedHeader = Shapes::StringShape.new(name: 'AllowedHeader')
|
@@ -36,17 +41,22 @@ module Aws::S3
|
|
36
41
|
AnalyticsId = Shapes::StringShape.new(name: 'AnalyticsId')
|
37
42
|
AnalyticsS3BucketDestination = Shapes::StructureShape.new(name: 'AnalyticsS3BucketDestination')
|
38
43
|
AnalyticsS3ExportFileFormat = Shapes::StringShape.new(name: 'AnalyticsS3ExportFileFormat')
|
44
|
+
ArchiveStatus = Shapes::StringShape.new(name: 'ArchiveStatus')
|
39
45
|
Body = Shapes::BlobShape.new(name: 'Body')
|
40
46
|
Bucket = Shapes::StructureShape.new(name: 'Bucket')
|
41
47
|
BucketAccelerateStatus = Shapes::StringShape.new(name: 'BucketAccelerateStatus')
|
42
48
|
BucketAlreadyExists = Shapes::StructureShape.new(name: 'BucketAlreadyExists')
|
43
49
|
BucketAlreadyOwnedByYou = Shapes::StructureShape.new(name: 'BucketAlreadyOwnedByYou')
|
44
50
|
BucketCannedACL = Shapes::StringShape.new(name: 'BucketCannedACL')
|
51
|
+
BucketInfo = Shapes::StructureShape.new(name: 'BucketInfo')
|
52
|
+
BucketKeyEnabled = Shapes::BooleanShape.new(name: 'BucketKeyEnabled')
|
45
53
|
BucketLifecycleConfiguration = Shapes::StructureShape.new(name: 'BucketLifecycleConfiguration')
|
46
54
|
BucketLocationConstraint = Shapes::StringShape.new(name: 'BucketLocationConstraint')
|
55
|
+
BucketLocationName = Shapes::StringShape.new(name: 'BucketLocationName')
|
47
56
|
BucketLoggingStatus = Shapes::StructureShape.new(name: 'BucketLoggingStatus')
|
48
57
|
BucketLogsPermission = Shapes::StringShape.new(name: 'BucketLogsPermission')
|
49
58
|
BucketName = Shapes::StringShape.new(name: 'BucketName')
|
59
|
+
BucketType = Shapes::StringShape.new(name: 'BucketType')
|
50
60
|
BucketVersioningStatus = Shapes::StringShape.new(name: 'BucketVersioningStatus')
|
51
61
|
Buckets = Shapes::ListShape.new(name: 'Buckets')
|
52
62
|
BypassGovernanceRetention = Shapes::BooleanShape.new(name: 'BypassGovernanceRetention')
|
@@ -59,6 +69,14 @@ module Aws::S3
|
|
59
69
|
CSVInput = Shapes::StructureShape.new(name: 'CSVInput')
|
60
70
|
CSVOutput = Shapes::StructureShape.new(name: 'CSVOutput')
|
61
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')
|
62
80
|
CloudFunction = Shapes::StringShape.new(name: 'CloudFunction')
|
63
81
|
CloudFunctionConfiguration = Shapes::StructureShape.new(name: 'CloudFunctionConfiguration')
|
64
82
|
CloudFunctionInvocationRole = Shapes::StringShape.new(name: 'CloudFunctionInvocationRole')
|
@@ -101,7 +119,10 @@ module Aws::S3
|
|
101
119
|
CreateBucketRequest = Shapes::StructureShape.new(name: 'CreateBucketRequest')
|
102
120
|
CreateMultipartUploadOutput = Shapes::StructureShape.new(name: 'CreateMultipartUploadOutput')
|
103
121
|
CreateMultipartUploadRequest = Shapes::StructureShape.new(name: 'CreateMultipartUploadRequest')
|
122
|
+
CreateSessionOutput = Shapes::StructureShape.new(name: 'CreateSessionOutput')
|
123
|
+
CreateSessionRequest = Shapes::StructureShape.new(name: 'CreateSessionRequest')
|
104
124
|
CreationDate = Shapes::TimestampShape.new(name: 'CreationDate')
|
125
|
+
DataRedundancy = Shapes::StringShape.new(name: 'DataRedundancy')
|
105
126
|
Date = Shapes::TimestampShape.new(name: 'Date', timestampFormat: "iso8601")
|
106
127
|
Days = Shapes::IntegerShape.new(name: 'Days')
|
107
128
|
DaysAfterInitiation = Shapes::IntegerShape.new(name: 'DaysAfterInitiation')
|
@@ -110,9 +131,11 @@ module Aws::S3
|
|
110
131
|
DeleteBucketAnalyticsConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketAnalyticsConfigurationRequest')
|
111
132
|
DeleteBucketCorsRequest = Shapes::StructureShape.new(name: 'DeleteBucketCorsRequest')
|
112
133
|
DeleteBucketEncryptionRequest = Shapes::StructureShape.new(name: 'DeleteBucketEncryptionRequest')
|
134
|
+
DeleteBucketIntelligentTieringConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketIntelligentTieringConfigurationRequest')
|
113
135
|
DeleteBucketInventoryConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketInventoryConfigurationRequest')
|
114
136
|
DeleteBucketLifecycleRequest = Shapes::StructureShape.new(name: 'DeleteBucketLifecycleRequest')
|
115
137
|
DeleteBucketMetricsConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketMetricsConfigurationRequest')
|
138
|
+
DeleteBucketOwnershipControlsRequest = Shapes::StructureShape.new(name: 'DeleteBucketOwnershipControlsRequest')
|
116
139
|
DeleteBucketPolicyRequest = Shapes::StructureShape.new(name: 'DeleteBucketPolicyRequest')
|
117
140
|
DeleteBucketReplicationRequest = Shapes::StructureShape.new(name: 'DeleteBucketReplicationRequest')
|
118
141
|
DeleteBucketRequest = Shapes::StructureShape.new(name: 'DeleteBucketRequest')
|
@@ -136,6 +159,7 @@ module Aws::S3
|
|
136
159
|
Delimiter = Shapes::StringShape.new(name: 'Delimiter')
|
137
160
|
Description = Shapes::StringShape.new(name: 'Description')
|
138
161
|
Destination = Shapes::StructureShape.new(name: 'Destination')
|
162
|
+
DirectoryBucketToken = Shapes::StringShape.new(name: 'DirectoryBucketToken')
|
139
163
|
DisplayName = Shapes::StringShape.new(name: 'DisplayName')
|
140
164
|
ETag = Shapes::StringShape.new(name: 'ETag')
|
141
165
|
EmailAddress = Shapes::StringShape.new(name: 'EmailAddress')
|
@@ -143,12 +167,18 @@ module Aws::S3
|
|
143
167
|
EncodingType = Shapes::StringShape.new(name: 'EncodingType')
|
144
168
|
Encryption = Shapes::StructureShape.new(name: 'Encryption')
|
145
169
|
EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
|
170
|
+
End = Shapes::IntegerShape.new(name: 'End')
|
146
171
|
EndEvent = Shapes::StructureShape.new(name: 'EndEvent')
|
147
172
|
Error = Shapes::StructureShape.new(name: 'Error')
|
173
|
+
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
148
174
|
ErrorDocument = Shapes::StructureShape.new(name: 'ErrorDocument')
|
175
|
+
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
149
176
|
Errors = Shapes::ListShape.new(name: 'Errors', flattened: true)
|
150
177
|
Event = Shapes::StringShape.new(name: 'Event')
|
178
|
+
EventBridgeConfiguration = Shapes::StructureShape.new(name: 'EventBridgeConfiguration')
|
151
179
|
EventList = Shapes::ListShape.new(name: 'EventList', flattened: true)
|
180
|
+
ExistingObjectReplication = Shapes::StructureShape.new(name: 'ExistingObjectReplication')
|
181
|
+
ExistingObjectReplicationStatus = Shapes::StringShape.new(name: 'ExistingObjectReplicationStatus')
|
152
182
|
Expiration = Shapes::StringShape.new(name: 'Expiration')
|
153
183
|
ExpirationStatus = Shapes::StringShape.new(name: 'ExpirationStatus')
|
154
184
|
ExpiredObjectDeleteMarker = Shapes::BooleanShape.new(name: 'ExpiredObjectDeleteMarker')
|
@@ -175,6 +205,8 @@ module Aws::S3
|
|
175
205
|
GetBucketCorsRequest = Shapes::StructureShape.new(name: 'GetBucketCorsRequest')
|
176
206
|
GetBucketEncryptionOutput = Shapes::StructureShape.new(name: 'GetBucketEncryptionOutput')
|
177
207
|
GetBucketEncryptionRequest = Shapes::StructureShape.new(name: 'GetBucketEncryptionRequest')
|
208
|
+
GetBucketIntelligentTieringConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketIntelligentTieringConfigurationOutput')
|
209
|
+
GetBucketIntelligentTieringConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketIntelligentTieringConfigurationRequest')
|
178
210
|
GetBucketInventoryConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketInventoryConfigurationOutput')
|
179
211
|
GetBucketInventoryConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketInventoryConfigurationRequest')
|
180
212
|
GetBucketLifecycleConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketLifecycleConfigurationOutput')
|
@@ -188,6 +220,8 @@ module Aws::S3
|
|
188
220
|
GetBucketMetricsConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketMetricsConfigurationOutput')
|
189
221
|
GetBucketMetricsConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketMetricsConfigurationRequest')
|
190
222
|
GetBucketNotificationConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketNotificationConfigurationRequest')
|
223
|
+
GetBucketOwnershipControlsOutput = Shapes::StructureShape.new(name: 'GetBucketOwnershipControlsOutput')
|
224
|
+
GetBucketOwnershipControlsRequest = Shapes::StructureShape.new(name: 'GetBucketOwnershipControlsRequest')
|
191
225
|
GetBucketPolicyOutput = Shapes::StructureShape.new(name: 'GetBucketPolicyOutput')
|
192
226
|
GetBucketPolicyRequest = Shapes::StructureShape.new(name: 'GetBucketPolicyRequest')
|
193
227
|
GetBucketPolicyStatusOutput = Shapes::StructureShape.new(name: 'GetBucketPolicyStatusOutput')
|
@@ -204,12 +238,16 @@ module Aws::S3
|
|
204
238
|
GetBucketWebsiteRequest = Shapes::StructureShape.new(name: 'GetBucketWebsiteRequest')
|
205
239
|
GetObjectAclOutput = Shapes::StructureShape.new(name: 'GetObjectAclOutput')
|
206
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')
|
207
244
|
GetObjectLegalHoldOutput = Shapes::StructureShape.new(name: 'GetObjectLegalHoldOutput')
|
208
245
|
GetObjectLegalHoldRequest = Shapes::StructureShape.new(name: 'GetObjectLegalHoldRequest')
|
209
246
|
GetObjectLockConfigurationOutput = Shapes::StructureShape.new(name: 'GetObjectLockConfigurationOutput')
|
210
247
|
GetObjectLockConfigurationRequest = Shapes::StructureShape.new(name: 'GetObjectLockConfigurationRequest')
|
211
248
|
GetObjectOutput = Shapes::StructureShape.new(name: 'GetObjectOutput')
|
212
249
|
GetObjectRequest = Shapes::StructureShape.new(name: 'GetObjectRequest')
|
250
|
+
GetObjectResponseStatusCode = Shapes::IntegerShape.new(name: 'GetObjectResponseStatusCode')
|
213
251
|
GetObjectRetentionOutput = Shapes::StructureShape.new(name: 'GetObjectRetentionOutput')
|
214
252
|
GetObjectRetentionRequest = Shapes::StructureShape.new(name: 'GetObjectRetentionRequest')
|
215
253
|
GetObjectTaggingOutput = Shapes::StructureShape.new(name: 'GetObjectTaggingOutput')
|
@@ -227,6 +265,7 @@ module Aws::S3
|
|
227
265
|
GrantWriteACP = Shapes::StringShape.new(name: 'GrantWriteACP')
|
228
266
|
Grantee = Shapes::StructureShape.new(name: 'Grantee', xmlNamespace: {"prefix"=>"xsi", "uri"=>"http://www.w3.org/2001/XMLSchema-instance"})
|
229
267
|
Grants = Shapes::ListShape.new(name: 'Grants')
|
268
|
+
HeadBucketOutput = Shapes::StructureShape.new(name: 'HeadBucketOutput')
|
230
269
|
HeadBucketRequest = Shapes::StructureShape.new(name: 'HeadBucketRequest')
|
231
270
|
HeadObjectOutput = Shapes::StructureShape.new(name: 'HeadObjectOutput')
|
232
271
|
HeadObjectRequest = Shapes::StructureShape.new(name: 'HeadObjectRequest')
|
@@ -242,6 +281,15 @@ module Aws::S3
|
|
242
281
|
Initiated = Shapes::TimestampShape.new(name: 'Initiated')
|
243
282
|
Initiator = Shapes::StructureShape.new(name: 'Initiator')
|
244
283
|
InputSerialization = Shapes::StructureShape.new(name: 'InputSerialization')
|
284
|
+
IntelligentTieringAccessTier = Shapes::StringShape.new(name: 'IntelligentTieringAccessTier')
|
285
|
+
IntelligentTieringAndOperator = Shapes::StructureShape.new(name: 'IntelligentTieringAndOperator')
|
286
|
+
IntelligentTieringConfiguration = Shapes::StructureShape.new(name: 'IntelligentTieringConfiguration')
|
287
|
+
IntelligentTieringConfigurationList = Shapes::ListShape.new(name: 'IntelligentTieringConfigurationList', flattened: true)
|
288
|
+
IntelligentTieringDays = Shapes::IntegerShape.new(name: 'IntelligentTieringDays')
|
289
|
+
IntelligentTieringFilter = Shapes::StructureShape.new(name: 'IntelligentTieringFilter')
|
290
|
+
IntelligentTieringId = Shapes::StringShape.new(name: 'IntelligentTieringId')
|
291
|
+
IntelligentTieringStatus = Shapes::StringShape.new(name: 'IntelligentTieringStatus')
|
292
|
+
InvalidObjectState = Shapes::StructureShape.new(name: 'InvalidObjectState')
|
245
293
|
InventoryConfiguration = Shapes::StructureShape.new(name: 'InventoryConfiguration')
|
246
294
|
InventoryConfigurationList = Shapes::ListShape.new(name: 'InventoryConfigurationList', flattened: true)
|
247
295
|
InventoryDestination = Shapes::StructureShape.new(name: 'InventoryDestination')
|
@@ -258,6 +306,7 @@ module Aws::S3
|
|
258
306
|
IsEnabled = Shapes::BooleanShape.new(name: 'IsEnabled')
|
259
307
|
IsLatest = Shapes::BooleanShape.new(name: 'IsLatest')
|
260
308
|
IsPublic = Shapes::BooleanShape.new(name: 'IsPublic')
|
309
|
+
IsRestoreInProgress = Shapes::BooleanShape.new(name: 'IsRestoreInProgress')
|
261
310
|
IsTruncated = Shapes::BooleanShape.new(name: 'IsTruncated')
|
262
311
|
JSONInput = Shapes::StructureShape.new(name: 'JSONInput')
|
263
312
|
JSONOutput = Shapes::StructureShape.new(name: 'JSONOutput')
|
@@ -278,11 +327,15 @@ module Aws::S3
|
|
278
327
|
LifecycleRules = Shapes::ListShape.new(name: 'LifecycleRules', flattened: true)
|
279
328
|
ListBucketAnalyticsConfigurationsOutput = Shapes::StructureShape.new(name: 'ListBucketAnalyticsConfigurationsOutput')
|
280
329
|
ListBucketAnalyticsConfigurationsRequest = Shapes::StructureShape.new(name: 'ListBucketAnalyticsConfigurationsRequest')
|
330
|
+
ListBucketIntelligentTieringConfigurationsOutput = Shapes::StructureShape.new(name: 'ListBucketIntelligentTieringConfigurationsOutput')
|
331
|
+
ListBucketIntelligentTieringConfigurationsRequest = Shapes::StructureShape.new(name: 'ListBucketIntelligentTieringConfigurationsRequest')
|
281
332
|
ListBucketInventoryConfigurationsOutput = Shapes::StructureShape.new(name: 'ListBucketInventoryConfigurationsOutput')
|
282
333
|
ListBucketInventoryConfigurationsRequest = Shapes::StructureShape.new(name: 'ListBucketInventoryConfigurationsRequest')
|
283
334
|
ListBucketMetricsConfigurationsOutput = Shapes::StructureShape.new(name: 'ListBucketMetricsConfigurationsOutput')
|
284
335
|
ListBucketMetricsConfigurationsRequest = Shapes::StructureShape.new(name: 'ListBucketMetricsConfigurationsRequest')
|
285
336
|
ListBucketsOutput = Shapes::StructureShape.new(name: 'ListBucketsOutput')
|
337
|
+
ListDirectoryBucketsOutput = Shapes::StructureShape.new(name: 'ListDirectoryBucketsOutput')
|
338
|
+
ListDirectoryBucketsRequest = Shapes::StructureShape.new(name: 'ListDirectoryBucketsRequest')
|
286
339
|
ListMultipartUploadsOutput = Shapes::StructureShape.new(name: 'ListMultipartUploadsOutput')
|
287
340
|
ListMultipartUploadsRequest = Shapes::StructureShape.new(name: 'ListMultipartUploadsRequest')
|
288
341
|
ListObjectVersionsOutput = Shapes::StructureShape.new(name: 'ListObjectVersionsOutput')
|
@@ -294,13 +347,17 @@ module Aws::S3
|
|
294
347
|
ListPartsOutput = Shapes::StructureShape.new(name: 'ListPartsOutput')
|
295
348
|
ListPartsRequest = Shapes::StructureShape.new(name: 'ListPartsRequest')
|
296
349
|
Location = Shapes::StringShape.new(name: 'Location')
|
350
|
+
LocationInfo = Shapes::StructureShape.new(name: 'LocationInfo')
|
351
|
+
LocationNameAsString = Shapes::StringShape.new(name: 'LocationNameAsString')
|
297
352
|
LocationPrefix = Shapes::StringShape.new(name: 'LocationPrefix')
|
353
|
+
LocationType = Shapes::StringShape.new(name: 'LocationType')
|
298
354
|
LoggingEnabled = Shapes::StructureShape.new(name: 'LoggingEnabled')
|
299
355
|
MFA = Shapes::StringShape.new(name: 'MFA')
|
300
356
|
MFADelete = Shapes::StringShape.new(name: 'MFADelete')
|
301
357
|
MFADeleteStatus = Shapes::StringShape.new(name: 'MFADeleteStatus')
|
302
358
|
Marker = Shapes::StringShape.new(name: 'Marker')
|
303
359
|
MaxAgeSeconds = Shapes::IntegerShape.new(name: 'MaxAgeSeconds')
|
360
|
+
MaxDirectoryBuckets = Shapes::IntegerShape.new(name: 'MaxDirectoryBuckets')
|
304
361
|
MaxKeys = Shapes::IntegerShape.new(name: 'MaxKeys')
|
305
362
|
MaxParts = Shapes::IntegerShape.new(name: 'MaxParts')
|
306
363
|
MaxUploads = Shapes::IntegerShape.new(name: 'MaxUploads')
|
@@ -310,11 +367,14 @@ module Aws::S3
|
|
310
367
|
MetadataEntry = Shapes::StructureShape.new(name: 'MetadataEntry')
|
311
368
|
MetadataKey = Shapes::StringShape.new(name: 'MetadataKey')
|
312
369
|
MetadataValue = Shapes::StringShape.new(name: 'MetadataValue')
|
370
|
+
Metrics = Shapes::StructureShape.new(name: 'Metrics')
|
313
371
|
MetricsAndOperator = Shapes::StructureShape.new(name: 'MetricsAndOperator')
|
314
372
|
MetricsConfiguration = Shapes::StructureShape.new(name: 'MetricsConfiguration')
|
315
373
|
MetricsConfigurationList = Shapes::ListShape.new(name: 'MetricsConfigurationList', flattened: true)
|
316
374
|
MetricsFilter = Shapes::StructureShape.new(name: 'MetricsFilter')
|
317
375
|
MetricsId = Shapes::StringShape.new(name: 'MetricsId')
|
376
|
+
MetricsStatus = Shapes::StringShape.new(name: 'MetricsStatus')
|
377
|
+
Minutes = Shapes::IntegerShape.new(name: 'Minutes')
|
318
378
|
MissingMeta = Shapes::IntegerShape.new(name: 'MissingMeta')
|
319
379
|
MultipartUpload = Shapes::StructureShape.new(name: 'MultipartUpload')
|
320
380
|
MultipartUploadId = Shapes::StringShape.new(name: 'MultipartUploadId')
|
@@ -337,6 +397,8 @@ module Aws::S3
|
|
337
397
|
NotificationId = Shapes::StringShape.new(name: 'NotificationId')
|
338
398
|
Object = Shapes::StructureShape.new(name: 'Object')
|
339
399
|
ObjectAlreadyInActiveTierError = Shapes::StructureShape.new(name: 'ObjectAlreadyInActiveTierError')
|
400
|
+
ObjectAttributes = Shapes::StringShape.new(name: 'ObjectAttributes')
|
401
|
+
ObjectAttributesList = Shapes::ListShape.new(name: 'ObjectAttributesList')
|
340
402
|
ObjectCannedACL = Shapes::StringShape.new(name: 'ObjectCannedACL')
|
341
403
|
ObjectIdentifier = Shapes::StructureShape.new(name: 'ObjectIdentifier')
|
342
404
|
ObjectIdentifierList = Shapes::ListShape.new(name: 'ObjectIdentifierList', flattened: true)
|
@@ -354,21 +416,34 @@ module Aws::S3
|
|
354
416
|
ObjectLockRule = Shapes::StructureShape.new(name: 'ObjectLockRule')
|
355
417
|
ObjectLockToken = Shapes::StringShape.new(name: 'ObjectLockToken')
|
356
418
|
ObjectNotInActiveTierError = Shapes::StructureShape.new(name: 'ObjectNotInActiveTierError')
|
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')
|
357
424
|
ObjectStorageClass = Shapes::StringShape.new(name: 'ObjectStorageClass')
|
358
425
|
ObjectVersion = Shapes::StructureShape.new(name: 'ObjectVersion')
|
359
426
|
ObjectVersionId = Shapes::StringShape.new(name: 'ObjectVersionId')
|
360
427
|
ObjectVersionList = Shapes::ListShape.new(name: 'ObjectVersionList', flattened: true)
|
361
428
|
ObjectVersionStorageClass = Shapes::StringShape.new(name: 'ObjectVersionStorageClass')
|
429
|
+
OptionalObjectAttributes = Shapes::StringShape.new(name: 'OptionalObjectAttributes')
|
430
|
+
OptionalObjectAttributesList = Shapes::ListShape.new(name: 'OptionalObjectAttributesList')
|
362
431
|
OutputLocation = Shapes::StructureShape.new(name: 'OutputLocation')
|
363
432
|
OutputSerialization = Shapes::StructureShape.new(name: 'OutputSerialization')
|
364
433
|
Owner = Shapes::StructureShape.new(name: 'Owner')
|
365
434
|
OwnerOverride = Shapes::StringShape.new(name: 'OwnerOverride')
|
435
|
+
OwnershipControls = Shapes::StructureShape.new(name: 'OwnershipControls')
|
436
|
+
OwnershipControlsRule = Shapes::StructureShape.new(name: 'OwnershipControlsRule')
|
437
|
+
OwnershipControlsRules = Shapes::ListShape.new(name: 'OwnershipControlsRules', flattened: true)
|
366
438
|
ParquetInput = Shapes::StructureShape.new(name: 'ParquetInput')
|
367
439
|
Part = Shapes::StructureShape.new(name: 'Part')
|
368
440
|
PartNumber = Shapes::IntegerShape.new(name: 'PartNumber')
|
369
441
|
PartNumberMarker = Shapes::IntegerShape.new(name: 'PartNumberMarker')
|
442
|
+
PartitionDateSource = Shapes::StringShape.new(name: 'PartitionDateSource')
|
443
|
+
PartitionedPrefix = Shapes::StructureShape.new(name: 'PartitionedPrefix')
|
370
444
|
Parts = Shapes::ListShape.new(name: 'Parts', flattened: true)
|
371
445
|
PartsCount = Shapes::IntegerShape.new(name: 'PartsCount')
|
446
|
+
PartsList = Shapes::ListShape.new(name: 'PartsList', flattened: true)
|
372
447
|
Payer = Shapes::StringShape.new(name: 'Payer')
|
373
448
|
Permission = Shapes::StringShape.new(name: 'Permission')
|
374
449
|
Policy = Shapes::StringShape.new(name: 'Policy')
|
@@ -384,6 +459,7 @@ module Aws::S3
|
|
384
459
|
PutBucketAnalyticsConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketAnalyticsConfigurationRequest')
|
385
460
|
PutBucketCorsRequest = Shapes::StructureShape.new(name: 'PutBucketCorsRequest')
|
386
461
|
PutBucketEncryptionRequest = Shapes::StructureShape.new(name: 'PutBucketEncryptionRequest')
|
462
|
+
PutBucketIntelligentTieringConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketIntelligentTieringConfigurationRequest')
|
387
463
|
PutBucketInventoryConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketInventoryConfigurationRequest')
|
388
464
|
PutBucketLifecycleConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketLifecycleConfigurationRequest')
|
389
465
|
PutBucketLifecycleRequest = Shapes::StructureShape.new(name: 'PutBucketLifecycleRequest')
|
@@ -391,6 +467,7 @@ module Aws::S3
|
|
391
467
|
PutBucketMetricsConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketMetricsConfigurationRequest')
|
392
468
|
PutBucketNotificationConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketNotificationConfigurationRequest')
|
393
469
|
PutBucketNotificationRequest = Shapes::StructureShape.new(name: 'PutBucketNotificationRequest')
|
470
|
+
PutBucketOwnershipControlsRequest = Shapes::StructureShape.new(name: 'PutBucketOwnershipControlsRequest')
|
394
471
|
PutBucketPolicyRequest = Shapes::StructureShape.new(name: 'PutBucketPolicyRequest')
|
395
472
|
PutBucketReplicationRequest = Shapes::StructureShape.new(name: 'PutBucketReplicationRequest')
|
396
473
|
PutBucketRequestPaymentRequest = Shapes::StructureShape.new(name: 'PutBucketRequestPaymentRequest')
|
@@ -423,9 +500,12 @@ module Aws::S3
|
|
423
500
|
RecordsEvent = Shapes::StructureShape.new(name: 'RecordsEvent')
|
424
501
|
Redirect = Shapes::StructureShape.new(name: 'Redirect')
|
425
502
|
RedirectAllRequestsTo = Shapes::StructureShape.new(name: 'RedirectAllRequestsTo')
|
503
|
+
Region = Shapes::StringShape.new(name: 'Region')
|
426
504
|
ReplaceKeyPrefixWith = Shapes::StringShape.new(name: 'ReplaceKeyPrefixWith')
|
427
505
|
ReplaceKeyWith = Shapes::StringShape.new(name: 'ReplaceKeyWith')
|
428
506
|
ReplicaKmsKeyID = Shapes::StringShape.new(name: 'ReplicaKmsKeyID')
|
507
|
+
ReplicaModifications = Shapes::StructureShape.new(name: 'ReplicaModifications')
|
508
|
+
ReplicaModificationsStatus = Shapes::StringShape.new(name: 'ReplicaModificationsStatus')
|
429
509
|
ReplicationConfiguration = Shapes::StructureShape.new(name: 'ReplicationConfiguration')
|
430
510
|
ReplicationRule = Shapes::StructureShape.new(name: 'ReplicationRule')
|
431
511
|
ReplicationRuleAndOperator = Shapes::StructureShape.new(name: 'ReplicationRuleAndOperator')
|
@@ -433,22 +513,29 @@ module Aws::S3
|
|
433
513
|
ReplicationRuleStatus = Shapes::StringShape.new(name: 'ReplicationRuleStatus')
|
434
514
|
ReplicationRules = Shapes::ListShape.new(name: 'ReplicationRules', flattened: true)
|
435
515
|
ReplicationStatus = Shapes::StringShape.new(name: 'ReplicationStatus')
|
516
|
+
ReplicationTime = Shapes::StructureShape.new(name: 'ReplicationTime')
|
517
|
+
ReplicationTimeStatus = Shapes::StringShape.new(name: 'ReplicationTimeStatus')
|
518
|
+
ReplicationTimeValue = Shapes::StructureShape.new(name: 'ReplicationTimeValue')
|
436
519
|
RequestCharged = Shapes::StringShape.new(name: 'RequestCharged')
|
437
520
|
RequestPayer = Shapes::StringShape.new(name: 'RequestPayer')
|
438
521
|
RequestPaymentConfiguration = Shapes::StructureShape.new(name: 'RequestPaymentConfiguration')
|
439
522
|
RequestProgress = Shapes::StructureShape.new(name: 'RequestProgress')
|
523
|
+
RequestRoute = Shapes::StringShape.new(name: 'RequestRoute')
|
524
|
+
RequestToken = Shapes::StringShape.new(name: 'RequestToken')
|
440
525
|
ResponseCacheControl = Shapes::StringShape.new(name: 'ResponseCacheControl')
|
441
526
|
ResponseContentDisposition = Shapes::StringShape.new(name: 'ResponseContentDisposition')
|
442
527
|
ResponseContentEncoding = Shapes::StringShape.new(name: 'ResponseContentEncoding')
|
443
528
|
ResponseContentLanguage = Shapes::StringShape.new(name: 'ResponseContentLanguage')
|
444
529
|
ResponseContentType = Shapes::StringShape.new(name: 'ResponseContentType')
|
445
|
-
ResponseExpires = Shapes::TimestampShape.new(name: 'ResponseExpires')
|
530
|
+
ResponseExpires = Shapes::TimestampShape.new(name: 'ResponseExpires', timestampFormat: "rfc822")
|
446
531
|
Restore = Shapes::StringShape.new(name: 'Restore')
|
532
|
+
RestoreExpiryDate = Shapes::TimestampShape.new(name: 'RestoreExpiryDate')
|
447
533
|
RestoreObjectOutput = Shapes::StructureShape.new(name: 'RestoreObjectOutput')
|
448
534
|
RestoreObjectRequest = Shapes::StructureShape.new(name: 'RestoreObjectRequest')
|
449
535
|
RestoreOutputPath = Shapes::StringShape.new(name: 'RestoreOutputPath')
|
450
536
|
RestoreRequest = Shapes::StructureShape.new(name: 'RestoreRequest')
|
451
537
|
RestoreRequestType = Shapes::StringShape.new(name: 'RestoreRequestType')
|
538
|
+
RestoreStatus = Shapes::StructureShape.new(name: 'RestoreStatus')
|
452
539
|
Role = Shapes::StringShape.new(name: 'Role')
|
453
540
|
RoutingRule = Shapes::StructureShape.new(name: 'RoutingRule')
|
454
541
|
RoutingRules = Shapes::ListShape.new(name: 'RoutingRules')
|
@@ -463,6 +550,7 @@ module Aws::S3
|
|
463
550
|
SSEKMSEncryptionContext = Shapes::StringShape.new(name: 'SSEKMSEncryptionContext')
|
464
551
|
SSEKMSKeyId = Shapes::StringShape.new(name: 'SSEKMSKeyId')
|
465
552
|
SSES3 = Shapes::StructureShape.new(name: 'SSES3')
|
553
|
+
ScanRange = Shapes::StructureShape.new(name: 'ScanRange')
|
466
554
|
SelectObjectContentEventStream = Shapes::StructureShape.new(name: 'SelectObjectContentEventStream')
|
467
555
|
SelectObjectContentOutput = Shapes::StructureShape.new(name: 'SelectObjectContentOutput')
|
468
556
|
SelectObjectContentRequest = Shapes::StructureShape.new(name: 'SelectObjectContentRequest')
|
@@ -472,11 +560,18 @@ module Aws::S3
|
|
472
560
|
ServerSideEncryptionConfiguration = Shapes::StructureShape.new(name: 'ServerSideEncryptionConfiguration')
|
473
561
|
ServerSideEncryptionRule = Shapes::StructureShape.new(name: 'ServerSideEncryptionRule')
|
474
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')
|
475
567
|
Setting = Shapes::BooleanShape.new(name: 'Setting')
|
568
|
+
SimplePrefix = Shapes::StructureShape.new(name: 'SimplePrefix')
|
476
569
|
Size = Shapes::IntegerShape.new(name: 'Size')
|
570
|
+
SkipValidation = Shapes::BooleanShape.new(name: 'SkipValidation')
|
477
571
|
SourceSelectionCriteria = Shapes::StructureShape.new(name: 'SourceSelectionCriteria')
|
478
572
|
SseKmsEncryptedObjects = Shapes::StructureShape.new(name: 'SseKmsEncryptedObjects')
|
479
573
|
SseKmsEncryptedObjectsStatus = Shapes::StringShape.new(name: 'SseKmsEncryptedObjectsStatus')
|
574
|
+
Start = Shapes::IntegerShape.new(name: 'Start')
|
480
575
|
StartAfter = Shapes::StringShape.new(name: 'StartAfter')
|
481
576
|
Stats = Shapes::StructureShape.new(name: 'Stats')
|
482
577
|
StatsEvent = Shapes::StructureShape.new(name: 'StatsEvent')
|
@@ -494,8 +589,11 @@ module Aws::S3
|
|
494
589
|
TargetBucket = Shapes::StringShape.new(name: 'TargetBucket')
|
495
590
|
TargetGrant = Shapes::StructureShape.new(name: 'TargetGrant')
|
496
591
|
TargetGrants = Shapes::ListShape.new(name: 'TargetGrants')
|
592
|
+
TargetObjectKeyFormat = Shapes::StructureShape.new(name: 'TargetObjectKeyFormat')
|
497
593
|
TargetPrefix = Shapes::StringShape.new(name: 'TargetPrefix')
|
498
594
|
Tier = Shapes::StringShape.new(name: 'Tier')
|
595
|
+
Tiering = Shapes::StructureShape.new(name: 'Tiering')
|
596
|
+
TieringList = Shapes::ListShape.new(name: 'TieringList', flattened: true)
|
499
597
|
Token = Shapes::StringShape.new(name: 'Token')
|
500
598
|
TopicArn = Shapes::StringShape.new(name: 'TopicArn')
|
501
599
|
TopicConfiguration = Shapes::StructureShape.new(name: 'TopicConfiguration')
|
@@ -513,10 +611,12 @@ module Aws::S3
|
|
513
611
|
UploadPartRequest = Shapes::StructureShape.new(name: 'UploadPartRequest')
|
514
612
|
UserMetadata = Shapes::ListShape.new(name: 'UserMetadata')
|
515
613
|
Value = Shapes::StringShape.new(name: 'Value')
|
614
|
+
VersionCount = Shapes::IntegerShape.new(name: 'VersionCount')
|
516
615
|
VersionIdMarker = Shapes::StringShape.new(name: 'VersionIdMarker')
|
517
616
|
VersioningConfiguration = Shapes::StructureShape.new(name: 'VersioningConfiguration')
|
518
617
|
WebsiteConfiguration = Shapes::StructureShape.new(name: 'WebsiteConfiguration')
|
519
618
|
WebsiteRedirectLocation = Shapes::StringShape.new(name: 'WebsiteRedirectLocation')
|
619
|
+
WriteGetObjectResponseRequest = Shapes::StructureShape.new(name: 'WriteGetObjectResponseRequest')
|
520
620
|
Years = Shapes::IntegerShape.new(name: 'Years')
|
521
621
|
|
522
622
|
AbortIncompleteMultipartUpload.add_member(:days_after_initiation, Shapes::ShapeRef.new(shape: DaysAfterInitiation, location_name: "DaysAfterInitiation"))
|
@@ -525,10 +625,11 @@ module Aws::S3
|
|
525
625
|
AbortMultipartUploadOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
526
626
|
AbortMultipartUploadOutput.struct_class = Types::AbortMultipartUploadOutput
|
527
627
|
|
528
|
-
AbortMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
529
|
-
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"}}))
|
530
630
|
AbortMultipartUploadRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
531
631
|
AbortMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
632
|
+
AbortMultipartUploadRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
532
633
|
AbortMultipartUploadRequest.struct_class = Types::AbortMultipartUploadRequest
|
533
634
|
|
534
635
|
AccelerateConfiguration.add_member(:status, Shapes::ShapeRef.new(shape: BucketAccelerateStatus, location_name: "Status"))
|
@@ -576,6 +677,14 @@ module Aws::S3
|
|
576
677
|
Bucket.add_member(:creation_date, Shapes::ShapeRef.new(shape: CreationDate, location_name: "CreationDate"))
|
577
678
|
Bucket.struct_class = Types::Bucket
|
578
679
|
|
680
|
+
BucketAlreadyExists.struct_class = Types::BucketAlreadyExists
|
681
|
+
|
682
|
+
BucketAlreadyOwnedByYou.struct_class = Types::BucketAlreadyOwnedByYou
|
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
|
+
|
579
688
|
BucketLifecycleConfiguration.add_member(:rules, Shapes::ShapeRef.new(shape: LifecycleRules, required: true, location_name: "Rule"))
|
580
689
|
BucketLifecycleConfiguration.struct_class = Types::BucketLifecycleConfiguration
|
581
690
|
|
@@ -587,6 +696,7 @@ module Aws::S3
|
|
587
696
|
CORSConfiguration.add_member(:cors_rules, Shapes::ShapeRef.new(shape: CORSRules, required: true, location_name: "CORSRule"))
|
588
697
|
CORSConfiguration.struct_class = Types::CORSConfiguration
|
589
698
|
|
699
|
+
CORSRule.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
|
590
700
|
CORSRule.add_member(:allowed_headers, Shapes::ShapeRef.new(shape: AllowedHeaders, location_name: "AllowedHeader"))
|
591
701
|
CORSRule.add_member(:allowed_methods, Shapes::ShapeRef.new(shape: AllowedMethods, required: true, location_name: "AllowedMethod"))
|
592
702
|
CORSRule.add_member(:allowed_origins, Shapes::ShapeRef.new(shape: AllowedOrigins, required: true, location_name: "AllowedOrigin"))
|
@@ -612,6 +722,14 @@ module Aws::S3
|
|
612
722
|
CSVOutput.add_member(:quote_character, Shapes::ShapeRef.new(shape: QuoteCharacter, location_name: "QuoteCharacter"))
|
613
723
|
CSVOutput.struct_class = Types::CSVOutput
|
614
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
|
+
|
615
733
|
CloudFunctionConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
|
616
734
|
CloudFunctionConfiguration.add_member(:event, Shapes::ShapeRef.new(shape: Event, deprecated: true, location_name: "Event"))
|
617
735
|
CloudFunctionConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, location_name: "Event"))
|
@@ -629,17 +747,30 @@ module Aws::S3
|
|
629
747
|
CompleteMultipartUploadOutput.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
630
748
|
CompleteMultipartUploadOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
|
631
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"))
|
632
754
|
CompleteMultipartUploadOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
633
755
|
CompleteMultipartUploadOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
634
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"))
|
757
|
+
CompleteMultipartUploadOutput.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
635
758
|
CompleteMultipartUploadOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
636
759
|
CompleteMultipartUploadOutput.struct_class = Types::CompleteMultipartUploadOutput
|
637
760
|
|
638
|
-
CompleteMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
639
|
-
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"}}))
|
640
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/"}}))
|
641
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"))
|
642
769
|
CompleteMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
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"))
|
643
774
|
CompleteMultipartUploadRequest.struct_class = Types::CompleteMultipartUploadRequest
|
644
775
|
CompleteMultipartUploadRequest[:payload] = :multipart_upload
|
645
776
|
CompleteMultipartUploadRequest[:payload_member] = CompleteMultipartUploadRequest.member(:multipart_upload)
|
@@ -648,6 +779,10 @@ module Aws::S3
|
|
648
779
|
CompletedMultipartUpload.struct_class = Types::CompletedMultipartUpload
|
649
780
|
|
650
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"))
|
651
786
|
CompletedPart.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location_name: "PartNumber"))
|
652
787
|
CompletedPart.struct_class = Types::CompletedPart
|
653
788
|
|
@@ -668,14 +803,16 @@ module Aws::S3
|
|
668
803
|
CopyObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
669
804
|
CopyObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
670
805
|
CopyObjectOutput.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
|
806
|
+
CopyObjectOutput.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
671
807
|
CopyObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
672
808
|
CopyObjectOutput.struct_class = Types::CopyObjectOutput
|
673
809
|
CopyObjectOutput[:payload] = :copy_object_result
|
674
810
|
CopyObjectOutput[:payload_member] = CopyObjectOutput.member(:copy_object_result)
|
675
811
|
|
676
812
|
CopyObjectRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
677
|
-
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"}}))
|
678
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"))
|
679
816
|
CopyObjectRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
|
680
817
|
CopyObjectRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
|
681
818
|
CopyObjectRequest.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
|
@@ -702,6 +839,7 @@ module Aws::S3
|
|
702
839
|
CopyObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
703
840
|
CopyObjectRequest.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
704
841
|
CopyObjectRequest.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
|
842
|
+
CopyObjectRequest.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
705
843
|
CopyObjectRequest.add_member(:copy_source_sse_customer_algorithm, Shapes::ShapeRef.new(shape: CopySourceSSECustomerAlgorithm, location: "header", location_name: "x-amz-copy-source-server-side-encryption-customer-algorithm"))
|
706
844
|
CopyObjectRequest.add_member(:copy_source_sse_customer_key, Shapes::ShapeRef.new(shape: CopySourceSSECustomerKey, location: "header", location_name: "x-amz-copy-source-server-side-encryption-customer-key"))
|
707
845
|
CopyObjectRequest.add_member(:copy_source_sse_customer_key_md5, Shapes::ShapeRef.new(shape: CopySourceSSECustomerKeyMD5, location: "header", location_name: "x-amz-copy-source-server-side-encryption-customer-key-MD5"))
|
@@ -710,24 +848,36 @@ module Aws::S3
|
|
710
848
|
CopyObjectRequest.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: ObjectLockMode, location: "header", location_name: "x-amz-object-lock-mode"))
|
711
849
|
CopyObjectRequest.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: ObjectLockRetainUntilDate, location: "header", location_name: "x-amz-object-lock-retain-until-date"))
|
712
850
|
CopyObjectRequest.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
|
851
|
+
CopyObjectRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
852
|
+
CopyObjectRequest.add_member(:expected_source_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-source-expected-bucket-owner"))
|
713
853
|
CopyObjectRequest.struct_class = Types::CopyObjectRequest
|
714
854
|
|
715
855
|
CopyObjectResult.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
716
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"))
|
717
861
|
CopyObjectResult.struct_class = Types::CopyObjectResult
|
718
862
|
|
719
863
|
CopyPartResult.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
720
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"))
|
721
869
|
CopyPartResult.struct_class = Types::CopyPartResult
|
722
870
|
|
723
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"))
|
724
874
|
CreateBucketConfiguration.struct_class = Types::CreateBucketConfiguration
|
725
875
|
|
726
876
|
CreateBucketOutput.add_member(:location, Shapes::ShapeRef.new(shape: Location, location: "header", location_name: "Location"))
|
727
877
|
CreateBucketOutput.struct_class = Types::CreateBucketOutput
|
728
878
|
|
729
879
|
CreateBucketRequest.add_member(:acl, Shapes::ShapeRef.new(shape: BucketCannedACL, location: "header", location_name: "x-amz-acl"))
|
730
|
-
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"}}))
|
731
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/"}}))
|
732
882
|
CreateBucketRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
733
883
|
CreateBucketRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
@@ -735,6 +885,7 @@ module Aws::S3
|
|
735
885
|
CreateBucketRequest.add_member(:grant_write, Shapes::ShapeRef.new(shape: GrantWrite, location: "header", location_name: "x-amz-grant-write"))
|
736
886
|
CreateBucketRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
737
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"))
|
738
889
|
CreateBucketRequest.struct_class = Types::CreateBucketRequest
|
739
890
|
CreateBucketRequest[:payload] = :create_bucket_configuration
|
740
891
|
CreateBucketRequest[:payload_member] = CreateBucketRequest.member(:create_bucket_configuration)
|
@@ -749,11 +900,13 @@ module Aws::S3
|
|
749
900
|
CreateMultipartUploadOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
750
901
|
CreateMultipartUploadOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
751
902
|
CreateMultipartUploadOutput.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
|
903
|
+
CreateMultipartUploadOutput.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
752
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"))
|
753
906
|
CreateMultipartUploadOutput.struct_class = Types::CreateMultipartUploadOutput
|
754
907
|
|
755
908
|
CreateMultipartUploadRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
756
|
-
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"}}))
|
757
910
|
CreateMultipartUploadRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
758
911
|
CreateMultipartUploadRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
|
759
912
|
CreateMultipartUploadRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
|
@@ -764,7 +917,7 @@ module Aws::S3
|
|
764
917
|
CreateMultipartUploadRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
765
918
|
CreateMultipartUploadRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
766
919
|
CreateMultipartUploadRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
767
|
-
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"}}))
|
768
921
|
CreateMultipartUploadRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
|
769
922
|
CreateMultipartUploadRequest.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
770
923
|
CreateMultipartUploadRequest.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
|
@@ -774,13 +927,23 @@ module Aws::S3
|
|
774
927
|
CreateMultipartUploadRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
775
928
|
CreateMultipartUploadRequest.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
776
929
|
CreateMultipartUploadRequest.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
|
930
|
+
CreateMultipartUploadRequest.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
777
931
|
CreateMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
778
932
|
CreateMultipartUploadRequest.add_member(:tagging, Shapes::ShapeRef.new(shape: TaggingHeader, location: "header", location_name: "x-amz-tagging"))
|
779
933
|
CreateMultipartUploadRequest.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: ObjectLockMode, location: "header", location_name: "x-amz-object-lock-mode"))
|
780
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"))
|
781
935
|
CreateMultipartUploadRequest.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
|
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"))
|
782
938
|
CreateMultipartUploadRequest.struct_class = Types::CreateMultipartUploadRequest
|
783
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
|
+
|
784
947
|
DefaultRetention.add_member(:mode, Shapes::ShapeRef.new(shape: ObjectLockRetentionMode, location_name: "Mode"))
|
785
948
|
DefaultRetention.add_member(:days, Shapes::ShapeRef.new(shape: Days, location_name: "Days"))
|
786
949
|
DefaultRetention.add_member(:years, Shapes::ShapeRef.new(shape: Years, location_name: "Years"))
|
@@ -790,40 +953,59 @@ module Aws::S3
|
|
790
953
|
Delete.add_member(:quiet, Shapes::ShapeRef.new(shape: Quiet, location_name: "Quiet"))
|
791
954
|
Delete.struct_class = Types::Delete
|
792
955
|
|
793
|
-
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"}}))
|
794
957
|
DeleteBucketAnalyticsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: AnalyticsId, required: true, location: "querystring", location_name: "id"))
|
958
|
+
DeleteBucketAnalyticsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
795
959
|
DeleteBucketAnalyticsConfigurationRequest.struct_class = Types::DeleteBucketAnalyticsConfigurationRequest
|
796
960
|
|
797
|
-
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"}}))
|
962
|
+
DeleteBucketCorsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
798
963
|
DeleteBucketCorsRequest.struct_class = Types::DeleteBucketCorsRequest
|
799
964
|
|
800
|
-
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"}}))
|
966
|
+
DeleteBucketEncryptionRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
801
967
|
DeleteBucketEncryptionRequest.struct_class = Types::DeleteBucketEncryptionRequest
|
802
968
|
|
803
|
-
|
969
|
+
DeleteBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
970
|
+
DeleteBucketIntelligentTieringConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: IntelligentTieringId, required: true, location: "querystring", location_name: "id"))
|
971
|
+
DeleteBucketIntelligentTieringConfigurationRequest.struct_class = Types::DeleteBucketIntelligentTieringConfigurationRequest
|
972
|
+
|
973
|
+
DeleteBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
804
974
|
DeleteBucketInventoryConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: InventoryId, required: true, location: "querystring", location_name: "id"))
|
975
|
+
DeleteBucketInventoryConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
805
976
|
DeleteBucketInventoryConfigurationRequest.struct_class = Types::DeleteBucketInventoryConfigurationRequest
|
806
977
|
|
807
|
-
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"}}))
|
979
|
+
DeleteBucketLifecycleRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
808
980
|
DeleteBucketLifecycleRequest.struct_class = Types::DeleteBucketLifecycleRequest
|
809
981
|
|
810
|
-
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"}}))
|
811
983
|
DeleteBucketMetricsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location: "querystring", location_name: "id"))
|
984
|
+
DeleteBucketMetricsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
812
985
|
DeleteBucketMetricsConfigurationRequest.struct_class = Types::DeleteBucketMetricsConfigurationRequest
|
813
986
|
|
814
|
-
|
987
|
+
DeleteBucketOwnershipControlsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
988
|
+
DeleteBucketOwnershipControlsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
989
|
+
DeleteBucketOwnershipControlsRequest.struct_class = Types::DeleteBucketOwnershipControlsRequest
|
990
|
+
|
991
|
+
DeleteBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
992
|
+
DeleteBucketPolicyRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
815
993
|
DeleteBucketPolicyRequest.struct_class = Types::DeleteBucketPolicyRequest
|
816
994
|
|
817
|
-
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"}}))
|
996
|
+
DeleteBucketReplicationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
818
997
|
DeleteBucketReplicationRequest.struct_class = Types::DeleteBucketReplicationRequest
|
819
998
|
|
820
|
-
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"}}))
|
1000
|
+
DeleteBucketRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
821
1001
|
DeleteBucketRequest.struct_class = Types::DeleteBucketRequest
|
822
1002
|
|
823
|
-
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"}}))
|
1004
|
+
DeleteBucketTaggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
824
1005
|
DeleteBucketTaggingRequest.struct_class = Types::DeleteBucketTaggingRequest
|
825
1006
|
|
826
|
-
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"}}))
|
1008
|
+
DeleteBucketWebsiteRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
827
1009
|
DeleteBucketWebsiteRequest.struct_class = Types::DeleteBucketWebsiteRequest
|
828
1010
|
|
829
1011
|
DeleteMarkerEntry.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
@@ -843,20 +1025,22 @@ module Aws::S3
|
|
843
1025
|
DeleteObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
844
1026
|
DeleteObjectOutput.struct_class = Types::DeleteObjectOutput
|
845
1027
|
|
846
|
-
DeleteObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
847
|
-
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"}}))
|
848
1030
|
DeleteObjectRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
|
849
1031
|
DeleteObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
850
1032
|
DeleteObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
851
1033
|
DeleteObjectRequest.add_member(:bypass_governance_retention, Shapes::ShapeRef.new(shape: BypassGovernanceRetention, location: "header", location_name: "x-amz-bypass-governance-retention"))
|
1034
|
+
DeleteObjectRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
852
1035
|
DeleteObjectRequest.struct_class = Types::DeleteObjectRequest
|
853
1036
|
|
854
1037
|
DeleteObjectTaggingOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
855
1038
|
DeleteObjectTaggingOutput.struct_class = Types::DeleteObjectTaggingOutput
|
856
1039
|
|
857
|
-
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"}}))
|
858
1041
|
DeleteObjectTaggingRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
859
1042
|
DeleteObjectTaggingRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1043
|
+
DeleteObjectTaggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
860
1044
|
DeleteObjectTaggingRequest.struct_class = Types::DeleteObjectTaggingRequest
|
861
1045
|
|
862
1046
|
DeleteObjectsOutput.add_member(:deleted, Shapes::ShapeRef.new(shape: DeletedObjects, location_name: "Deleted"))
|
@@ -864,16 +1048,19 @@ module Aws::S3
|
|
864
1048
|
DeleteObjectsOutput.add_member(:errors, Shapes::ShapeRef.new(shape: Errors, location_name: "Error"))
|
865
1049
|
DeleteObjectsOutput.struct_class = Types::DeleteObjectsOutput
|
866
1050
|
|
867
|
-
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"}}))
|
868
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/"}}))
|
869
1053
|
DeleteObjectsRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
|
870
1054
|
DeleteObjectsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
871
1055
|
DeleteObjectsRequest.add_member(:bypass_governance_retention, Shapes::ShapeRef.new(shape: BypassGovernanceRetention, location: "header", location_name: "x-amz-bypass-governance-retention"))
|
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"))
|
872
1058
|
DeleteObjectsRequest.struct_class = Types::DeleteObjectsRequest
|
873
1059
|
DeleteObjectsRequest[:payload] = :delete
|
874
1060
|
DeleteObjectsRequest[:payload_member] = DeleteObjectsRequest.member(:delete)
|
875
1061
|
|
876
|
-
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"}}))
|
1063
|
+
DeletePublicAccessBlockRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
877
1064
|
DeletePublicAccessBlockRequest.struct_class = Types::DeletePublicAccessBlockRequest
|
878
1065
|
|
879
1066
|
DeletedObject.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
@@ -889,6 +1076,8 @@ module Aws::S3
|
|
889
1076
|
Destination.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
|
890
1077
|
Destination.add_member(:access_control_translation, Shapes::ShapeRef.new(shape: AccessControlTranslation, location_name: "AccessControlTranslation"))
|
891
1078
|
Destination.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "EncryptionConfiguration"))
|
1079
|
+
Destination.add_member(:replication_time, Shapes::ShapeRef.new(shape: ReplicationTime, location_name: "ReplicationTime"))
|
1080
|
+
Destination.add_member(:metrics, Shapes::ShapeRef.new(shape: Metrics, location_name: "Metrics"))
|
892
1081
|
Destination.struct_class = Types::Destination
|
893
1082
|
|
894
1083
|
Encryption.add_member(:encryption_type, Shapes::ShapeRef.new(shape: ServerSideEncryption, required: true, location_name: "EncryptionType"))
|
@@ -912,8 +1101,13 @@ module Aws::S3
|
|
912
1101
|
|
913
1102
|
Errors.member = Shapes::ShapeRef.new(shape: Error)
|
914
1103
|
|
1104
|
+
EventBridgeConfiguration.struct_class = Types::EventBridgeConfiguration
|
1105
|
+
|
915
1106
|
EventList.member = Shapes::ShapeRef.new(shape: Event)
|
916
1107
|
|
1108
|
+
ExistingObjectReplication.add_member(:status, Shapes::ShapeRef.new(shape: ExistingObjectReplicationStatus, required: true, location_name: "Status"))
|
1109
|
+
ExistingObjectReplication.struct_class = Types::ExistingObjectReplication
|
1110
|
+
|
917
1111
|
ExposeHeaders.member = Shapes::ShapeRef.new(shape: ExposeHeader)
|
918
1112
|
|
919
1113
|
FilterRule.add_member(:name, Shapes::ShapeRef.new(shape: FilterRuleName, location_name: "Name"))
|
@@ -923,16 +1117,20 @@ module Aws::S3
|
|
923
1117
|
FilterRuleList.member = Shapes::ShapeRef.new(shape: FilterRule)
|
924
1118
|
|
925
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"))
|
926
1121
|
GetBucketAccelerateConfigurationOutput.struct_class = Types::GetBucketAccelerateConfigurationOutput
|
927
1122
|
|
928
|
-
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"}}))
|
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"))
|
929
1126
|
GetBucketAccelerateConfigurationRequest.struct_class = Types::GetBucketAccelerateConfigurationRequest
|
930
1127
|
|
931
1128
|
GetBucketAclOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
932
1129
|
GetBucketAclOutput.add_member(:grants, Shapes::ShapeRef.new(shape: Grants, location_name: "AccessControlList"))
|
933
1130
|
GetBucketAclOutput.struct_class = Types::GetBucketAclOutput
|
934
1131
|
|
935
|
-
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"}}))
|
1133
|
+
GetBucketAclRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
936
1134
|
GetBucketAclRequest.struct_class = Types::GetBucketAclRequest
|
937
1135
|
|
938
1136
|
GetBucketAnalyticsConfigurationOutput.add_member(:analytics_configuration, Shapes::ShapeRef.new(shape: AnalyticsConfiguration, location_name: "AnalyticsConfiguration"))
|
@@ -940,14 +1138,16 @@ module Aws::S3
|
|
940
1138
|
GetBucketAnalyticsConfigurationOutput[:payload] = :analytics_configuration
|
941
1139
|
GetBucketAnalyticsConfigurationOutput[:payload_member] = GetBucketAnalyticsConfigurationOutput.member(:analytics_configuration)
|
942
1140
|
|
943
|
-
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"}}))
|
944
1142
|
GetBucketAnalyticsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: AnalyticsId, required: true, location: "querystring", location_name: "id"))
|
1143
|
+
GetBucketAnalyticsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
945
1144
|
GetBucketAnalyticsConfigurationRequest.struct_class = Types::GetBucketAnalyticsConfigurationRequest
|
946
1145
|
|
947
1146
|
GetBucketCorsOutput.add_member(:cors_rules, Shapes::ShapeRef.new(shape: CORSRules, location_name: "CORSRule"))
|
948
1147
|
GetBucketCorsOutput.struct_class = Types::GetBucketCorsOutput
|
949
1148
|
|
950
|
-
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"}}))
|
1150
|
+
GetBucketCorsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
951
1151
|
GetBucketCorsRequest.struct_class = Types::GetBucketCorsRequest
|
952
1152
|
|
953
1153
|
GetBucketEncryptionOutput.add_member(:server_side_encryption_configuration, Shapes::ShapeRef.new(shape: ServerSideEncryptionConfiguration, location_name: "ServerSideEncryptionConfiguration"))
|
@@ -955,40 +1155,55 @@ module Aws::S3
|
|
955
1155
|
GetBucketEncryptionOutput[:payload] = :server_side_encryption_configuration
|
956
1156
|
GetBucketEncryptionOutput[:payload_member] = GetBucketEncryptionOutput.member(:server_side_encryption_configuration)
|
957
1157
|
|
958
|
-
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"}}))
|
1159
|
+
GetBucketEncryptionRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
959
1160
|
GetBucketEncryptionRequest.struct_class = Types::GetBucketEncryptionRequest
|
960
1161
|
|
1162
|
+
GetBucketIntelligentTieringConfigurationOutput.add_member(:intelligent_tiering_configuration, Shapes::ShapeRef.new(shape: IntelligentTieringConfiguration, location_name: "IntelligentTieringConfiguration"))
|
1163
|
+
GetBucketIntelligentTieringConfigurationOutput.struct_class = Types::GetBucketIntelligentTieringConfigurationOutput
|
1164
|
+
GetBucketIntelligentTieringConfigurationOutput[:payload] = :intelligent_tiering_configuration
|
1165
|
+
GetBucketIntelligentTieringConfigurationOutput[:payload_member] = GetBucketIntelligentTieringConfigurationOutput.member(:intelligent_tiering_configuration)
|
1166
|
+
|
1167
|
+
GetBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1168
|
+
GetBucketIntelligentTieringConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: IntelligentTieringId, required: true, location: "querystring", location_name: "id"))
|
1169
|
+
GetBucketIntelligentTieringConfigurationRequest.struct_class = Types::GetBucketIntelligentTieringConfigurationRequest
|
1170
|
+
|
961
1171
|
GetBucketInventoryConfigurationOutput.add_member(:inventory_configuration, Shapes::ShapeRef.new(shape: InventoryConfiguration, location_name: "InventoryConfiguration"))
|
962
1172
|
GetBucketInventoryConfigurationOutput.struct_class = Types::GetBucketInventoryConfigurationOutput
|
963
1173
|
GetBucketInventoryConfigurationOutput[:payload] = :inventory_configuration
|
964
1174
|
GetBucketInventoryConfigurationOutput[:payload_member] = GetBucketInventoryConfigurationOutput.member(:inventory_configuration)
|
965
1175
|
|
966
|
-
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"}}))
|
967
1177
|
GetBucketInventoryConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: InventoryId, required: true, location: "querystring", location_name: "id"))
|
1178
|
+
GetBucketInventoryConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
968
1179
|
GetBucketInventoryConfigurationRequest.struct_class = Types::GetBucketInventoryConfigurationRequest
|
969
1180
|
|
970
1181
|
GetBucketLifecycleConfigurationOutput.add_member(:rules, Shapes::ShapeRef.new(shape: LifecycleRules, location_name: "Rule"))
|
971
1182
|
GetBucketLifecycleConfigurationOutput.struct_class = Types::GetBucketLifecycleConfigurationOutput
|
972
1183
|
|
973
|
-
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"}}))
|
1185
|
+
GetBucketLifecycleConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
974
1186
|
GetBucketLifecycleConfigurationRequest.struct_class = Types::GetBucketLifecycleConfigurationRequest
|
975
1187
|
|
976
1188
|
GetBucketLifecycleOutput.add_member(:rules, Shapes::ShapeRef.new(shape: Rules, location_name: "Rule"))
|
977
1189
|
GetBucketLifecycleOutput.struct_class = Types::GetBucketLifecycleOutput
|
978
1190
|
|
979
|
-
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"}}))
|
1192
|
+
GetBucketLifecycleRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
980
1193
|
GetBucketLifecycleRequest.struct_class = Types::GetBucketLifecycleRequest
|
981
1194
|
|
982
1195
|
GetBucketLocationOutput.add_member(:location_constraint, Shapes::ShapeRef.new(shape: BucketLocationConstraint, location_name: "LocationConstraint"))
|
983
1196
|
GetBucketLocationOutput.struct_class = Types::GetBucketLocationOutput
|
984
1197
|
|
985
|
-
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"}}))
|
1199
|
+
GetBucketLocationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
986
1200
|
GetBucketLocationRequest.struct_class = Types::GetBucketLocationRequest
|
987
1201
|
|
988
1202
|
GetBucketLoggingOutput.add_member(:logging_enabled, Shapes::ShapeRef.new(shape: LoggingEnabled, location_name: "LoggingEnabled"))
|
989
1203
|
GetBucketLoggingOutput.struct_class = Types::GetBucketLoggingOutput
|
990
1204
|
|
991
|
-
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"}}))
|
1206
|
+
GetBucketLoggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
992
1207
|
GetBucketLoggingRequest.struct_class = Types::GetBucketLoggingRequest
|
993
1208
|
|
994
1209
|
GetBucketMetricsConfigurationOutput.add_member(:metrics_configuration, Shapes::ShapeRef.new(shape: MetricsConfiguration, location_name: "MetricsConfiguration"))
|
@@ -996,19 +1211,31 @@ module Aws::S3
|
|
996
1211
|
GetBucketMetricsConfigurationOutput[:payload] = :metrics_configuration
|
997
1212
|
GetBucketMetricsConfigurationOutput[:payload_member] = GetBucketMetricsConfigurationOutput.member(:metrics_configuration)
|
998
1213
|
|
999
|
-
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"}}))
|
1000
1215
|
GetBucketMetricsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location: "querystring", location_name: "id"))
|
1216
|
+
GetBucketMetricsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1001
1217
|
GetBucketMetricsConfigurationRequest.struct_class = Types::GetBucketMetricsConfigurationRequest
|
1002
1218
|
|
1003
|
-
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"}}))
|
1220
|
+
GetBucketNotificationConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1004
1221
|
GetBucketNotificationConfigurationRequest.struct_class = Types::GetBucketNotificationConfigurationRequest
|
1005
1222
|
|
1223
|
+
GetBucketOwnershipControlsOutput.add_member(:ownership_controls, Shapes::ShapeRef.new(shape: OwnershipControls, location_name: "OwnershipControls"))
|
1224
|
+
GetBucketOwnershipControlsOutput.struct_class = Types::GetBucketOwnershipControlsOutput
|
1225
|
+
GetBucketOwnershipControlsOutput[:payload] = :ownership_controls
|
1226
|
+
GetBucketOwnershipControlsOutput[:payload_member] = GetBucketOwnershipControlsOutput.member(:ownership_controls)
|
1227
|
+
|
1228
|
+
GetBucketOwnershipControlsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1229
|
+
GetBucketOwnershipControlsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1230
|
+
GetBucketOwnershipControlsRequest.struct_class = Types::GetBucketOwnershipControlsRequest
|
1231
|
+
|
1006
1232
|
GetBucketPolicyOutput.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, location_name: "Policy"))
|
1007
1233
|
GetBucketPolicyOutput.struct_class = Types::GetBucketPolicyOutput
|
1008
1234
|
GetBucketPolicyOutput[:payload] = :policy
|
1009
1235
|
GetBucketPolicyOutput[:payload_member] = GetBucketPolicyOutput.member(:policy)
|
1010
1236
|
|
1011
|
-
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"}}))
|
1238
|
+
GetBucketPolicyRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1012
1239
|
GetBucketPolicyRequest.struct_class = Types::GetBucketPolicyRequest
|
1013
1240
|
|
1014
1241
|
GetBucketPolicyStatusOutput.add_member(:policy_status, Shapes::ShapeRef.new(shape: PolicyStatus, location_name: "PolicyStatus"))
|
@@ -1016,7 +1243,8 @@ module Aws::S3
|
|
1016
1243
|
GetBucketPolicyStatusOutput[:payload] = :policy_status
|
1017
1244
|
GetBucketPolicyStatusOutput[:payload_member] = GetBucketPolicyStatusOutput.member(:policy_status)
|
1018
1245
|
|
1019
|
-
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"}}))
|
1247
|
+
GetBucketPolicyStatusRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1020
1248
|
GetBucketPolicyStatusRequest.struct_class = Types::GetBucketPolicyStatusRequest
|
1021
1249
|
|
1022
1250
|
GetBucketReplicationOutput.add_member(:replication_configuration, Shapes::ShapeRef.new(shape: ReplicationConfiguration, location_name: "ReplicationConfiguration"))
|
@@ -1024,26 +1252,30 @@ module Aws::S3
|
|
1024
1252
|
GetBucketReplicationOutput[:payload] = :replication_configuration
|
1025
1253
|
GetBucketReplicationOutput[:payload_member] = GetBucketReplicationOutput.member(:replication_configuration)
|
1026
1254
|
|
1027
|
-
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"}}))
|
1256
|
+
GetBucketReplicationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1028
1257
|
GetBucketReplicationRequest.struct_class = Types::GetBucketReplicationRequest
|
1029
1258
|
|
1030
1259
|
GetBucketRequestPaymentOutput.add_member(:payer, Shapes::ShapeRef.new(shape: Payer, location_name: "Payer"))
|
1031
1260
|
GetBucketRequestPaymentOutput.struct_class = Types::GetBucketRequestPaymentOutput
|
1032
1261
|
|
1033
|
-
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"}}))
|
1263
|
+
GetBucketRequestPaymentRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1034
1264
|
GetBucketRequestPaymentRequest.struct_class = Types::GetBucketRequestPaymentRequest
|
1035
1265
|
|
1036
1266
|
GetBucketTaggingOutput.add_member(:tag_set, Shapes::ShapeRef.new(shape: TagSet, required: true, location_name: "TagSet"))
|
1037
1267
|
GetBucketTaggingOutput.struct_class = Types::GetBucketTaggingOutput
|
1038
1268
|
|
1039
|
-
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"}}))
|
1270
|
+
GetBucketTaggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1040
1271
|
GetBucketTaggingRequest.struct_class = Types::GetBucketTaggingRequest
|
1041
1272
|
|
1042
1273
|
GetBucketVersioningOutput.add_member(:status, Shapes::ShapeRef.new(shape: BucketVersioningStatus, location_name: "Status"))
|
1043
1274
|
GetBucketVersioningOutput.add_member(:mfa_delete, Shapes::ShapeRef.new(shape: MFADeleteStatus, location_name: "MfaDelete"))
|
1044
1275
|
GetBucketVersioningOutput.struct_class = Types::GetBucketVersioningOutput
|
1045
1276
|
|
1046
|
-
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"}}))
|
1278
|
+
GetBucketVersioningRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1047
1279
|
GetBucketVersioningRequest.struct_class = Types::GetBucketVersioningRequest
|
1048
1280
|
|
1049
1281
|
GetBucketWebsiteOutput.add_member(:redirect_all_requests_to, Shapes::ShapeRef.new(shape: RedirectAllRequestsTo, location_name: "RedirectAllRequestsTo"))
|
@@ -1052,7 +1284,8 @@ module Aws::S3
|
|
1052
1284
|
GetBucketWebsiteOutput.add_member(:routing_rules, Shapes::ShapeRef.new(shape: RoutingRules, location_name: "RoutingRules"))
|
1053
1285
|
GetBucketWebsiteOutput.struct_class = Types::GetBucketWebsiteOutput
|
1054
1286
|
|
1055
|
-
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"}}))
|
1288
|
+
GetBucketWebsiteRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1056
1289
|
GetBucketWebsiteRequest.struct_class = Types::GetBucketWebsiteRequest
|
1057
1290
|
|
1058
1291
|
GetObjectAclOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
@@ -1060,21 +1293,55 @@ module Aws::S3
|
|
1060
1293
|
GetObjectAclOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1061
1294
|
GetObjectAclOutput.struct_class = Types::GetObjectAclOutput
|
1062
1295
|
|
1063
|
-
GetObjectAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1064
|
-
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"}}))
|
1065
1298
|
GetObjectAclRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1066
1299
|
GetObjectAclRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1300
|
+
GetObjectAclRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1067
1301
|
GetObjectAclRequest.struct_class = Types::GetObjectAclRequest
|
1068
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
|
+
|
1069
1335
|
GetObjectLegalHoldOutput.add_member(:legal_hold, Shapes::ShapeRef.new(shape: ObjectLockLegalHold, location_name: "LegalHold"))
|
1070
1336
|
GetObjectLegalHoldOutput.struct_class = Types::GetObjectLegalHoldOutput
|
1071
1337
|
GetObjectLegalHoldOutput[:payload] = :legal_hold
|
1072
1338
|
GetObjectLegalHoldOutput[:payload_member] = GetObjectLegalHoldOutput.member(:legal_hold)
|
1073
1339
|
|
1074
|
-
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"}}))
|
1075
1341
|
GetObjectLegalHoldRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1076
1342
|
GetObjectLegalHoldRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1077
1343
|
GetObjectLegalHoldRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1344
|
+
GetObjectLegalHoldRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1078
1345
|
GetObjectLegalHoldRequest.struct_class = Types::GetObjectLegalHoldRequest
|
1079
1346
|
|
1080
1347
|
GetObjectLockConfigurationOutput.add_member(:object_lock_configuration, Shapes::ShapeRef.new(shape: ObjectLockConfiguration, location_name: "ObjectLockConfiguration"))
|
@@ -1082,7 +1349,8 @@ module Aws::S3
|
|
1082
1349
|
GetObjectLockConfigurationOutput[:payload] = :object_lock_configuration
|
1083
1350
|
GetObjectLockConfigurationOutput[:payload_member] = GetObjectLockConfigurationOutput.member(:object_lock_configuration)
|
1084
1351
|
|
1085
|
-
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"}}))
|
1353
|
+
GetObjectLockConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1086
1354
|
GetObjectLockConfigurationRequest.struct_class = Types::GetObjectLockConfigurationRequest
|
1087
1355
|
|
1088
1356
|
GetObjectOutput.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
@@ -1093,6 +1361,10 @@ module Aws::S3
|
|
1093
1361
|
GetObjectOutput.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location: "header", location_name: "Last-Modified"))
|
1094
1362
|
GetObjectOutput.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
1095
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"))
|
1096
1368
|
GetObjectOutput.add_member(:missing_meta, Shapes::ShapeRef.new(shape: MissingMeta, location: "header", location_name: "x-amz-missing-meta"))
|
1097
1369
|
GetObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
1098
1370
|
GetObjectOutput.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
@@ -1109,6 +1381,7 @@ module Aws::S3
|
|
1109
1381
|
GetObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
1110
1382
|
GetObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1111
1383
|
GetObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
1384
|
+
GetObjectOutput.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
1112
1385
|
GetObjectOutput.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
|
1113
1386
|
GetObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1114
1387
|
GetObjectOutput.add_member(:replication_status, Shapes::ShapeRef.new(shape: ReplicationStatus, location: "header", location_name: "x-amz-replication-status"))
|
@@ -1121,12 +1394,12 @@ module Aws::S3
|
|
1121
1394
|
GetObjectOutput[:payload] = :body
|
1122
1395
|
GetObjectOutput[:payload_member] = GetObjectOutput.member(:body)
|
1123
1396
|
|
1124
|
-
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"}}))
|
1125
1398
|
GetObjectRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: IfMatch, location: "header", location_name: "If-Match"))
|
1126
1399
|
GetObjectRequest.add_member(:if_modified_since, Shapes::ShapeRef.new(shape: IfModifiedSince, location: "header", location_name: "If-Modified-Since"))
|
1127
1400
|
GetObjectRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
|
1128
1401
|
GetObjectRequest.add_member(:if_unmodified_since, Shapes::ShapeRef.new(shape: IfUnmodifiedSince, location: "header", location_name: "If-Unmodified-Since"))
|
1129
|
-
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"}}))
|
1130
1403
|
GetObjectRequest.add_member(:range, Shapes::ShapeRef.new(shape: Range, location: "header", location_name: "Range"))
|
1131
1404
|
GetObjectRequest.add_member(:response_cache_control, Shapes::ShapeRef.new(shape: ResponseCacheControl, location: "querystring", location_name: "response-cache-control"))
|
1132
1405
|
GetObjectRequest.add_member(:response_content_disposition, Shapes::ShapeRef.new(shape: ResponseContentDisposition, location: "querystring", location_name: "response-content-disposition"))
|
@@ -1140,6 +1413,8 @@ module Aws::S3
|
|
1140
1413
|
GetObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1141
1414
|
GetObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1142
1415
|
GetObjectRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location: "querystring", location_name: "partNumber"))
|
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"))
|
1143
1418
|
GetObjectRequest.struct_class = Types::GetObjectRequest
|
1144
1419
|
|
1145
1420
|
GetObjectRetentionOutput.add_member(:retention, Shapes::ShapeRef.new(shape: ObjectLockRetention, location_name: "Retention"))
|
@@ -1147,19 +1422,22 @@ module Aws::S3
|
|
1147
1422
|
GetObjectRetentionOutput[:payload] = :retention
|
1148
1423
|
GetObjectRetentionOutput[:payload_member] = GetObjectRetentionOutput.member(:retention)
|
1149
1424
|
|
1150
|
-
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"}}))
|
1151
1426
|
GetObjectRetentionRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1152
1427
|
GetObjectRetentionRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1153
1428
|
GetObjectRetentionRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1429
|
+
GetObjectRetentionRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1154
1430
|
GetObjectRetentionRequest.struct_class = Types::GetObjectRetentionRequest
|
1155
1431
|
|
1156
1432
|
GetObjectTaggingOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
1157
1433
|
GetObjectTaggingOutput.add_member(:tag_set, Shapes::ShapeRef.new(shape: TagSet, required: true, location_name: "TagSet"))
|
1158
1434
|
GetObjectTaggingOutput.struct_class = Types::GetObjectTaggingOutput
|
1159
1435
|
|
1160
|
-
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"}}))
|
1161
1437
|
GetObjectTaggingRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1162
1438
|
GetObjectTaggingRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
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"))
|
1163
1441
|
GetObjectTaggingRequest.struct_class = Types::GetObjectTaggingRequest
|
1164
1442
|
|
1165
1443
|
GetObjectTorrentOutput.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
@@ -1168,9 +1446,10 @@ module Aws::S3
|
|
1168
1446
|
GetObjectTorrentOutput[:payload] = :body
|
1169
1447
|
GetObjectTorrentOutput[:payload_member] = GetObjectTorrentOutput.member(:body)
|
1170
1448
|
|
1171
|
-
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"}}))
|
1172
1450
|
GetObjectTorrentRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1173
1451
|
GetObjectTorrentRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1452
|
+
GetObjectTorrentRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1174
1453
|
GetObjectTorrentRequest.struct_class = Types::GetObjectTorrentRequest
|
1175
1454
|
|
1176
1455
|
GetPublicAccessBlockOutput.add_member(:public_access_block_configuration, Shapes::ShapeRef.new(shape: PublicAccessBlockConfiguration, location_name: "PublicAccessBlockConfiguration"))
|
@@ -1178,7 +1457,8 @@ module Aws::S3
|
|
1178
1457
|
GetPublicAccessBlockOutput[:payload] = :public_access_block_configuration
|
1179
1458
|
GetPublicAccessBlockOutput[:payload_member] = GetPublicAccessBlockOutput.member(:public_access_block_configuration)
|
1180
1459
|
|
1181
|
-
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"}}))
|
1461
|
+
GetPublicAccessBlockRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1182
1462
|
GetPublicAccessBlockRequest.struct_class = Types::GetPublicAccessBlockRequest
|
1183
1463
|
|
1184
1464
|
GlacierJobParameters.add_member(:tier, Shapes::ShapeRef.new(shape: Tier, required: true, location_name: "Tier"))
|
@@ -1197,15 +1477,27 @@ module Aws::S3
|
|
1197
1477
|
|
1198
1478
|
Grants.member = Shapes::ShapeRef.new(shape: Grant, location_name: "Grant")
|
1199
1479
|
|
1200
|
-
|
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"}}))
|
1487
|
+
HeadBucketRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1201
1488
|
HeadBucketRequest.struct_class = Types::HeadBucketRequest
|
1202
1489
|
|
1203
1490
|
HeadObjectOutput.add_member(:delete_marker, Shapes::ShapeRef.new(shape: DeleteMarker, location: "header", location_name: "x-amz-delete-marker"))
|
1204
1491
|
HeadObjectOutput.add_member(:accept_ranges, Shapes::ShapeRef.new(shape: AcceptRanges, location: "header", location_name: "accept-ranges"))
|
1205
1492
|
HeadObjectOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
|
1206
1493
|
HeadObjectOutput.add_member(:restore, Shapes::ShapeRef.new(shape: Restore, location: "header", location_name: "x-amz-restore"))
|
1494
|
+
HeadObjectOutput.add_member(:archive_status, Shapes::ShapeRef.new(shape: ArchiveStatus, location: "header", location_name: "x-amz-archive-status"))
|
1207
1495
|
HeadObjectOutput.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location: "header", location_name: "Last-Modified"))
|
1208
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"))
|
1209
1501
|
HeadObjectOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
|
1210
1502
|
HeadObjectOutput.add_member(:missing_meta, Shapes::ShapeRef.new(shape: MissingMeta, location: "header", location_name: "x-amz-missing-meta"))
|
1211
1503
|
HeadObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
@@ -1222,6 +1514,7 @@ module Aws::S3
|
|
1222
1514
|
HeadObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
1223
1515
|
HeadObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1224
1516
|
HeadObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
1517
|
+
HeadObjectOutput.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
1225
1518
|
HeadObjectOutput.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
|
1226
1519
|
HeadObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1227
1520
|
HeadObjectOutput.add_member(:replication_status, Shapes::ShapeRef.new(shape: ReplicationStatus, location: "header", location_name: "x-amz-replication-status"))
|
@@ -1231,12 +1524,12 @@ module Aws::S3
|
|
1231
1524
|
HeadObjectOutput.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
|
1232
1525
|
HeadObjectOutput.struct_class = Types::HeadObjectOutput
|
1233
1526
|
|
1234
|
-
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"}}))
|
1235
1528
|
HeadObjectRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: IfMatch, location: "header", location_name: "If-Match"))
|
1236
1529
|
HeadObjectRequest.add_member(:if_modified_since, Shapes::ShapeRef.new(shape: IfModifiedSince, location: "header", location_name: "If-Modified-Since"))
|
1237
1530
|
HeadObjectRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
|
1238
1531
|
HeadObjectRequest.add_member(:if_unmodified_since, Shapes::ShapeRef.new(shape: IfUnmodifiedSince, location: "header", location_name: "If-Unmodified-Since"))
|
1239
|
-
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"}}))
|
1240
1533
|
HeadObjectRequest.add_member(:range, Shapes::ShapeRef.new(shape: Range, location: "header", location_name: "Range"))
|
1241
1534
|
HeadObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1242
1535
|
HeadObjectRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
@@ -1244,6 +1537,8 @@ module Aws::S3
|
|
1244
1537
|
HeadObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1245
1538
|
HeadObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1246
1539
|
HeadObjectRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location: "querystring", location_name: "partNumber"))
|
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"))
|
1247
1542
|
HeadObjectRequest.struct_class = Types::HeadObjectRequest
|
1248
1543
|
|
1249
1544
|
IndexDocument.add_member(:suffix, Shapes::ShapeRef.new(shape: Suffix, required: true, location_name: "Suffix"))
|
@@ -1259,6 +1554,27 @@ module Aws::S3
|
|
1259
1554
|
InputSerialization.add_member(:parquet, Shapes::ShapeRef.new(shape: ParquetInput, location_name: "Parquet"))
|
1260
1555
|
InputSerialization.struct_class = Types::InputSerialization
|
1261
1556
|
|
1557
|
+
IntelligentTieringAndOperator.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
1558
|
+
IntelligentTieringAndOperator.add_member(:tags, Shapes::ShapeRef.new(shape: TagSet, location_name: "Tag", metadata: {"flattened"=>true}))
|
1559
|
+
IntelligentTieringAndOperator.struct_class = Types::IntelligentTieringAndOperator
|
1560
|
+
|
1561
|
+
IntelligentTieringConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: IntelligentTieringId, required: true, location_name: "Id"))
|
1562
|
+
IntelligentTieringConfiguration.add_member(:filter, Shapes::ShapeRef.new(shape: IntelligentTieringFilter, location_name: "Filter"))
|
1563
|
+
IntelligentTieringConfiguration.add_member(:status, Shapes::ShapeRef.new(shape: IntelligentTieringStatus, required: true, location_name: "Status"))
|
1564
|
+
IntelligentTieringConfiguration.add_member(:tierings, Shapes::ShapeRef.new(shape: TieringList, required: true, location_name: "Tiering"))
|
1565
|
+
IntelligentTieringConfiguration.struct_class = Types::IntelligentTieringConfiguration
|
1566
|
+
|
1567
|
+
IntelligentTieringConfigurationList.member = Shapes::ShapeRef.new(shape: IntelligentTieringConfiguration)
|
1568
|
+
|
1569
|
+
IntelligentTieringFilter.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
1570
|
+
IntelligentTieringFilter.add_member(:tag, Shapes::ShapeRef.new(shape: Tag, location_name: "Tag"))
|
1571
|
+
IntelligentTieringFilter.add_member(:and, Shapes::ShapeRef.new(shape: IntelligentTieringAndOperator, location_name: "And"))
|
1572
|
+
IntelligentTieringFilter.struct_class = Types::IntelligentTieringFilter
|
1573
|
+
|
1574
|
+
InvalidObjectState.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
|
1575
|
+
InvalidObjectState.add_member(:access_tier, Shapes::ShapeRef.new(shape: IntelligentTieringAccessTier, location_name: "AccessTier"))
|
1576
|
+
InvalidObjectState.struct_class = Types::InvalidObjectState
|
1577
|
+
|
1262
1578
|
InventoryConfiguration.add_member(:destination, Shapes::ShapeRef.new(shape: InventoryDestination, required: true, location_name: "Destination"))
|
1263
1579
|
InventoryConfiguration.add_member(:is_enabled, Shapes::ShapeRef.new(shape: IsEnabled, required: true, location_name: "IsEnabled"))
|
1264
1580
|
InventoryConfiguration.add_member(:filter, Shapes::ShapeRef.new(shape: InventoryFilter, location_name: "Filter"))
|
@@ -1327,10 +1643,14 @@ module Aws::S3
|
|
1327
1643
|
|
1328
1644
|
LifecycleRuleAndOperator.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
1329
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"))
|
1330
1648
|
LifecycleRuleAndOperator.struct_class = Types::LifecycleRuleAndOperator
|
1331
1649
|
|
1332
1650
|
LifecycleRuleFilter.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
1333
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"))
|
1334
1654
|
LifecycleRuleFilter.add_member(:and, Shapes::ShapeRef.new(shape: LifecycleRuleAndOperator, location_name: "And"))
|
1335
1655
|
LifecycleRuleFilter.struct_class = Types::LifecycleRuleFilter
|
1336
1656
|
|
@@ -1342,18 +1662,30 @@ module Aws::S3
|
|
1342
1662
|
ListBucketAnalyticsConfigurationsOutput.add_member(:analytics_configuration_list, Shapes::ShapeRef.new(shape: AnalyticsConfigurationList, location_name: "AnalyticsConfiguration"))
|
1343
1663
|
ListBucketAnalyticsConfigurationsOutput.struct_class = Types::ListBucketAnalyticsConfigurationsOutput
|
1344
1664
|
|
1345
|
-
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"}}))
|
1346
1666
|
ListBucketAnalyticsConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
|
1667
|
+
ListBucketAnalyticsConfigurationsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1347
1668
|
ListBucketAnalyticsConfigurationsRequest.struct_class = Types::ListBucketAnalyticsConfigurationsRequest
|
1348
1669
|
|
1670
|
+
ListBucketIntelligentTieringConfigurationsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
1671
|
+
ListBucketIntelligentTieringConfigurationsOutput.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location_name: "ContinuationToken"))
|
1672
|
+
ListBucketIntelligentTieringConfigurationsOutput.add_member(:next_continuation_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextContinuationToken"))
|
1673
|
+
ListBucketIntelligentTieringConfigurationsOutput.add_member(:intelligent_tiering_configuration_list, Shapes::ShapeRef.new(shape: IntelligentTieringConfigurationList, location_name: "IntelligentTieringConfiguration"))
|
1674
|
+
ListBucketIntelligentTieringConfigurationsOutput.struct_class = Types::ListBucketIntelligentTieringConfigurationsOutput
|
1675
|
+
|
1676
|
+
ListBucketIntelligentTieringConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1677
|
+
ListBucketIntelligentTieringConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
|
1678
|
+
ListBucketIntelligentTieringConfigurationsRequest.struct_class = Types::ListBucketIntelligentTieringConfigurationsRequest
|
1679
|
+
|
1349
1680
|
ListBucketInventoryConfigurationsOutput.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location_name: "ContinuationToken"))
|
1350
1681
|
ListBucketInventoryConfigurationsOutput.add_member(:inventory_configuration_list, Shapes::ShapeRef.new(shape: InventoryConfigurationList, location_name: "InventoryConfiguration"))
|
1351
1682
|
ListBucketInventoryConfigurationsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
1352
1683
|
ListBucketInventoryConfigurationsOutput.add_member(:next_continuation_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextContinuationToken"))
|
1353
1684
|
ListBucketInventoryConfigurationsOutput.struct_class = Types::ListBucketInventoryConfigurationsOutput
|
1354
1685
|
|
1355
|
-
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"}}))
|
1356
1687
|
ListBucketInventoryConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
|
1688
|
+
ListBucketInventoryConfigurationsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1357
1689
|
ListBucketInventoryConfigurationsRequest.struct_class = Types::ListBucketInventoryConfigurationsRequest
|
1358
1690
|
|
1359
1691
|
ListBucketMetricsConfigurationsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
@@ -1362,14 +1694,23 @@ module Aws::S3
|
|
1362
1694
|
ListBucketMetricsConfigurationsOutput.add_member(:metrics_configuration_list, Shapes::ShapeRef.new(shape: MetricsConfigurationList, location_name: "MetricsConfiguration"))
|
1363
1695
|
ListBucketMetricsConfigurationsOutput.struct_class = Types::ListBucketMetricsConfigurationsOutput
|
1364
1696
|
|
1365
|
-
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"}}))
|
1366
1698
|
ListBucketMetricsConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
|
1699
|
+
ListBucketMetricsConfigurationsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1367
1700
|
ListBucketMetricsConfigurationsRequest.struct_class = Types::ListBucketMetricsConfigurationsRequest
|
1368
1701
|
|
1369
1702
|
ListBucketsOutput.add_member(:buckets, Shapes::ShapeRef.new(shape: Buckets, location_name: "Buckets"))
|
1370
1703
|
ListBucketsOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1371
1704
|
ListBucketsOutput.struct_class = Types::ListBucketsOutput
|
1372
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
|
+
|
1373
1714
|
ListMultipartUploadsOutput.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
|
1374
1715
|
ListMultipartUploadsOutput.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location_name: "KeyMarker"))
|
1375
1716
|
ListMultipartUploadsOutput.add_member(:upload_id_marker, Shapes::ShapeRef.new(shape: UploadIdMarker, location_name: "UploadIdMarker"))
|
@@ -1382,15 +1723,18 @@ module Aws::S3
|
|
1382
1723
|
ListMultipartUploadsOutput.add_member(:uploads, Shapes::ShapeRef.new(shape: MultipartUploadList, location_name: "Upload"))
|
1383
1724
|
ListMultipartUploadsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
|
1384
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"))
|
1385
1727
|
ListMultipartUploadsOutput.struct_class = Types::ListMultipartUploadsOutput
|
1386
1728
|
|
1387
|
-
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"}}))
|
1388
1730
|
ListMultipartUploadsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
1389
1731
|
ListMultipartUploadsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
1390
1732
|
ListMultipartUploadsRequest.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location: "querystring", location_name: "key-marker"))
|
1391
1733
|
ListMultipartUploadsRequest.add_member(:max_uploads, Shapes::ShapeRef.new(shape: MaxUploads, location: "querystring", location_name: "max-uploads"))
|
1392
|
-
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"}}))
|
1393
1735
|
ListMultipartUploadsRequest.add_member(:upload_id_marker, Shapes::ShapeRef.new(shape: UploadIdMarker, location: "querystring", location_name: "upload-id-marker"))
|
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"))
|
1394
1738
|
ListMultipartUploadsRequest.struct_class = Types::ListMultipartUploadsRequest
|
1395
1739
|
|
1396
1740
|
ListObjectVersionsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
@@ -1406,15 +1750,19 @@ module Aws::S3
|
|
1406
1750
|
ListObjectVersionsOutput.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location_name: "MaxKeys"))
|
1407
1751
|
ListObjectVersionsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
|
1408
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"))
|
1409
1754
|
ListObjectVersionsOutput.struct_class = Types::ListObjectVersionsOutput
|
1410
1755
|
|
1411
|
-
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"}}))
|
1412
1757
|
ListObjectVersionsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
1413
1758
|
ListObjectVersionsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
1414
1759
|
ListObjectVersionsRequest.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location: "querystring", location_name: "key-marker"))
|
1415
1760
|
ListObjectVersionsRequest.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
|
1416
|
-
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"}}))
|
1417
1762
|
ListObjectVersionsRequest.add_member(:version_id_marker, Shapes::ShapeRef.new(shape: VersionIdMarker, location: "querystring", location_name: "version-id-marker"))
|
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"))
|
1418
1766
|
ListObjectVersionsRequest.struct_class = Types::ListObjectVersionsRequest
|
1419
1767
|
|
1420
1768
|
ListObjectsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
@@ -1427,15 +1775,18 @@ module Aws::S3
|
|
1427
1775
|
ListObjectsOutput.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location_name: "MaxKeys"))
|
1428
1776
|
ListObjectsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
|
1429
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"))
|
1430
1779
|
ListObjectsOutput.struct_class = Types::ListObjectsOutput
|
1431
1780
|
|
1432
|
-
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"}}))
|
1433
1782
|
ListObjectsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
1434
1783
|
ListObjectsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
1435
1784
|
ListObjectsRequest.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location: "querystring", location_name: "marker"))
|
1436
1785
|
ListObjectsRequest.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
|
1437
|
-
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"}}))
|
1438
1787
|
ListObjectsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
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"))
|
1439
1790
|
ListObjectsRequest.struct_class = Types::ListObjectsRequest
|
1440
1791
|
|
1441
1792
|
ListObjectsV2Output.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
@@ -1450,17 +1801,20 @@ module Aws::S3
|
|
1450
1801
|
ListObjectsV2Output.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location_name: "ContinuationToken"))
|
1451
1802
|
ListObjectsV2Output.add_member(:next_continuation_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextContinuationToken"))
|
1452
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"))
|
1453
1805
|
ListObjectsV2Output.struct_class = Types::ListObjectsV2Output
|
1454
1806
|
|
1455
|
-
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"}}))
|
1456
1808
|
ListObjectsV2Request.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
1457
1809
|
ListObjectsV2Request.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
1458
1810
|
ListObjectsV2Request.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
|
1459
|
-
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"}}))
|
1460
1812
|
ListObjectsV2Request.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
|
1461
1813
|
ListObjectsV2Request.add_member(:fetch_owner, Shapes::ShapeRef.new(shape: FetchOwner, location: "querystring", location_name: "fetch-owner"))
|
1462
1814
|
ListObjectsV2Request.add_member(:start_after, Shapes::ShapeRef.new(shape: StartAfter, location: "querystring", location_name: "start-after"))
|
1463
1815
|
ListObjectsV2Request.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
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"))
|
1464
1818
|
ListObjectsV2Request.struct_class = Types::ListObjectsV2Request
|
1465
1819
|
|
1466
1820
|
ListPartsOutput.add_member(:abort_date, Shapes::ShapeRef.new(shape: AbortDate, location: "header", location_name: "x-amz-abort-date"))
|
@@ -1477,19 +1831,29 @@ module Aws::S3
|
|
1477
1831
|
ListPartsOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1478
1832
|
ListPartsOutput.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
|
1479
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"))
|
1480
1835
|
ListPartsOutput.struct_class = Types::ListPartsOutput
|
1481
1836
|
|
1482
|
-
ListPartsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1483
|
-
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"}}))
|
1484
1839
|
ListPartsRequest.add_member(:max_parts, Shapes::ShapeRef.new(shape: MaxParts, location: "querystring", location_name: "max-parts"))
|
1485
1840
|
ListPartsRequest.add_member(:part_number_marker, Shapes::ShapeRef.new(shape: PartNumberMarker, location: "querystring", location_name: "part-number-marker"))
|
1486
1841
|
ListPartsRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
1487
1842
|
ListPartsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
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"))
|
1488
1847
|
ListPartsRequest.struct_class = Types::ListPartsRequest
|
1489
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
|
+
|
1490
1853
|
LoggingEnabled.add_member(:target_bucket, Shapes::ShapeRef.new(shape: TargetBucket, required: true, location_name: "TargetBucket"))
|
1491
1854
|
LoggingEnabled.add_member(:target_grants, Shapes::ShapeRef.new(shape: TargetGrants, location_name: "TargetGrants"))
|
1492
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"))
|
1493
1857
|
LoggingEnabled.struct_class = Types::LoggingEnabled
|
1494
1858
|
|
1495
1859
|
Metadata.key = Shapes::ShapeRef.new(shape: MetadataKey)
|
@@ -1499,8 +1863,13 @@ module Aws::S3
|
|
1499
1863
|
MetadataEntry.add_member(:value, Shapes::ShapeRef.new(shape: MetadataValue, location_name: "Value"))
|
1500
1864
|
MetadataEntry.struct_class = Types::MetadataEntry
|
1501
1865
|
|
1866
|
+
Metrics.add_member(:status, Shapes::ShapeRef.new(shape: MetricsStatus, required: true, location_name: "Status"))
|
1867
|
+
Metrics.add_member(:event_threshold, Shapes::ShapeRef.new(shape: ReplicationTimeValue, location_name: "EventThreshold"))
|
1868
|
+
Metrics.struct_class = Types::Metrics
|
1869
|
+
|
1502
1870
|
MetricsAndOperator.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
1503
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"))
|
1504
1873
|
MetricsAndOperator.struct_class = Types::MetricsAndOperator
|
1505
1874
|
|
1506
1875
|
MetricsConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location_name: "Id"))
|
@@ -1511,6 +1880,7 @@ module Aws::S3
|
|
1511
1880
|
|
1512
1881
|
MetricsFilter.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
1513
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"))
|
1514
1884
|
MetricsFilter.add_member(:and, Shapes::ShapeRef.new(shape: MetricsAndOperator, location_name: "And"))
|
1515
1885
|
MetricsFilter.struct_class = Types::MetricsFilter
|
1516
1886
|
|
@@ -1520,15 +1890,24 @@ module Aws::S3
|
|
1520
1890
|
MultipartUpload.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
|
1521
1891
|
MultipartUpload.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1522
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"))
|
1523
1894
|
MultipartUpload.struct_class = Types::MultipartUpload
|
1524
1895
|
|
1525
1896
|
MultipartUploadList.member = Shapes::ShapeRef.new(shape: MultipartUpload)
|
1526
1897
|
|
1898
|
+
NoSuchBucket.struct_class = Types::NoSuchBucket
|
1899
|
+
|
1900
|
+
NoSuchKey.struct_class = Types::NoSuchKey
|
1901
|
+
|
1902
|
+
NoSuchUpload.struct_class = Types::NoSuchUpload
|
1903
|
+
|
1527
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"))
|
1528
1906
|
NoncurrentVersionExpiration.struct_class = Types::NoncurrentVersionExpiration
|
1529
1907
|
|
1530
1908
|
NoncurrentVersionTransition.add_member(:noncurrent_days, Shapes::ShapeRef.new(shape: Days, location_name: "NoncurrentDays"))
|
1531
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"))
|
1532
1911
|
NoncurrentVersionTransition.struct_class = Types::NoncurrentVersionTransition
|
1533
1912
|
|
1534
1913
|
NoncurrentVersionTransitionList.member = Shapes::ShapeRef.new(shape: NoncurrentVersionTransition)
|
@@ -1536,6 +1915,7 @@ module Aws::S3
|
|
1536
1915
|
NotificationConfiguration.add_member(:topic_configurations, Shapes::ShapeRef.new(shape: TopicConfigurationList, location_name: "TopicConfiguration"))
|
1537
1916
|
NotificationConfiguration.add_member(:queue_configurations, Shapes::ShapeRef.new(shape: QueueConfigurationList, location_name: "QueueConfiguration"))
|
1538
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"))
|
1539
1919
|
NotificationConfiguration.struct_class = Types::NotificationConfiguration
|
1540
1920
|
|
1541
1921
|
NotificationConfigurationDeprecated.add_member(:topic_configuration, Shapes::ShapeRef.new(shape: TopicConfigurationDeprecated, location_name: "TopicConfiguration"))
|
@@ -1549,11 +1929,17 @@ module Aws::S3
|
|
1549
1929
|
Object.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
1550
1930
|
Object.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
1551
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"))
|
1552
1933
|
Object.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
|
1553
1934
|
Object.add_member(:storage_class, Shapes::ShapeRef.new(shape: ObjectStorageClass, location_name: "StorageClass"))
|
1554
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"))
|
1555
1937
|
Object.struct_class = Types::Object
|
1556
1938
|
|
1939
|
+
ObjectAlreadyInActiveTierError.struct_class = Types::ObjectAlreadyInActiveTierError
|
1940
|
+
|
1941
|
+
ObjectAttributesList.member = Shapes::ShapeRef.new(shape: ObjectAttributes)
|
1942
|
+
|
1557
1943
|
ObjectIdentifier.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location_name: "Key"))
|
1558
1944
|
ObjectIdentifier.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
|
1559
1945
|
ObjectIdentifier.struct_class = Types::ObjectIdentifier
|
@@ -1576,7 +1962,18 @@ module Aws::S3
|
|
1576
1962
|
ObjectLockRule.add_member(:default_retention, Shapes::ShapeRef.new(shape: DefaultRetention, location_name: "DefaultRetention"))
|
1577
1963
|
ObjectLockRule.struct_class = Types::ObjectLockRule
|
1578
1964
|
|
1965
|
+
ObjectNotInActiveTierError.struct_class = Types::ObjectNotInActiveTierError
|
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
|
+
|
1579
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"))
|
1580
1977
|
ObjectVersion.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
|
1581
1978
|
ObjectVersion.add_member(:storage_class, Shapes::ShapeRef.new(shape: ObjectVersionStorageClass, location_name: "StorageClass"))
|
1582
1979
|
ObjectVersion.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
@@ -1584,10 +1981,13 @@ module Aws::S3
|
|
1584
1981
|
ObjectVersion.add_member(:is_latest, Shapes::ShapeRef.new(shape: IsLatest, location_name: "IsLatest"))
|
1585
1982
|
ObjectVersion.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
1586
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"))
|
1587
1985
|
ObjectVersion.struct_class = Types::ObjectVersion
|
1588
1986
|
|
1589
1987
|
ObjectVersionList.member = Shapes::ShapeRef.new(shape: ObjectVersion)
|
1590
1988
|
|
1989
|
+
OptionalObjectAttributesList.member = Shapes::ShapeRef.new(shape: OptionalObjectAttributes)
|
1990
|
+
|
1591
1991
|
OutputLocation.add_member(:s3, Shapes::ShapeRef.new(shape: S3Location, location_name: "S3"))
|
1592
1992
|
OutputLocation.struct_class = Types::OutputLocation
|
1593
1993
|
|
@@ -1599,16 +1999,33 @@ module Aws::S3
|
|
1599
1999
|
Owner.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
|
1600
2000
|
Owner.struct_class = Types::Owner
|
1601
2001
|
|
2002
|
+
OwnershipControls.add_member(:rules, Shapes::ShapeRef.new(shape: OwnershipControlsRules, required: true, location_name: "Rule"))
|
2003
|
+
OwnershipControls.struct_class = Types::OwnershipControls
|
2004
|
+
|
2005
|
+
OwnershipControlsRule.add_member(:object_ownership, Shapes::ShapeRef.new(shape: ObjectOwnership, required: true, location_name: "ObjectOwnership"))
|
2006
|
+
OwnershipControlsRule.struct_class = Types::OwnershipControlsRule
|
2007
|
+
|
2008
|
+
OwnershipControlsRules.member = Shapes::ShapeRef.new(shape: OwnershipControlsRule)
|
2009
|
+
|
1602
2010
|
ParquetInput.struct_class = Types::ParquetInput
|
1603
2011
|
|
1604
2012
|
Part.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location_name: "PartNumber"))
|
1605
2013
|
Part.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
1606
2014
|
Part.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
1607
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"))
|
1608
2020
|
Part.struct_class = Types::Part
|
1609
2021
|
|
2022
|
+
PartitionedPrefix.add_member(:partition_date_source, Shapes::ShapeRef.new(shape: PartitionDateSource, location_name: "PartitionDateSource"))
|
2023
|
+
PartitionedPrefix.struct_class = Types::PartitionedPrefix
|
2024
|
+
|
1610
2025
|
Parts.member = Shapes::ShapeRef.new(shape: Part)
|
1611
2026
|
|
2027
|
+
PartsList.member = Shapes::ShapeRef.new(shape: ObjectPart)
|
2028
|
+
|
1612
2029
|
PolicyStatus.add_member(:is_public, Shapes::ShapeRef.new(shape: IsPublic, location_name: "IsPublic"))
|
1613
2030
|
PolicyStatus.struct_class = Types::PolicyStatus
|
1614
2031
|
|
@@ -1626,134 +2043,182 @@ module Aws::S3
|
|
1626
2043
|
PublicAccessBlockConfiguration.add_member(:restrict_public_buckets, Shapes::ShapeRef.new(shape: Setting, location_name: "RestrictPublicBuckets"))
|
1627
2044
|
PublicAccessBlockConfiguration.struct_class = Types::PublicAccessBlockConfiguration
|
1628
2045
|
|
1629
|
-
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"}}))
|
1630
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/"}}))
|
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"))
|
1631
2050
|
PutBucketAccelerateConfigurationRequest.struct_class = Types::PutBucketAccelerateConfigurationRequest
|
1632
2051
|
PutBucketAccelerateConfigurationRequest[:payload] = :accelerate_configuration
|
1633
2052
|
PutBucketAccelerateConfigurationRequest[:payload_member] = PutBucketAccelerateConfigurationRequest.member(:accelerate_configuration)
|
1634
2053
|
|
1635
2054
|
PutBucketAclRequest.add_member(:acl, Shapes::ShapeRef.new(shape: BucketCannedACL, location: "header", location_name: "x-amz-acl"))
|
1636
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/"}}))
|
1637
|
-
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"}}))
|
1638
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"))
|
1639
2059
|
PutBucketAclRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
1640
2060
|
PutBucketAclRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
1641
2061
|
PutBucketAclRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
1642
2062
|
PutBucketAclRequest.add_member(:grant_write, Shapes::ShapeRef.new(shape: GrantWrite, location: "header", location_name: "x-amz-grant-write"))
|
1643
2063
|
PutBucketAclRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
2064
|
+
PutBucketAclRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1644
2065
|
PutBucketAclRequest.struct_class = Types::PutBucketAclRequest
|
1645
2066
|
PutBucketAclRequest[:payload] = :access_control_policy
|
1646
2067
|
PutBucketAclRequest[:payload_member] = PutBucketAclRequest.member(:access_control_policy)
|
1647
2068
|
|
1648
|
-
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"}}))
|
1649
2070
|
PutBucketAnalyticsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: AnalyticsId, required: true, location: "querystring", location_name: "id"))
|
1650
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/"}}))
|
2072
|
+
PutBucketAnalyticsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1651
2073
|
PutBucketAnalyticsConfigurationRequest.struct_class = Types::PutBucketAnalyticsConfigurationRequest
|
1652
2074
|
PutBucketAnalyticsConfigurationRequest[:payload] = :analytics_configuration
|
1653
2075
|
PutBucketAnalyticsConfigurationRequest[:payload_member] = PutBucketAnalyticsConfigurationRequest.member(:analytics_configuration)
|
1654
2076
|
|
1655
|
-
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"}}))
|
1656
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/"}}))
|
1657
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"))
|
2081
|
+
PutBucketCorsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1658
2082
|
PutBucketCorsRequest.struct_class = Types::PutBucketCorsRequest
|
1659
2083
|
PutBucketCorsRequest[:payload] = :cors_configuration
|
1660
2084
|
PutBucketCorsRequest[:payload_member] = PutBucketCorsRequest.member(:cors_configuration)
|
1661
2085
|
|
1662
|
-
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"}}))
|
1663
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"))
|
1664
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/"}}))
|
2090
|
+
PutBucketEncryptionRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1665
2091
|
PutBucketEncryptionRequest.struct_class = Types::PutBucketEncryptionRequest
|
1666
2092
|
PutBucketEncryptionRequest[:payload] = :server_side_encryption_configuration
|
1667
2093
|
PutBucketEncryptionRequest[:payload_member] = PutBucketEncryptionRequest.member(:server_side_encryption_configuration)
|
1668
2094
|
|
1669
|
-
|
2095
|
+
PutBucketIntelligentTieringConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2096
|
+
PutBucketIntelligentTieringConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: IntelligentTieringId, required: true, location: "querystring", location_name: "id"))
|
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/"}}))
|
2098
|
+
PutBucketIntelligentTieringConfigurationRequest.struct_class = Types::PutBucketIntelligentTieringConfigurationRequest
|
2099
|
+
PutBucketIntelligentTieringConfigurationRequest[:payload] = :intelligent_tiering_configuration
|
2100
|
+
PutBucketIntelligentTieringConfigurationRequest[:payload_member] = PutBucketIntelligentTieringConfigurationRequest.member(:intelligent_tiering_configuration)
|
2101
|
+
|
2102
|
+
PutBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1670
2103
|
PutBucketInventoryConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: InventoryId, required: true, location: "querystring", location_name: "id"))
|
1671
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/"}}))
|
2105
|
+
PutBucketInventoryConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1672
2106
|
PutBucketInventoryConfigurationRequest.struct_class = Types::PutBucketInventoryConfigurationRequest
|
1673
2107
|
PutBucketInventoryConfigurationRequest[:payload] = :inventory_configuration
|
1674
2108
|
PutBucketInventoryConfigurationRequest[:payload_member] = PutBucketInventoryConfigurationRequest.member(:inventory_configuration)
|
1675
2109
|
|
1676
|
-
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"))
|
1677
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/"}}))
|
2113
|
+
PutBucketLifecycleConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1678
2114
|
PutBucketLifecycleConfigurationRequest.struct_class = Types::PutBucketLifecycleConfigurationRequest
|
1679
2115
|
PutBucketLifecycleConfigurationRequest[:payload] = :lifecycle_configuration
|
1680
2116
|
PutBucketLifecycleConfigurationRequest[:payload_member] = PutBucketLifecycleConfigurationRequest.member(:lifecycle_configuration)
|
1681
2117
|
|
1682
|
-
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"}}))
|
1683
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"))
|
1684
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/"}}))
|
2122
|
+
PutBucketLifecycleRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1685
2123
|
PutBucketLifecycleRequest.struct_class = Types::PutBucketLifecycleRequest
|
1686
2124
|
PutBucketLifecycleRequest[:payload] = :lifecycle_configuration
|
1687
2125
|
PutBucketLifecycleRequest[:payload_member] = PutBucketLifecycleRequest.member(:lifecycle_configuration)
|
1688
2126
|
|
1689
|
-
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"}}))
|
1690
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/"}}))
|
1691
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"))
|
2131
|
+
PutBucketLoggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1692
2132
|
PutBucketLoggingRequest.struct_class = Types::PutBucketLoggingRequest
|
1693
2133
|
PutBucketLoggingRequest[:payload] = :bucket_logging_status
|
1694
2134
|
PutBucketLoggingRequest[:payload_member] = PutBucketLoggingRequest.member(:bucket_logging_status)
|
1695
2135
|
|
1696
|
-
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"}}))
|
1697
2137
|
PutBucketMetricsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location: "querystring", location_name: "id"))
|
1698
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/"}}))
|
2139
|
+
PutBucketMetricsConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1699
2140
|
PutBucketMetricsConfigurationRequest.struct_class = Types::PutBucketMetricsConfigurationRequest
|
1700
2141
|
PutBucketMetricsConfigurationRequest[:payload] = :metrics_configuration
|
1701
2142
|
PutBucketMetricsConfigurationRequest[:payload_member] = PutBucketMetricsConfigurationRequest.member(:metrics_configuration)
|
1702
2143
|
|
1703
|
-
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"}}))
|
1704
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/"}}))
|
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"))
|
1705
2148
|
PutBucketNotificationConfigurationRequest.struct_class = Types::PutBucketNotificationConfigurationRequest
|
1706
2149
|
PutBucketNotificationConfigurationRequest[:payload] = :notification_configuration
|
1707
2150
|
PutBucketNotificationConfigurationRequest[:payload_member] = PutBucketNotificationConfigurationRequest.member(:notification_configuration)
|
1708
2151
|
|
1709
|
-
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"}}))
|
1710
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"))
|
1711
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/"}}))
|
2156
|
+
PutBucketNotificationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1712
2157
|
PutBucketNotificationRequest.struct_class = Types::PutBucketNotificationRequest
|
1713
2158
|
PutBucketNotificationRequest[:payload] = :notification_configuration
|
1714
2159
|
PutBucketNotificationRequest[:payload_member] = PutBucketNotificationRequest.member(:notification_configuration)
|
1715
2160
|
|
1716
|
-
|
2161
|
+
PutBucketOwnershipControlsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
2162
|
+
PutBucketOwnershipControlsRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2163
|
+
PutBucketOwnershipControlsRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
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/"}}))
|
2165
|
+
PutBucketOwnershipControlsRequest.struct_class = Types::PutBucketOwnershipControlsRequest
|
2166
|
+
PutBucketOwnershipControlsRequest[:payload] = :ownership_controls
|
2167
|
+
PutBucketOwnershipControlsRequest[:payload_member] = PutBucketOwnershipControlsRequest.member(:ownership_controls)
|
2168
|
+
|
2169
|
+
PutBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket", metadata: {"contextParam"=>{"name"=>"Bucket"}}))
|
1717
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"))
|
1718
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"))
|
1719
2173
|
PutBucketPolicyRequest.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, required: true, location_name: "Policy"))
|
2174
|
+
PutBucketPolicyRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1720
2175
|
PutBucketPolicyRequest.struct_class = Types::PutBucketPolicyRequest
|
1721
2176
|
PutBucketPolicyRequest[:payload] = :policy
|
1722
2177
|
PutBucketPolicyRequest[:payload_member] = PutBucketPolicyRequest.member(:policy)
|
1723
2178
|
|
1724
|
-
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"}}))
|
1725
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"))
|
1726
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/"}}))
|
1727
2183
|
PutBucketReplicationRequest.add_member(:token, Shapes::ShapeRef.new(shape: ObjectLockToken, location: "header", location_name: "x-amz-bucket-object-lock-token"))
|
2184
|
+
PutBucketReplicationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1728
2185
|
PutBucketReplicationRequest.struct_class = Types::PutBucketReplicationRequest
|
1729
2186
|
PutBucketReplicationRequest[:payload] = :replication_configuration
|
1730
2187
|
PutBucketReplicationRequest[:payload_member] = PutBucketReplicationRequest.member(:replication_configuration)
|
1731
2188
|
|
1732
|
-
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"}}))
|
1733
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"))
|
1734
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/"}}))
|
2193
|
+
PutBucketRequestPaymentRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1735
2194
|
PutBucketRequestPaymentRequest.struct_class = Types::PutBucketRequestPaymentRequest
|
1736
2195
|
PutBucketRequestPaymentRequest[:payload] = :request_payment_configuration
|
1737
2196
|
PutBucketRequestPaymentRequest[:payload_member] = PutBucketRequestPaymentRequest.member(:request_payment_configuration)
|
1738
2197
|
|
1739
|
-
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"}}))
|
1740
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"))
|
1741
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/"}}))
|
2202
|
+
PutBucketTaggingRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1742
2203
|
PutBucketTaggingRequest.struct_class = Types::PutBucketTaggingRequest
|
1743
2204
|
PutBucketTaggingRequest[:payload] = :tagging
|
1744
2205
|
PutBucketTaggingRequest[:payload_member] = PutBucketTaggingRequest.member(:tagging)
|
1745
2206
|
|
1746
|
-
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"}}))
|
1747
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"))
|
1748
2210
|
PutBucketVersioningRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
|
1749
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/"}}))
|
2212
|
+
PutBucketVersioningRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1750
2213
|
PutBucketVersioningRequest.struct_class = Types::PutBucketVersioningRequest
|
1751
2214
|
PutBucketVersioningRequest[:payload] = :versioning_configuration
|
1752
2215
|
PutBucketVersioningRequest[:payload_member] = PutBucketVersioningRequest.member(:versioning_configuration)
|
1753
2216
|
|
1754
|
-
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"}}))
|
1755
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"))
|
1756
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/"}}))
|
2221
|
+
PutBucketWebsiteRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1757
2222
|
PutBucketWebsiteRequest.struct_class = Types::PutBucketWebsiteRequest
|
1758
2223
|
PutBucketWebsiteRequest[:payload] = :website_configuration
|
1759
2224
|
PutBucketWebsiteRequest[:payload_member] = PutBucketWebsiteRequest.member(:website_configuration)
|
@@ -1763,16 +2228,18 @@ module Aws::S3
|
|
1763
2228
|
|
1764
2229
|
PutObjectAclRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
1765
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/"}}))
|
1766
|
-
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"}}))
|
1767
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"))
|
1768
2234
|
PutObjectAclRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
1769
2235
|
PutObjectAclRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
1770
2236
|
PutObjectAclRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
1771
2237
|
PutObjectAclRequest.add_member(:grant_write, Shapes::ShapeRef.new(shape: GrantWrite, location: "header", location_name: "x-amz-grant-write"))
|
1772
2238
|
PutObjectAclRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
1773
|
-
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"}}))
|
1774
2240
|
PutObjectAclRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1775
2241
|
PutObjectAclRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
2242
|
+
PutObjectAclRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1776
2243
|
PutObjectAclRequest.struct_class = Types::PutObjectAclRequest
|
1777
2244
|
PutObjectAclRequest[:payload] = :access_control_policy
|
1778
2245
|
PutObjectAclRequest[:payload_member] = PutObjectAclRequest.member(:access_control_policy)
|
@@ -1780,12 +2247,14 @@ module Aws::S3
|
|
1780
2247
|
PutObjectLegalHoldOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1781
2248
|
PutObjectLegalHoldOutput.struct_class = Types::PutObjectLegalHoldOutput
|
1782
2249
|
|
1783
|
-
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"}}))
|
1784
2251
|
PutObjectLegalHoldRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1785
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/"}}))
|
1786
2253
|
PutObjectLegalHoldRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1787
2254
|
PutObjectLegalHoldRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1788
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"))
|
2257
|
+
PutObjectLegalHoldRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1789
2258
|
PutObjectLegalHoldRequest.struct_class = Types::PutObjectLegalHoldRequest
|
1790
2259
|
PutObjectLegalHoldRequest[:payload] = :legal_hold
|
1791
2260
|
PutObjectLegalHoldRequest[:payload_member] = PutObjectLegalHoldRequest.member(:legal_hold)
|
@@ -1793,29 +2262,36 @@ module Aws::S3
|
|
1793
2262
|
PutObjectLockConfigurationOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1794
2263
|
PutObjectLockConfigurationOutput.struct_class = Types::PutObjectLockConfigurationOutput
|
1795
2264
|
|
1796
|
-
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"}}))
|
1797
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/"}}))
|
1798
2267
|
PutObjectLockConfigurationRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1799
2268
|
PutObjectLockConfigurationRequest.add_member(:token, Shapes::ShapeRef.new(shape: ObjectLockToken, location: "header", location_name: "x-amz-bucket-object-lock-token"))
|
1800
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"))
|
2271
|
+
PutObjectLockConfigurationRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1801
2272
|
PutObjectLockConfigurationRequest.struct_class = Types::PutObjectLockConfigurationRequest
|
1802
2273
|
PutObjectLockConfigurationRequest[:payload] = :object_lock_configuration
|
1803
2274
|
PutObjectLockConfigurationRequest[:payload_member] = PutObjectLockConfigurationRequest.member(:object_lock_configuration)
|
1804
2275
|
|
1805
2276
|
PutObjectOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
|
1806
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"))
|
1807
2282
|
PutObjectOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
1808
2283
|
PutObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
1809
2284
|
PutObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
1810
2285
|
PutObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1811
2286
|
PutObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
1812
2287
|
PutObjectOutput.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
|
2288
|
+
PutObjectOutput.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
1813
2289
|
PutObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1814
2290
|
PutObjectOutput.struct_class = Types::PutObjectOutput
|
1815
2291
|
|
1816
2292
|
PutObjectRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
1817
2293
|
PutObjectRequest.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
1818
|
-
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"}}))
|
1819
2295
|
PutObjectRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
1820
2296
|
PutObjectRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
|
1821
2297
|
PutObjectRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
|
@@ -1823,12 +2299,17 @@ module Aws::S3
|
|
1823
2299
|
PutObjectRequest.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
1824
2300
|
PutObjectRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1825
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"))
|
1826
2307
|
PutObjectRequest.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
|
1827
2308
|
PutObjectRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
1828
2309
|
PutObjectRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
1829
2310
|
PutObjectRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
1830
2311
|
PutObjectRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
1831
|
-
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"}}))
|
1832
2313
|
PutObjectRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
|
1833
2314
|
PutObjectRequest.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
1834
2315
|
PutObjectRequest.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
|
@@ -1838,11 +2319,13 @@ module Aws::S3
|
|
1838
2319
|
PutObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1839
2320
|
PutObjectRequest.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
1840
2321
|
PutObjectRequest.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
|
2322
|
+
PutObjectRequest.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
1841
2323
|
PutObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1842
2324
|
PutObjectRequest.add_member(:tagging, Shapes::ShapeRef.new(shape: TaggingHeader, location: "header", location_name: "x-amz-tagging"))
|
1843
2325
|
PutObjectRequest.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: ObjectLockMode, location: "header", location_name: "x-amz-object-lock-mode"))
|
1844
2326
|
PutObjectRequest.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: ObjectLockRetainUntilDate, location: "header", location_name: "x-amz-object-lock-retain-until-date"))
|
1845
2327
|
PutObjectRequest.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
|
2328
|
+
PutObjectRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1846
2329
|
PutObjectRequest.struct_class = Types::PutObjectRequest
|
1847
2330
|
PutObjectRequest[:payload] = :body
|
1848
2331
|
PutObjectRequest[:payload_member] = PutObjectRequest.member(:body)
|
@@ -1850,13 +2333,15 @@ module Aws::S3
|
|
1850
2333
|
PutObjectRetentionOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1851
2334
|
PutObjectRetentionOutput.struct_class = Types::PutObjectRetentionOutput
|
1852
2335
|
|
1853
|
-
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"}}))
|
1854
2337
|
PutObjectRetentionRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1855
2338
|
PutObjectRetentionRequest.add_member(:retention, Shapes::ShapeRef.new(shape: ObjectLockRetention, location_name: "Retention", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1856
2339
|
PutObjectRetentionRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1857
2340
|
PutObjectRetentionRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1858
2341
|
PutObjectRetentionRequest.add_member(:bypass_governance_retention, Shapes::ShapeRef.new(shape: BypassGovernanceRetention, location: "header", location_name: "x-amz-bypass-governance-retention"))
|
1859
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"))
|
2344
|
+
PutObjectRetentionRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1860
2345
|
PutObjectRetentionRequest.struct_class = Types::PutObjectRetentionRequest
|
1861
2346
|
PutObjectRetentionRequest[:payload] = :retention
|
1862
2347
|
PutObjectRetentionRequest[:payload_member] = PutObjectRetentionRequest.member(:retention)
|
@@ -1864,18 +2349,23 @@ module Aws::S3
|
|
1864
2349
|
PutObjectTaggingOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
1865
2350
|
PutObjectTaggingOutput.struct_class = Types::PutObjectTaggingOutput
|
1866
2351
|
|
1867
|
-
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"}}))
|
1868
2353
|
PutObjectTaggingRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1869
2354
|
PutObjectTaggingRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1870
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"))
|
1871
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/"}}))
|
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"))
|
1872
2360
|
PutObjectTaggingRequest.struct_class = Types::PutObjectTaggingRequest
|
1873
2361
|
PutObjectTaggingRequest[:payload] = :tagging
|
1874
2362
|
PutObjectTaggingRequest[:payload_member] = PutObjectTaggingRequest.member(:tagging)
|
1875
2363
|
|
1876
|
-
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"}}))
|
1877
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"))
|
1878
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/"}}))
|
2368
|
+
PutPublicAccessBlockRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1879
2369
|
PutPublicAccessBlockRequest.struct_class = Types::PutPublicAccessBlockRequest
|
1880
2370
|
PutPublicAccessBlockRequest[:payload] = :public_access_block_configuration
|
1881
2371
|
PutPublicAccessBlockRequest[:payload_member] = PutPublicAccessBlockRequest.member(:public_access_block_configuration)
|
@@ -1908,6 +2398,9 @@ module Aws::S3
|
|
1908
2398
|
RedirectAllRequestsTo.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "Protocol"))
|
1909
2399
|
RedirectAllRequestsTo.struct_class = Types::RedirectAllRequestsTo
|
1910
2400
|
|
2401
|
+
ReplicaModifications.add_member(:status, Shapes::ShapeRef.new(shape: ReplicaModificationsStatus, required: true, location_name: "Status"))
|
2402
|
+
ReplicaModifications.struct_class = Types::ReplicaModifications
|
2403
|
+
|
1911
2404
|
ReplicationConfiguration.add_member(:role, Shapes::ShapeRef.new(shape: Role, required: true, location_name: "Role"))
|
1912
2405
|
ReplicationConfiguration.add_member(:rules, Shapes::ShapeRef.new(shape: ReplicationRules, required: true, location_name: "Rule"))
|
1913
2406
|
ReplicationConfiguration.struct_class = Types::ReplicationConfiguration
|
@@ -1918,6 +2411,7 @@ module Aws::S3
|
|
1918
2411
|
ReplicationRule.add_member(:filter, Shapes::ShapeRef.new(shape: ReplicationRuleFilter, location_name: "Filter"))
|
1919
2412
|
ReplicationRule.add_member(:status, Shapes::ShapeRef.new(shape: ReplicationRuleStatus, required: true, location_name: "Status"))
|
1920
2413
|
ReplicationRule.add_member(:source_selection_criteria, Shapes::ShapeRef.new(shape: SourceSelectionCriteria, location_name: "SourceSelectionCriteria"))
|
2414
|
+
ReplicationRule.add_member(:existing_object_replication, Shapes::ShapeRef.new(shape: ExistingObjectReplication, location_name: "ExistingObjectReplication"))
|
1921
2415
|
ReplicationRule.add_member(:destination, Shapes::ShapeRef.new(shape: Destination, required: true, location_name: "Destination"))
|
1922
2416
|
ReplicationRule.add_member(:delete_marker_replication, Shapes::ShapeRef.new(shape: DeleteMarkerReplication, location_name: "DeleteMarkerReplication"))
|
1923
2417
|
ReplicationRule.struct_class = Types::ReplicationRule
|
@@ -1933,6 +2427,13 @@ module Aws::S3
|
|
1933
2427
|
|
1934
2428
|
ReplicationRules.member = Shapes::ShapeRef.new(shape: ReplicationRule)
|
1935
2429
|
|
2430
|
+
ReplicationTime.add_member(:status, Shapes::ShapeRef.new(shape: ReplicationTimeStatus, required: true, location_name: "Status"))
|
2431
|
+
ReplicationTime.add_member(:time, Shapes::ShapeRef.new(shape: ReplicationTimeValue, required: true, location_name: "Time"))
|
2432
|
+
ReplicationTime.struct_class = Types::ReplicationTime
|
2433
|
+
|
2434
|
+
ReplicationTimeValue.add_member(:minutes, Shapes::ShapeRef.new(shape: Minutes, location_name: "Minutes"))
|
2435
|
+
ReplicationTimeValue.struct_class = Types::ReplicationTimeValue
|
2436
|
+
|
1936
2437
|
RequestPaymentConfiguration.add_member(:payer, Shapes::ShapeRef.new(shape: Payer, required: true, location_name: "Payer"))
|
1937
2438
|
RequestPaymentConfiguration.struct_class = Types::RequestPaymentConfiguration
|
1938
2439
|
|
@@ -1943,11 +2444,13 @@ module Aws::S3
|
|
1943
2444
|
RestoreObjectOutput.add_member(:restore_output_path, Shapes::ShapeRef.new(shape: RestoreOutputPath, location: "header", location_name: "x-amz-restore-output-path"))
|
1944
2445
|
RestoreObjectOutput.struct_class = Types::RestoreObjectOutput
|
1945
2446
|
|
1946
|
-
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"}}))
|
1947
2448
|
RestoreObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1948
2449
|
RestoreObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1949
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/"}}))
|
1950
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"))
|
2453
|
+
RestoreObjectRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
1951
2454
|
RestoreObjectRequest.struct_class = Types::RestoreObjectRequest
|
1952
2455
|
RestoreObjectRequest[:payload] = :restore_request
|
1953
2456
|
RestoreObjectRequest[:payload_member] = RestoreObjectRequest.member(:restore_request)
|
@@ -1961,6 +2464,10 @@ module Aws::S3
|
|
1961
2464
|
RestoreRequest.add_member(:output_location, Shapes::ShapeRef.new(shape: OutputLocation, location_name: "OutputLocation"))
|
1962
2465
|
RestoreRequest.struct_class = Types::RestoreRequest
|
1963
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
|
+
|
1964
2471
|
RoutingRule.add_member(:condition, Shapes::ShapeRef.new(shape: Condition, location_name: "Condition"))
|
1965
2472
|
RoutingRule.add_member(:redirect, Shapes::ShapeRef.new(shape: Redirect, required: true, location_name: "Redirect"))
|
1966
2473
|
RoutingRule.struct_class = Types::RoutingRule
|
@@ -1997,6 +2504,10 @@ module Aws::S3
|
|
1997
2504
|
|
1998
2505
|
SSES3.struct_class = Types::SSES3
|
1999
2506
|
|
2507
|
+
ScanRange.add_member(:start, Shapes::ShapeRef.new(shape: Start, location_name: "Start"))
|
2508
|
+
ScanRange.add_member(:end, Shapes::ShapeRef.new(shape: End, location_name: "End"))
|
2509
|
+
ScanRange.struct_class = Types::ScanRange
|
2510
|
+
|
2000
2511
|
SelectObjectContentEventStream.add_member(:records, Shapes::ShapeRef.new(shape: RecordsEvent, event: true, location_name: "Records"))
|
2001
2512
|
SelectObjectContentEventStream.add_member(:stats, Shapes::ShapeRef.new(shape: StatsEvent, event: true, location_name: "Stats"))
|
2002
2513
|
SelectObjectContentEventStream.add_member(:progress, Shapes::ShapeRef.new(shape: ProgressEvent, event: true, location_name: "Progress"))
|
@@ -2009,7 +2520,7 @@ module Aws::S3
|
|
2009
2520
|
SelectObjectContentOutput[:payload] = :payload
|
2010
2521
|
SelectObjectContentOutput[:payload_member] = SelectObjectContentOutput.member(:payload)
|
2011
2522
|
|
2012
|
-
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"}}))
|
2013
2524
|
SelectObjectContentRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
2014
2525
|
SelectObjectContentRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
2015
2526
|
SelectObjectContentRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
@@ -2019,6 +2530,8 @@ module Aws::S3
|
|
2019
2530
|
SelectObjectContentRequest.add_member(:request_progress, Shapes::ShapeRef.new(shape: RequestProgress, location_name: "RequestProgress"))
|
2020
2531
|
SelectObjectContentRequest.add_member(:input_serialization, Shapes::ShapeRef.new(shape: InputSerialization, required: true, location_name: "InputSerialization"))
|
2021
2532
|
SelectObjectContentRequest.add_member(:output_serialization, Shapes::ShapeRef.new(shape: OutputSerialization, required: true, location_name: "OutputSerialization"))
|
2533
|
+
SelectObjectContentRequest.add_member(:scan_range, Shapes::ShapeRef.new(shape: ScanRange, location_name: "ScanRange"))
|
2534
|
+
SelectObjectContentRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
2022
2535
|
SelectObjectContentRequest.struct_class = Types::SelectObjectContentRequest
|
2023
2536
|
|
2024
2537
|
SelectParameters.add_member(:input_serialization, Shapes::ShapeRef.new(shape: InputSerialization, required: true, location_name: "InputSerialization"))
|
@@ -2035,11 +2548,21 @@ module Aws::S3
|
|
2035
2548
|
ServerSideEncryptionConfiguration.struct_class = Types::ServerSideEncryptionConfiguration
|
2036
2549
|
|
2037
2550
|
ServerSideEncryptionRule.add_member(:apply_server_side_encryption_by_default, Shapes::ShapeRef.new(shape: ServerSideEncryptionByDefault, location_name: "ApplyServerSideEncryptionByDefault"))
|
2551
|
+
ServerSideEncryptionRule.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location_name: "BucketKeyEnabled"))
|
2038
2552
|
ServerSideEncryptionRule.struct_class = Types::ServerSideEncryptionRule
|
2039
2553
|
|
2040
2554
|
ServerSideEncryptionRules.member = Shapes::ShapeRef.new(shape: ServerSideEncryptionRule)
|
2041
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
|
+
|
2042
2564
|
SourceSelectionCriteria.add_member(:sse_kms_encrypted_objects, Shapes::ShapeRef.new(shape: SseKmsEncryptedObjects, location_name: "SseKmsEncryptedObjects"))
|
2565
|
+
SourceSelectionCriteria.add_member(:replica_modifications, Shapes::ShapeRef.new(shape: ReplicaModifications, location_name: "ReplicaModifications"))
|
2043
2566
|
SourceSelectionCriteria.struct_class = Types::SourceSelectionCriteria
|
2044
2567
|
|
2045
2568
|
SseKmsEncryptedObjects.add_member(:status, Shapes::ShapeRef.new(shape: SseKmsEncryptedObjectsStatus, required: true, location_name: "Status"))
|
@@ -2075,6 +2598,16 @@ module Aws::S3
|
|
2075
2598
|
|
2076
2599
|
TargetGrants.member = Shapes::ShapeRef.new(shape: TargetGrant, location_name: "Grant")
|
2077
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
|
+
|
2605
|
+
Tiering.add_member(:days, Shapes::ShapeRef.new(shape: IntelligentTieringDays, required: true, location_name: "Days"))
|
2606
|
+
Tiering.add_member(:access_tier, Shapes::ShapeRef.new(shape: IntelligentTieringAccessTier, required: true, location_name: "AccessTier"))
|
2607
|
+
Tiering.struct_class = Types::Tiering
|
2608
|
+
|
2609
|
+
TieringList.member = Shapes::ShapeRef.new(shape: Tiering)
|
2610
|
+
|
2078
2611
|
TopicConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
|
2079
2612
|
TopicConfiguration.add_member(:topic_arn, Shapes::ShapeRef.new(shape: TopicArn, required: true, location_name: "Topic"))
|
2080
2613
|
TopicConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, required: true, location_name: "Event"))
|
@@ -2102,12 +2635,13 @@ module Aws::S3
|
|
2102
2635
|
UploadPartCopyOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
2103
2636
|
UploadPartCopyOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
2104
2637
|
UploadPartCopyOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
2638
|
+
UploadPartCopyOutput.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
2105
2639
|
UploadPartCopyOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
2106
2640
|
UploadPartCopyOutput.struct_class = Types::UploadPartCopyOutput
|
2107
2641
|
UploadPartCopyOutput[:payload] = :copy_part_result
|
2108
2642
|
UploadPartCopyOutput[:payload_member] = UploadPartCopyOutput.member(:copy_part_result)
|
2109
2643
|
|
2110
|
-
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"}}))
|
2111
2645
|
UploadPartCopyRequest.add_member(:copy_source, Shapes::ShapeRef.new(shape: CopySource, required: true, location: "header", location_name: "x-amz-copy-source"))
|
2112
2646
|
UploadPartCopyRequest.add_member(:copy_source_if_match, Shapes::ShapeRef.new(shape: CopySourceIfMatch, location: "header", location_name: "x-amz-copy-source-if-match"))
|
2113
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"))
|
@@ -2124,27 +2658,40 @@ module Aws::S3
|
|
2124
2658
|
UploadPartCopyRequest.add_member(:copy_source_sse_customer_key, Shapes::ShapeRef.new(shape: CopySourceSSECustomerKey, location: "header", location_name: "x-amz-copy-source-server-side-encryption-customer-key"))
|
2125
2659
|
UploadPartCopyRequest.add_member(:copy_source_sse_customer_key_md5, Shapes::ShapeRef.new(shape: CopySourceSSECustomerKeyMD5, location: "header", location_name: "x-amz-copy-source-server-side-encryption-customer-key-MD5"))
|
2126
2660
|
UploadPartCopyRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
2661
|
+
UploadPartCopyRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
2662
|
+
UploadPartCopyRequest.add_member(:expected_source_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-source-expected-bucket-owner"))
|
2127
2663
|
UploadPartCopyRequest.struct_class = Types::UploadPartCopyRequest
|
2128
2664
|
|
2129
2665
|
UploadPartOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
2130
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"))
|
2131
2671
|
UploadPartOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
2132
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"))
|
2133
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"))
|
2674
|
+
UploadPartOutput.add_member(:bucket_key_enabled, Shapes::ShapeRef.new(shape: BucketKeyEnabled, location: "header", location_name: "x-amz-server-side-encryption-bucket-key-enabled"))
|
2134
2675
|
UploadPartOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
2135
2676
|
UploadPartOutput.struct_class = Types::UploadPartOutput
|
2136
2677
|
|
2137
2678
|
UploadPartRequest.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
2138
|
-
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"}}))
|
2139
2680
|
UploadPartRequest.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
2140
2681
|
UploadPartRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
2141
|
-
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"}}))
|
2142
2688
|
UploadPartRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, required: true, location: "querystring", location_name: "partNumber"))
|
2143
2689
|
UploadPartRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
2144
2690
|
UploadPartRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
2145
2691
|
UploadPartRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
2146
2692
|
UploadPartRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
2147
2693
|
UploadPartRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
2694
|
+
UploadPartRequest.add_member(:expected_bucket_owner, Shapes::ShapeRef.new(shape: AccountId, location: "header", location_name: "x-amz-expected-bucket-owner"))
|
2148
2695
|
UploadPartRequest.struct_class = Types::UploadPartRequest
|
2149
2696
|
UploadPartRequest[:payload] = :body
|
2150
2697
|
UploadPartRequest[:payload_member] = UploadPartRequest.member(:body)
|
@@ -2161,6 +2708,50 @@ module Aws::S3
|
|
2161
2708
|
WebsiteConfiguration.add_member(:routing_rules, Shapes::ShapeRef.new(shape: RoutingRules, location_name: "RoutingRules"))
|
2162
2709
|
WebsiteConfiguration.struct_class = Types::WebsiteConfiguration
|
2163
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
|
+
|
2164
2755
|
|
2165
2756
|
# @api private
|
2166
2757
|
API = Seahorse::Model::Api.new.tap do |api|
|
@@ -2182,7 +2773,7 @@ module Aws::S3
|
|
2182
2773
|
api.add_operation(:abort_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
|
2183
2774
|
o.name = "AbortMultipartUpload"
|
2184
2775
|
o.http_method = "DELETE"
|
2185
|
-
o.http_request_uri = "/{
|
2776
|
+
o.http_request_uri = "/{Key+}"
|
2186
2777
|
o.input = Shapes::ShapeRef.new(shape: AbortMultipartUploadRequest)
|
2187
2778
|
o.output = Shapes::ShapeRef.new(shape: AbortMultipartUploadOutput)
|
2188
2779
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchUpload)
|
@@ -2191,7 +2782,7 @@ module Aws::S3
|
|
2191
2782
|
api.add_operation(:complete_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
|
2192
2783
|
o.name = "CompleteMultipartUpload"
|
2193
2784
|
o.http_method = "POST"
|
2194
|
-
o.http_request_uri = "/{
|
2785
|
+
o.http_request_uri = "/{Key+}"
|
2195
2786
|
o.input = Shapes::ShapeRef.new(shape: CompleteMultipartUploadRequest)
|
2196
2787
|
o.output = Shapes::ShapeRef.new(shape: CompleteMultipartUploadOutput)
|
2197
2788
|
end)
|
@@ -2199,7 +2790,7 @@ module Aws::S3
|
|
2199
2790
|
api.add_operation(:copy_object, Seahorse::Model::Operation.new.tap do |o|
|
2200
2791
|
o.name = "CopyObject"
|
2201
2792
|
o.http_method = "PUT"
|
2202
|
-
o.http_request_uri = "/{
|
2793
|
+
o.http_request_uri = "/{Key+}"
|
2203
2794
|
o.input = Shapes::ShapeRef.new(shape: CopyObjectRequest)
|
2204
2795
|
o.output = Shapes::ShapeRef.new(shape: CopyObjectOutput)
|
2205
2796
|
o.errors << Shapes::ShapeRef.new(shape: ObjectNotInActiveTierError)
|
@@ -2208,7 +2799,7 @@ module Aws::S3
|
|
2208
2799
|
api.add_operation(:create_bucket, Seahorse::Model::Operation.new.tap do |o|
|
2209
2800
|
o.name = "CreateBucket"
|
2210
2801
|
o.http_method = "PUT"
|
2211
|
-
o.http_request_uri = "/
|
2802
|
+
o.http_request_uri = "/"
|
2212
2803
|
o.input = Shapes::ShapeRef.new(shape: CreateBucketRequest)
|
2213
2804
|
o.output = Shapes::ShapeRef.new(shape: CreateBucketOutput)
|
2214
2805
|
o.errors << Shapes::ShapeRef.new(shape: BucketAlreadyExists)
|
@@ -2218,15 +2809,24 @@ module Aws::S3
|
|
2218
2809
|
api.add_operation(:create_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
|
2219
2810
|
o.name = "CreateMultipartUpload"
|
2220
2811
|
o.http_method = "POST"
|
2221
|
-
o.http_request_uri = "/{
|
2812
|
+
o.http_request_uri = "/{Key+}?uploads"
|
2222
2813
|
o.input = Shapes::ShapeRef.new(shape: CreateMultipartUploadRequest)
|
2223
2814
|
o.output = Shapes::ShapeRef.new(shape: CreateMultipartUploadOutput)
|
2224
2815
|
end)
|
2225
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
|
+
|
2226
2826
|
api.add_operation(:delete_bucket, Seahorse::Model::Operation.new.tap do |o|
|
2227
2827
|
o.name = "DeleteBucket"
|
2228
2828
|
o.http_method = "DELETE"
|
2229
|
-
o.http_request_uri = "/
|
2829
|
+
o.http_request_uri = "/"
|
2230
2830
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketRequest)
|
2231
2831
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2232
2832
|
end)
|
@@ -2234,7 +2834,7 @@ module Aws::S3
|
|
2234
2834
|
api.add_operation(:delete_bucket_analytics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2235
2835
|
o.name = "DeleteBucketAnalyticsConfiguration"
|
2236
2836
|
o.http_method = "DELETE"
|
2237
|
-
o.http_request_uri = "
|
2837
|
+
o.http_request_uri = "/?analytics"
|
2238
2838
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketAnalyticsConfigurationRequest)
|
2239
2839
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2240
2840
|
end)
|
@@ -2242,7 +2842,7 @@ module Aws::S3
|
|
2242
2842
|
api.add_operation(:delete_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
|
2243
2843
|
o.name = "DeleteBucketCors"
|
2244
2844
|
o.http_method = "DELETE"
|
2245
|
-
o.http_request_uri = "
|
2845
|
+
o.http_request_uri = "/?cors"
|
2246
2846
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketCorsRequest)
|
2247
2847
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2248
2848
|
end)
|
@@ -2250,15 +2850,23 @@ module Aws::S3
|
|
2250
2850
|
api.add_operation(:delete_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
|
2251
2851
|
o.name = "DeleteBucketEncryption"
|
2252
2852
|
o.http_method = "DELETE"
|
2253
|
-
o.http_request_uri = "
|
2853
|
+
o.http_request_uri = "/?encryption"
|
2254
2854
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketEncryptionRequest)
|
2255
2855
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2256
2856
|
end)
|
2257
2857
|
|
2858
|
+
api.add_operation(:delete_bucket_intelligent_tiering_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2859
|
+
o.name = "DeleteBucketIntelligentTieringConfiguration"
|
2860
|
+
o.http_method = "DELETE"
|
2861
|
+
o.http_request_uri = "/?intelligent-tiering"
|
2862
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteBucketIntelligentTieringConfigurationRequest)
|
2863
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2864
|
+
end)
|
2865
|
+
|
2258
2866
|
api.add_operation(:delete_bucket_inventory_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2259
2867
|
o.name = "DeleteBucketInventoryConfiguration"
|
2260
2868
|
o.http_method = "DELETE"
|
2261
|
-
o.http_request_uri = "
|
2869
|
+
o.http_request_uri = "/?inventory"
|
2262
2870
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketInventoryConfigurationRequest)
|
2263
2871
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2264
2872
|
end)
|
@@ -2266,7 +2874,7 @@ module Aws::S3
|
|
2266
2874
|
api.add_operation(:delete_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
|
2267
2875
|
o.name = "DeleteBucketLifecycle"
|
2268
2876
|
o.http_method = "DELETE"
|
2269
|
-
o.http_request_uri = "
|
2877
|
+
o.http_request_uri = "/?lifecycle"
|
2270
2878
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketLifecycleRequest)
|
2271
2879
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2272
2880
|
end)
|
@@ -2274,15 +2882,23 @@ module Aws::S3
|
|
2274
2882
|
api.add_operation(:delete_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2275
2883
|
o.name = "DeleteBucketMetricsConfiguration"
|
2276
2884
|
o.http_method = "DELETE"
|
2277
|
-
o.http_request_uri = "
|
2885
|
+
o.http_request_uri = "/?metrics"
|
2278
2886
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketMetricsConfigurationRequest)
|
2279
2887
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2280
2888
|
end)
|
2281
2889
|
|
2890
|
+
api.add_operation(:delete_bucket_ownership_controls, Seahorse::Model::Operation.new.tap do |o|
|
2891
|
+
o.name = "DeleteBucketOwnershipControls"
|
2892
|
+
o.http_method = "DELETE"
|
2893
|
+
o.http_request_uri = "/?ownershipControls"
|
2894
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteBucketOwnershipControlsRequest)
|
2895
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2896
|
+
end)
|
2897
|
+
|
2282
2898
|
api.add_operation(:delete_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
2283
2899
|
o.name = "DeleteBucketPolicy"
|
2284
2900
|
o.http_method = "DELETE"
|
2285
|
-
o.http_request_uri = "
|
2901
|
+
o.http_request_uri = "/?policy"
|
2286
2902
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketPolicyRequest)
|
2287
2903
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2288
2904
|
end)
|
@@ -2290,7 +2906,7 @@ module Aws::S3
|
|
2290
2906
|
api.add_operation(:delete_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
|
2291
2907
|
o.name = "DeleteBucketReplication"
|
2292
2908
|
o.http_method = "DELETE"
|
2293
|
-
o.http_request_uri = "
|
2909
|
+
o.http_request_uri = "/?replication"
|
2294
2910
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketReplicationRequest)
|
2295
2911
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2296
2912
|
end)
|
@@ -2298,7 +2914,7 @@ module Aws::S3
|
|
2298
2914
|
api.add_operation(:delete_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
|
2299
2915
|
o.name = "DeleteBucketTagging"
|
2300
2916
|
o.http_method = "DELETE"
|
2301
|
-
o.http_request_uri = "
|
2917
|
+
o.http_request_uri = "/?tagging"
|
2302
2918
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketTaggingRequest)
|
2303
2919
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2304
2920
|
end)
|
@@ -2306,7 +2922,7 @@ module Aws::S3
|
|
2306
2922
|
api.add_operation(:delete_bucket_website, Seahorse::Model::Operation.new.tap do |o|
|
2307
2923
|
o.name = "DeleteBucketWebsite"
|
2308
2924
|
o.http_method = "DELETE"
|
2309
|
-
o.http_request_uri = "
|
2925
|
+
o.http_request_uri = "/?website"
|
2310
2926
|
o.input = Shapes::ShapeRef.new(shape: DeleteBucketWebsiteRequest)
|
2311
2927
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2312
2928
|
end)
|
@@ -2314,7 +2930,7 @@ module Aws::S3
|
|
2314
2930
|
api.add_operation(:delete_object, Seahorse::Model::Operation.new.tap do |o|
|
2315
2931
|
o.name = "DeleteObject"
|
2316
2932
|
o.http_method = "DELETE"
|
2317
|
-
o.http_request_uri = "/{
|
2933
|
+
o.http_request_uri = "/{Key+}"
|
2318
2934
|
o.input = Shapes::ShapeRef.new(shape: DeleteObjectRequest)
|
2319
2935
|
o.output = Shapes::ShapeRef.new(shape: DeleteObjectOutput)
|
2320
2936
|
end)
|
@@ -2322,7 +2938,7 @@ module Aws::S3
|
|
2322
2938
|
api.add_operation(:delete_object_tagging, Seahorse::Model::Operation.new.tap do |o|
|
2323
2939
|
o.name = "DeleteObjectTagging"
|
2324
2940
|
o.http_method = "DELETE"
|
2325
|
-
o.http_request_uri = "/{
|
2941
|
+
o.http_request_uri = "/{Key+}?tagging"
|
2326
2942
|
o.input = Shapes::ShapeRef.new(shape: DeleteObjectTaggingRequest)
|
2327
2943
|
o.output = Shapes::ShapeRef.new(shape: DeleteObjectTaggingOutput)
|
2328
2944
|
end)
|
@@ -2330,7 +2946,15 @@ module Aws::S3
|
|
2330
2946
|
api.add_operation(:delete_objects, Seahorse::Model::Operation.new.tap do |o|
|
2331
2947
|
o.name = "DeleteObjects"
|
2332
2948
|
o.http_method = "POST"
|
2333
|
-
o.http_request_uri = "
|
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
|
+
}
|
2334
2958
|
o.input = Shapes::ShapeRef.new(shape: DeleteObjectsRequest)
|
2335
2959
|
o.output = Shapes::ShapeRef.new(shape: DeleteObjectsOutput)
|
2336
2960
|
end)
|
@@ -2338,7 +2962,7 @@ module Aws::S3
|
|
2338
2962
|
api.add_operation(:delete_public_access_block, Seahorse::Model::Operation.new.tap do |o|
|
2339
2963
|
o.name = "DeletePublicAccessBlock"
|
2340
2964
|
o.http_method = "DELETE"
|
2341
|
-
o.http_request_uri = "
|
2965
|
+
o.http_request_uri = "/?publicAccessBlock"
|
2342
2966
|
o.input = Shapes::ShapeRef.new(shape: DeletePublicAccessBlockRequest)
|
2343
2967
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2344
2968
|
end)
|
@@ -2346,7 +2970,7 @@ module Aws::S3
|
|
2346
2970
|
api.add_operation(:get_bucket_accelerate_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2347
2971
|
o.name = "GetBucketAccelerateConfiguration"
|
2348
2972
|
o.http_method = "GET"
|
2349
|
-
o.http_request_uri = "
|
2973
|
+
o.http_request_uri = "/?accelerate"
|
2350
2974
|
o.input = Shapes::ShapeRef.new(shape: GetBucketAccelerateConfigurationRequest)
|
2351
2975
|
o.output = Shapes::ShapeRef.new(shape: GetBucketAccelerateConfigurationOutput)
|
2352
2976
|
end)
|
@@ -2354,7 +2978,7 @@ module Aws::S3
|
|
2354
2978
|
api.add_operation(:get_bucket_acl, Seahorse::Model::Operation.new.tap do |o|
|
2355
2979
|
o.name = "GetBucketAcl"
|
2356
2980
|
o.http_method = "GET"
|
2357
|
-
o.http_request_uri = "
|
2981
|
+
o.http_request_uri = "/?acl"
|
2358
2982
|
o.input = Shapes::ShapeRef.new(shape: GetBucketAclRequest)
|
2359
2983
|
o.output = Shapes::ShapeRef.new(shape: GetBucketAclOutput)
|
2360
2984
|
end)
|
@@ -2362,7 +2986,7 @@ module Aws::S3
|
|
2362
2986
|
api.add_operation(:get_bucket_analytics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2363
2987
|
o.name = "GetBucketAnalyticsConfiguration"
|
2364
2988
|
o.http_method = "GET"
|
2365
|
-
o.http_request_uri = "
|
2989
|
+
o.http_request_uri = "/?analytics"
|
2366
2990
|
o.input = Shapes::ShapeRef.new(shape: GetBucketAnalyticsConfigurationRequest)
|
2367
2991
|
o.output = Shapes::ShapeRef.new(shape: GetBucketAnalyticsConfigurationOutput)
|
2368
2992
|
end)
|
@@ -2370,7 +2994,7 @@ module Aws::S3
|
|
2370
2994
|
api.add_operation(:get_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
|
2371
2995
|
o.name = "GetBucketCors"
|
2372
2996
|
o.http_method = "GET"
|
2373
|
-
o.http_request_uri = "
|
2997
|
+
o.http_request_uri = "/?cors"
|
2374
2998
|
o.input = Shapes::ShapeRef.new(shape: GetBucketCorsRequest)
|
2375
2999
|
o.output = Shapes::ShapeRef.new(shape: GetBucketCorsOutput)
|
2376
3000
|
end)
|
@@ -2378,15 +3002,23 @@ module Aws::S3
|
|
2378
3002
|
api.add_operation(:get_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
|
2379
3003
|
o.name = "GetBucketEncryption"
|
2380
3004
|
o.http_method = "GET"
|
2381
|
-
o.http_request_uri = "
|
3005
|
+
o.http_request_uri = "/?encryption"
|
2382
3006
|
o.input = Shapes::ShapeRef.new(shape: GetBucketEncryptionRequest)
|
2383
3007
|
o.output = Shapes::ShapeRef.new(shape: GetBucketEncryptionOutput)
|
2384
3008
|
end)
|
2385
3009
|
|
3010
|
+
api.add_operation(:get_bucket_intelligent_tiering_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3011
|
+
o.name = "GetBucketIntelligentTieringConfiguration"
|
3012
|
+
o.http_method = "GET"
|
3013
|
+
o.http_request_uri = "/?intelligent-tiering"
|
3014
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketIntelligentTieringConfigurationRequest)
|
3015
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketIntelligentTieringConfigurationOutput)
|
3016
|
+
end)
|
3017
|
+
|
2386
3018
|
api.add_operation(:get_bucket_inventory_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2387
3019
|
o.name = "GetBucketInventoryConfiguration"
|
2388
3020
|
o.http_method = "GET"
|
2389
|
-
o.http_request_uri = "
|
3021
|
+
o.http_request_uri = "/?inventory"
|
2390
3022
|
o.input = Shapes::ShapeRef.new(shape: GetBucketInventoryConfigurationRequest)
|
2391
3023
|
o.output = Shapes::ShapeRef.new(shape: GetBucketInventoryConfigurationOutput)
|
2392
3024
|
end)
|
@@ -2394,7 +3026,7 @@ module Aws::S3
|
|
2394
3026
|
api.add_operation(:get_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
|
2395
3027
|
o.name = "GetBucketLifecycle"
|
2396
3028
|
o.http_method = "GET"
|
2397
|
-
o.http_request_uri = "
|
3029
|
+
o.http_request_uri = "/?lifecycle"
|
2398
3030
|
o.deprecated = true
|
2399
3031
|
o.input = Shapes::ShapeRef.new(shape: GetBucketLifecycleRequest)
|
2400
3032
|
o.output = Shapes::ShapeRef.new(shape: GetBucketLifecycleOutput)
|
@@ -2403,7 +3035,7 @@ module Aws::S3
|
|
2403
3035
|
api.add_operation(:get_bucket_lifecycle_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2404
3036
|
o.name = "GetBucketLifecycleConfiguration"
|
2405
3037
|
o.http_method = "GET"
|
2406
|
-
o.http_request_uri = "
|
3038
|
+
o.http_request_uri = "/?lifecycle"
|
2407
3039
|
o.input = Shapes::ShapeRef.new(shape: GetBucketLifecycleConfigurationRequest)
|
2408
3040
|
o.output = Shapes::ShapeRef.new(shape: GetBucketLifecycleConfigurationOutput)
|
2409
3041
|
end)
|
@@ -2411,7 +3043,7 @@ module Aws::S3
|
|
2411
3043
|
api.add_operation(:get_bucket_location, Seahorse::Model::Operation.new.tap do |o|
|
2412
3044
|
o.name = "GetBucketLocation"
|
2413
3045
|
o.http_method = "GET"
|
2414
|
-
o.http_request_uri = "
|
3046
|
+
o.http_request_uri = "/?location"
|
2415
3047
|
o.input = Shapes::ShapeRef.new(shape: GetBucketLocationRequest)
|
2416
3048
|
o.output = Shapes::ShapeRef.new(shape: GetBucketLocationOutput)
|
2417
3049
|
end)
|
@@ -2419,7 +3051,7 @@ module Aws::S3
|
|
2419
3051
|
api.add_operation(:get_bucket_logging, Seahorse::Model::Operation.new.tap do |o|
|
2420
3052
|
o.name = "GetBucketLogging"
|
2421
3053
|
o.http_method = "GET"
|
2422
|
-
o.http_request_uri = "
|
3054
|
+
o.http_request_uri = "/?logging"
|
2423
3055
|
o.input = Shapes::ShapeRef.new(shape: GetBucketLoggingRequest)
|
2424
3056
|
o.output = Shapes::ShapeRef.new(shape: GetBucketLoggingOutput)
|
2425
3057
|
end)
|
@@ -2427,7 +3059,7 @@ module Aws::S3
|
|
2427
3059
|
api.add_operation(:get_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2428
3060
|
o.name = "GetBucketMetricsConfiguration"
|
2429
3061
|
o.http_method = "GET"
|
2430
|
-
o.http_request_uri = "
|
3062
|
+
o.http_request_uri = "/?metrics"
|
2431
3063
|
o.input = Shapes::ShapeRef.new(shape: GetBucketMetricsConfigurationRequest)
|
2432
3064
|
o.output = Shapes::ShapeRef.new(shape: GetBucketMetricsConfigurationOutput)
|
2433
3065
|
end)
|
@@ -2435,7 +3067,7 @@ module Aws::S3
|
|
2435
3067
|
api.add_operation(:get_bucket_notification, Seahorse::Model::Operation.new.tap do |o|
|
2436
3068
|
o.name = "GetBucketNotification"
|
2437
3069
|
o.http_method = "GET"
|
2438
|
-
o.http_request_uri = "
|
3070
|
+
o.http_request_uri = "/?notification"
|
2439
3071
|
o.deprecated = true
|
2440
3072
|
o.input = Shapes::ShapeRef.new(shape: GetBucketNotificationConfigurationRequest)
|
2441
3073
|
o.output = Shapes::ShapeRef.new(shape: NotificationConfigurationDeprecated)
|
@@ -2444,15 +3076,23 @@ module Aws::S3
|
|
2444
3076
|
api.add_operation(:get_bucket_notification_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2445
3077
|
o.name = "GetBucketNotificationConfiguration"
|
2446
3078
|
o.http_method = "GET"
|
2447
|
-
o.http_request_uri = "
|
3079
|
+
o.http_request_uri = "/?notification"
|
2448
3080
|
o.input = Shapes::ShapeRef.new(shape: GetBucketNotificationConfigurationRequest)
|
2449
3081
|
o.output = Shapes::ShapeRef.new(shape: NotificationConfiguration)
|
2450
3082
|
end)
|
2451
3083
|
|
3084
|
+
api.add_operation(:get_bucket_ownership_controls, Seahorse::Model::Operation.new.tap do |o|
|
3085
|
+
o.name = "GetBucketOwnershipControls"
|
3086
|
+
o.http_method = "GET"
|
3087
|
+
o.http_request_uri = "/?ownershipControls"
|
3088
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketOwnershipControlsRequest)
|
3089
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketOwnershipControlsOutput)
|
3090
|
+
end)
|
3091
|
+
|
2452
3092
|
api.add_operation(:get_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
2453
3093
|
o.name = "GetBucketPolicy"
|
2454
3094
|
o.http_method = "GET"
|
2455
|
-
o.http_request_uri = "
|
3095
|
+
o.http_request_uri = "/?policy"
|
2456
3096
|
o.input = Shapes::ShapeRef.new(shape: GetBucketPolicyRequest)
|
2457
3097
|
o.output = Shapes::ShapeRef.new(shape: GetBucketPolicyOutput)
|
2458
3098
|
end)
|
@@ -2460,7 +3100,7 @@ module Aws::S3
|
|
2460
3100
|
api.add_operation(:get_bucket_policy_status, Seahorse::Model::Operation.new.tap do |o|
|
2461
3101
|
o.name = "GetBucketPolicyStatus"
|
2462
3102
|
o.http_method = "GET"
|
2463
|
-
o.http_request_uri = "
|
3103
|
+
o.http_request_uri = "/?policyStatus"
|
2464
3104
|
o.input = Shapes::ShapeRef.new(shape: GetBucketPolicyStatusRequest)
|
2465
3105
|
o.output = Shapes::ShapeRef.new(shape: GetBucketPolicyStatusOutput)
|
2466
3106
|
end)
|
@@ -2468,7 +3108,7 @@ module Aws::S3
|
|
2468
3108
|
api.add_operation(:get_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
|
2469
3109
|
o.name = "GetBucketReplication"
|
2470
3110
|
o.http_method = "GET"
|
2471
|
-
o.http_request_uri = "
|
3111
|
+
o.http_request_uri = "/?replication"
|
2472
3112
|
o.input = Shapes::ShapeRef.new(shape: GetBucketReplicationRequest)
|
2473
3113
|
o.output = Shapes::ShapeRef.new(shape: GetBucketReplicationOutput)
|
2474
3114
|
end)
|
@@ -2476,7 +3116,7 @@ module Aws::S3
|
|
2476
3116
|
api.add_operation(:get_bucket_request_payment, Seahorse::Model::Operation.new.tap do |o|
|
2477
3117
|
o.name = "GetBucketRequestPayment"
|
2478
3118
|
o.http_method = "GET"
|
2479
|
-
o.http_request_uri = "
|
3119
|
+
o.http_request_uri = "/?requestPayment"
|
2480
3120
|
o.input = Shapes::ShapeRef.new(shape: GetBucketRequestPaymentRequest)
|
2481
3121
|
o.output = Shapes::ShapeRef.new(shape: GetBucketRequestPaymentOutput)
|
2482
3122
|
end)
|
@@ -2484,7 +3124,7 @@ module Aws::S3
|
|
2484
3124
|
api.add_operation(:get_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
|
2485
3125
|
o.name = "GetBucketTagging"
|
2486
3126
|
o.http_method = "GET"
|
2487
|
-
o.http_request_uri = "
|
3127
|
+
o.http_request_uri = "/?tagging"
|
2488
3128
|
o.input = Shapes::ShapeRef.new(shape: GetBucketTaggingRequest)
|
2489
3129
|
o.output = Shapes::ShapeRef.new(shape: GetBucketTaggingOutput)
|
2490
3130
|
end)
|
@@ -2492,7 +3132,7 @@ module Aws::S3
|
|
2492
3132
|
api.add_operation(:get_bucket_versioning, Seahorse::Model::Operation.new.tap do |o|
|
2493
3133
|
o.name = "GetBucketVersioning"
|
2494
3134
|
o.http_method = "GET"
|
2495
|
-
o.http_request_uri = "
|
3135
|
+
o.http_request_uri = "/?versioning"
|
2496
3136
|
o.input = Shapes::ShapeRef.new(shape: GetBucketVersioningRequest)
|
2497
3137
|
o.output = Shapes::ShapeRef.new(shape: GetBucketVersioningOutput)
|
2498
3138
|
end)
|
@@ -2500,7 +3140,7 @@ module Aws::S3
|
|
2500
3140
|
api.add_operation(:get_bucket_website, Seahorse::Model::Operation.new.tap do |o|
|
2501
3141
|
o.name = "GetBucketWebsite"
|
2502
3142
|
o.http_method = "GET"
|
2503
|
-
o.http_request_uri = "
|
3143
|
+
o.http_request_uri = "/?website"
|
2504
3144
|
o.input = Shapes::ShapeRef.new(shape: GetBucketWebsiteRequest)
|
2505
3145
|
o.output = Shapes::ShapeRef.new(shape: GetBucketWebsiteOutput)
|
2506
3146
|
end)
|
@@ -2508,25 +3148,43 @@ module Aws::S3
|
|
2508
3148
|
api.add_operation(:get_object, Seahorse::Model::Operation.new.tap do |o|
|
2509
3149
|
o.name = "GetObject"
|
2510
3150
|
o.http_method = "GET"
|
2511
|
-
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
|
+
}
|
2512
3160
|
o.input = Shapes::ShapeRef.new(shape: GetObjectRequest)
|
2513
3161
|
o.output = Shapes::ShapeRef.new(shape: GetObjectOutput)
|
2514
3162
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
3163
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidObjectState)
|
2515
3164
|
end)
|
2516
3165
|
|
2517
3166
|
api.add_operation(:get_object_acl, Seahorse::Model::Operation.new.tap do |o|
|
2518
3167
|
o.name = "GetObjectAcl"
|
2519
3168
|
o.http_method = "GET"
|
2520
|
-
o.http_request_uri = "/{
|
3169
|
+
o.http_request_uri = "/{Key+}?acl"
|
2521
3170
|
o.input = Shapes::ShapeRef.new(shape: GetObjectAclRequest)
|
2522
3171
|
o.output = Shapes::ShapeRef.new(shape: GetObjectAclOutput)
|
2523
3172
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
2524
3173
|
end)
|
2525
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
|
+
|
2526
3184
|
api.add_operation(:get_object_legal_hold, Seahorse::Model::Operation.new.tap do |o|
|
2527
3185
|
o.name = "GetObjectLegalHold"
|
2528
3186
|
o.http_method = "GET"
|
2529
|
-
o.http_request_uri = "/{
|
3187
|
+
o.http_request_uri = "/{Key+}?legal-hold"
|
2530
3188
|
o.input = Shapes::ShapeRef.new(shape: GetObjectLegalHoldRequest)
|
2531
3189
|
o.output = Shapes::ShapeRef.new(shape: GetObjectLegalHoldOutput)
|
2532
3190
|
end)
|
@@ -2534,7 +3192,7 @@ module Aws::S3
|
|
2534
3192
|
api.add_operation(:get_object_lock_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2535
3193
|
o.name = "GetObjectLockConfiguration"
|
2536
3194
|
o.http_method = "GET"
|
2537
|
-
o.http_request_uri = "
|
3195
|
+
o.http_request_uri = "/?object-lock"
|
2538
3196
|
o.input = Shapes::ShapeRef.new(shape: GetObjectLockConfigurationRequest)
|
2539
3197
|
o.output = Shapes::ShapeRef.new(shape: GetObjectLockConfigurationOutput)
|
2540
3198
|
end)
|
@@ -2542,7 +3200,7 @@ module Aws::S3
|
|
2542
3200
|
api.add_operation(:get_object_retention, Seahorse::Model::Operation.new.tap do |o|
|
2543
3201
|
o.name = "GetObjectRetention"
|
2544
3202
|
o.http_method = "GET"
|
2545
|
-
o.http_request_uri = "/{
|
3203
|
+
o.http_request_uri = "/{Key+}?retention"
|
2546
3204
|
o.input = Shapes::ShapeRef.new(shape: GetObjectRetentionRequest)
|
2547
3205
|
o.output = Shapes::ShapeRef.new(shape: GetObjectRetentionOutput)
|
2548
3206
|
end)
|
@@ -2550,7 +3208,7 @@ module Aws::S3
|
|
2550
3208
|
api.add_operation(:get_object_tagging, Seahorse::Model::Operation.new.tap do |o|
|
2551
3209
|
o.name = "GetObjectTagging"
|
2552
3210
|
o.http_method = "GET"
|
2553
|
-
o.http_request_uri = "/{
|
3211
|
+
o.http_request_uri = "/{Key+}?tagging"
|
2554
3212
|
o.input = Shapes::ShapeRef.new(shape: GetObjectTaggingRequest)
|
2555
3213
|
o.output = Shapes::ShapeRef.new(shape: GetObjectTaggingOutput)
|
2556
3214
|
end)
|
@@ -2558,7 +3216,7 @@ module Aws::S3
|
|
2558
3216
|
api.add_operation(:get_object_torrent, Seahorse::Model::Operation.new.tap do |o|
|
2559
3217
|
o.name = "GetObjectTorrent"
|
2560
3218
|
o.http_method = "GET"
|
2561
|
-
o.http_request_uri = "/{
|
3219
|
+
o.http_request_uri = "/{Key+}?torrent"
|
2562
3220
|
o.input = Shapes::ShapeRef.new(shape: GetObjectTorrentRequest)
|
2563
3221
|
o.output = Shapes::ShapeRef.new(shape: GetObjectTorrentOutput)
|
2564
3222
|
end)
|
@@ -2566,7 +3224,7 @@ module Aws::S3
|
|
2566
3224
|
api.add_operation(:get_public_access_block, Seahorse::Model::Operation.new.tap do |o|
|
2567
3225
|
o.name = "GetPublicAccessBlock"
|
2568
3226
|
o.http_method = "GET"
|
2569
|
-
o.http_request_uri = "
|
3227
|
+
o.http_request_uri = "/?publicAccessBlock"
|
2570
3228
|
o.input = Shapes::ShapeRef.new(shape: GetPublicAccessBlockRequest)
|
2571
3229
|
o.output = Shapes::ShapeRef.new(shape: GetPublicAccessBlockOutput)
|
2572
3230
|
end)
|
@@ -2574,16 +3232,16 @@ module Aws::S3
|
|
2574
3232
|
api.add_operation(:head_bucket, Seahorse::Model::Operation.new.tap do |o|
|
2575
3233
|
o.name = "HeadBucket"
|
2576
3234
|
o.http_method = "HEAD"
|
2577
|
-
o.http_request_uri = "/
|
3235
|
+
o.http_request_uri = "/"
|
2578
3236
|
o.input = Shapes::ShapeRef.new(shape: HeadBucketRequest)
|
2579
|
-
o.output = Shapes::ShapeRef.new(shape:
|
3237
|
+
o.output = Shapes::ShapeRef.new(shape: HeadBucketOutput)
|
2580
3238
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
|
2581
3239
|
end)
|
2582
3240
|
|
2583
3241
|
api.add_operation(:head_object, Seahorse::Model::Operation.new.tap do |o|
|
2584
3242
|
o.name = "HeadObject"
|
2585
3243
|
o.http_method = "HEAD"
|
2586
|
-
o.http_request_uri = "/{
|
3244
|
+
o.http_request_uri = "/{Key+}"
|
2587
3245
|
o.input = Shapes::ShapeRef.new(shape: HeadObjectRequest)
|
2588
3246
|
o.output = Shapes::ShapeRef.new(shape: HeadObjectOutput)
|
2589
3247
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
@@ -2592,15 +3250,23 @@ module Aws::S3
|
|
2592
3250
|
api.add_operation(:list_bucket_analytics_configurations, Seahorse::Model::Operation.new.tap do |o|
|
2593
3251
|
o.name = "ListBucketAnalyticsConfigurations"
|
2594
3252
|
o.http_method = "GET"
|
2595
|
-
o.http_request_uri = "
|
3253
|
+
o.http_request_uri = "/?analytics"
|
2596
3254
|
o.input = Shapes::ShapeRef.new(shape: ListBucketAnalyticsConfigurationsRequest)
|
2597
3255
|
o.output = Shapes::ShapeRef.new(shape: ListBucketAnalyticsConfigurationsOutput)
|
2598
3256
|
end)
|
2599
3257
|
|
3258
|
+
api.add_operation(:list_bucket_intelligent_tiering_configurations, Seahorse::Model::Operation.new.tap do |o|
|
3259
|
+
o.name = "ListBucketIntelligentTieringConfigurations"
|
3260
|
+
o.http_method = "GET"
|
3261
|
+
o.http_request_uri = "/?intelligent-tiering"
|
3262
|
+
o.input = Shapes::ShapeRef.new(shape: ListBucketIntelligentTieringConfigurationsRequest)
|
3263
|
+
o.output = Shapes::ShapeRef.new(shape: ListBucketIntelligentTieringConfigurationsOutput)
|
3264
|
+
end)
|
3265
|
+
|
2600
3266
|
api.add_operation(:list_bucket_inventory_configurations, Seahorse::Model::Operation.new.tap do |o|
|
2601
3267
|
o.name = "ListBucketInventoryConfigurations"
|
2602
3268
|
o.http_method = "GET"
|
2603
|
-
o.http_request_uri = "
|
3269
|
+
o.http_request_uri = "/?inventory"
|
2604
3270
|
o.input = Shapes::ShapeRef.new(shape: ListBucketInventoryConfigurationsRequest)
|
2605
3271
|
o.output = Shapes::ShapeRef.new(shape: ListBucketInventoryConfigurationsOutput)
|
2606
3272
|
end)
|
@@ -2608,7 +3274,7 @@ module Aws::S3
|
|
2608
3274
|
api.add_operation(:list_bucket_metrics_configurations, Seahorse::Model::Operation.new.tap do |o|
|
2609
3275
|
o.name = "ListBucketMetricsConfigurations"
|
2610
3276
|
o.http_method = "GET"
|
2611
|
-
o.http_request_uri = "
|
3277
|
+
o.http_request_uri = "/?metrics"
|
2612
3278
|
o.input = Shapes::ShapeRef.new(shape: ListBucketMetricsConfigurationsRequest)
|
2613
3279
|
o.output = Shapes::ShapeRef.new(shape: ListBucketMetricsConfigurationsOutput)
|
2614
3280
|
end)
|
@@ -2621,10 +3287,24 @@ module Aws::S3
|
|
2621
3287
|
o.output = Shapes::ShapeRef.new(shape: ListBucketsOutput)
|
2622
3288
|
end)
|
2623
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
|
+
|
2624
3304
|
api.add_operation(:list_multipart_uploads, Seahorse::Model::Operation.new.tap do |o|
|
2625
3305
|
o.name = "ListMultipartUploads"
|
2626
3306
|
o.http_method = "GET"
|
2627
|
-
o.http_request_uri = "
|
3307
|
+
o.http_request_uri = "/?uploads"
|
2628
3308
|
o.input = Shapes::ShapeRef.new(shape: ListMultipartUploadsRequest)
|
2629
3309
|
o.output = Shapes::ShapeRef.new(shape: ListMultipartUploadsOutput)
|
2630
3310
|
o[:pager] = Aws::Pager.new(
|
@@ -2640,7 +3320,7 @@ module Aws::S3
|
|
2640
3320
|
api.add_operation(:list_object_versions, Seahorse::Model::Operation.new.tap do |o|
|
2641
3321
|
o.name = "ListObjectVersions"
|
2642
3322
|
o.http_method = "GET"
|
2643
|
-
o.http_request_uri = "
|
3323
|
+
o.http_request_uri = "/?versions"
|
2644
3324
|
o.input = Shapes::ShapeRef.new(shape: ListObjectVersionsRequest)
|
2645
3325
|
o.output = Shapes::ShapeRef.new(shape: ListObjectVersionsOutput)
|
2646
3326
|
o[:pager] = Aws::Pager.new(
|
@@ -2656,7 +3336,7 @@ module Aws::S3
|
|
2656
3336
|
api.add_operation(:list_objects, Seahorse::Model::Operation.new.tap do |o|
|
2657
3337
|
o.name = "ListObjects"
|
2658
3338
|
o.http_method = "GET"
|
2659
|
-
o.http_request_uri = "/
|
3339
|
+
o.http_request_uri = "/"
|
2660
3340
|
o.input = Shapes::ShapeRef.new(shape: ListObjectsRequest)
|
2661
3341
|
o.output = Shapes::ShapeRef.new(shape: ListObjectsOutput)
|
2662
3342
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
|
@@ -2672,7 +3352,7 @@ module Aws::S3
|
|
2672
3352
|
api.add_operation(:list_objects_v2, Seahorse::Model::Operation.new.tap do |o|
|
2673
3353
|
o.name = "ListObjectsV2"
|
2674
3354
|
o.http_method = "GET"
|
2675
|
-
o.http_request_uri = "
|
3355
|
+
o.http_request_uri = "/?list-type=2"
|
2676
3356
|
o.input = Shapes::ShapeRef.new(shape: ListObjectsV2Request)
|
2677
3357
|
o.output = Shapes::ShapeRef.new(shape: ListObjectsV2Output)
|
2678
3358
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
|
@@ -2687,7 +3367,7 @@ module Aws::S3
|
|
2687
3367
|
api.add_operation(:list_parts, Seahorse::Model::Operation.new.tap do |o|
|
2688
3368
|
o.name = "ListParts"
|
2689
3369
|
o.http_method = "GET"
|
2690
|
-
o.http_request_uri = "/{
|
3370
|
+
o.http_request_uri = "/{Key+}"
|
2691
3371
|
o.input = Shapes::ShapeRef.new(shape: ListPartsRequest)
|
2692
3372
|
o.output = Shapes::ShapeRef.new(shape: ListPartsOutput)
|
2693
3373
|
o[:pager] = Aws::Pager.new(
|
@@ -2702,7 +3382,15 @@ module Aws::S3
|
|
2702
3382
|
api.add_operation(:put_bucket_accelerate_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2703
3383
|
o.name = "PutBucketAccelerateConfiguration"
|
2704
3384
|
o.http_method = "PUT"
|
2705
|
-
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
|
+
}
|
2706
3394
|
o.input = Shapes::ShapeRef.new(shape: PutBucketAccelerateConfigurationRequest)
|
2707
3395
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2708
3396
|
end)
|
@@ -2710,7 +3398,15 @@ module Aws::S3
|
|
2710
3398
|
api.add_operation(:put_bucket_acl, Seahorse::Model::Operation.new.tap do |o|
|
2711
3399
|
o.name = "PutBucketAcl"
|
2712
3400
|
o.http_method = "PUT"
|
2713
|
-
o.http_request_uri = "
|
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
|
+
}
|
2714
3410
|
o.input = Shapes::ShapeRef.new(shape: PutBucketAclRequest)
|
2715
3411
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2716
3412
|
end)
|
@@ -2718,7 +3414,7 @@ module Aws::S3
|
|
2718
3414
|
api.add_operation(:put_bucket_analytics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2719
3415
|
o.name = "PutBucketAnalyticsConfiguration"
|
2720
3416
|
o.http_method = "PUT"
|
2721
|
-
o.http_request_uri = "
|
3417
|
+
o.http_request_uri = "/?analytics"
|
2722
3418
|
o.input = Shapes::ShapeRef.new(shape: PutBucketAnalyticsConfigurationRequest)
|
2723
3419
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2724
3420
|
end)
|
@@ -2726,7 +3422,15 @@ module Aws::S3
|
|
2726
3422
|
api.add_operation(:put_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
|
2727
3423
|
o.name = "PutBucketCors"
|
2728
3424
|
o.http_method = "PUT"
|
2729
|
-
o.http_request_uri = "
|
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
|
+
}
|
2730
3434
|
o.input = Shapes::ShapeRef.new(shape: PutBucketCorsRequest)
|
2731
3435
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2732
3436
|
end)
|
@@ -2734,15 +3438,31 @@ module Aws::S3
|
|
2734
3438
|
api.add_operation(:put_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
|
2735
3439
|
o.name = "PutBucketEncryption"
|
2736
3440
|
o.http_method = "PUT"
|
2737
|
-
o.http_request_uri = "
|
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
|
+
}
|
2738
3450
|
o.input = Shapes::ShapeRef.new(shape: PutBucketEncryptionRequest)
|
2739
3451
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2740
3452
|
end)
|
2741
3453
|
|
3454
|
+
api.add_operation(:put_bucket_intelligent_tiering_configuration, Seahorse::Model::Operation.new.tap do |o|
|
3455
|
+
o.name = "PutBucketIntelligentTieringConfiguration"
|
3456
|
+
o.http_method = "PUT"
|
3457
|
+
o.http_request_uri = "/?intelligent-tiering"
|
3458
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketIntelligentTieringConfigurationRequest)
|
3459
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3460
|
+
end)
|
3461
|
+
|
2742
3462
|
api.add_operation(:put_bucket_inventory_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2743
3463
|
o.name = "PutBucketInventoryConfiguration"
|
2744
3464
|
o.http_method = "PUT"
|
2745
|
-
o.http_request_uri = "
|
3465
|
+
o.http_request_uri = "/?inventory"
|
2746
3466
|
o.input = Shapes::ShapeRef.new(shape: PutBucketInventoryConfigurationRequest)
|
2747
3467
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2748
3468
|
end)
|
@@ -2750,7 +3470,15 @@ module Aws::S3
|
|
2750
3470
|
api.add_operation(:put_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
|
2751
3471
|
o.name = "PutBucketLifecycle"
|
2752
3472
|
o.http_method = "PUT"
|
2753
|
-
o.http_request_uri = "
|
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
|
+
}
|
2754
3482
|
o.deprecated = true
|
2755
3483
|
o.input = Shapes::ShapeRef.new(shape: PutBucketLifecycleRequest)
|
2756
3484
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
@@ -2759,7 +3487,15 @@ module Aws::S3
|
|
2759
3487
|
api.add_operation(:put_bucket_lifecycle_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2760
3488
|
o.name = "PutBucketLifecycleConfiguration"
|
2761
3489
|
o.http_method = "PUT"
|
2762
|
-
o.http_request_uri = "
|
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
|
+
}
|
2763
3499
|
o.input = Shapes::ShapeRef.new(shape: PutBucketLifecycleConfigurationRequest)
|
2764
3500
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2765
3501
|
end)
|
@@ -2767,7 +3503,15 @@ module Aws::S3
|
|
2767
3503
|
api.add_operation(:put_bucket_logging, Seahorse::Model::Operation.new.tap do |o|
|
2768
3504
|
o.name = "PutBucketLogging"
|
2769
3505
|
o.http_method = "PUT"
|
2770
|
-
o.http_request_uri = "
|
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
|
+
}
|
2771
3515
|
o.input = Shapes::ShapeRef.new(shape: PutBucketLoggingRequest)
|
2772
3516
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2773
3517
|
end)
|
@@ -2775,7 +3519,7 @@ module Aws::S3
|
|
2775
3519
|
api.add_operation(:put_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2776
3520
|
o.name = "PutBucketMetricsConfiguration"
|
2777
3521
|
o.http_method = "PUT"
|
2778
|
-
o.http_request_uri = "
|
3522
|
+
o.http_request_uri = "/?metrics"
|
2779
3523
|
o.input = Shapes::ShapeRef.new(shape: PutBucketMetricsConfigurationRequest)
|
2780
3524
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2781
3525
|
end)
|
@@ -2783,7 +3527,15 @@ module Aws::S3
|
|
2783
3527
|
api.add_operation(:put_bucket_notification, Seahorse::Model::Operation.new.tap do |o|
|
2784
3528
|
o.name = "PutBucketNotification"
|
2785
3529
|
o.http_method = "PUT"
|
2786
|
-
o.http_request_uri = "
|
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
|
+
}
|
2787
3539
|
o.deprecated = true
|
2788
3540
|
o.input = Shapes::ShapeRef.new(shape: PutBucketNotificationRequest)
|
2789
3541
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
@@ -2792,15 +3544,34 @@ module Aws::S3
|
|
2792
3544
|
api.add_operation(:put_bucket_notification_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2793
3545
|
o.name = "PutBucketNotificationConfiguration"
|
2794
3546
|
o.http_method = "PUT"
|
2795
|
-
o.http_request_uri = "
|
3547
|
+
o.http_request_uri = "/?notification"
|
2796
3548
|
o.input = Shapes::ShapeRef.new(shape: PutBucketNotificationConfigurationRequest)
|
2797
3549
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2798
3550
|
end)
|
2799
3551
|
|
3552
|
+
api.add_operation(:put_bucket_ownership_controls, Seahorse::Model::Operation.new.tap do |o|
|
3553
|
+
o.name = "PutBucketOwnershipControls"
|
3554
|
+
o.http_method = "PUT"
|
3555
|
+
o.http_request_uri = "/?ownershipControls"
|
3556
|
+
o.http_checksum = {
|
3557
|
+
"requestChecksumRequired" => true,
|
3558
|
+
}
|
3559
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketOwnershipControlsRequest)
|
3560
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3561
|
+
end)
|
3562
|
+
|
2800
3563
|
api.add_operation(:put_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
2801
3564
|
o.name = "PutBucketPolicy"
|
2802
3565
|
o.http_method = "PUT"
|
2803
|
-
o.http_request_uri = "
|
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
|
+
}
|
2804
3575
|
o.input = Shapes::ShapeRef.new(shape: PutBucketPolicyRequest)
|
2805
3576
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2806
3577
|
end)
|
@@ -2808,7 +3579,15 @@ module Aws::S3
|
|
2808
3579
|
api.add_operation(:put_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
|
2809
3580
|
o.name = "PutBucketReplication"
|
2810
3581
|
o.http_method = "PUT"
|
2811
|
-
o.http_request_uri = "
|
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
|
+
}
|
2812
3591
|
o.input = Shapes::ShapeRef.new(shape: PutBucketReplicationRequest)
|
2813
3592
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2814
3593
|
end)
|
@@ -2816,7 +3595,15 @@ module Aws::S3
|
|
2816
3595
|
api.add_operation(:put_bucket_request_payment, Seahorse::Model::Operation.new.tap do |o|
|
2817
3596
|
o.name = "PutBucketRequestPayment"
|
2818
3597
|
o.http_method = "PUT"
|
2819
|
-
o.http_request_uri = "
|
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
|
+
}
|
2820
3607
|
o.input = Shapes::ShapeRef.new(shape: PutBucketRequestPaymentRequest)
|
2821
3608
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2822
3609
|
end)
|
@@ -2824,7 +3611,15 @@ module Aws::S3
|
|
2824
3611
|
api.add_operation(:put_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
|
2825
3612
|
o.name = "PutBucketTagging"
|
2826
3613
|
o.http_method = "PUT"
|
2827
|
-
o.http_request_uri = "
|
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
|
+
}
|
2828
3623
|
o.input = Shapes::ShapeRef.new(shape: PutBucketTaggingRequest)
|
2829
3624
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2830
3625
|
end)
|
@@ -2832,7 +3627,15 @@ module Aws::S3
|
|
2832
3627
|
api.add_operation(:put_bucket_versioning, Seahorse::Model::Operation.new.tap do |o|
|
2833
3628
|
o.name = "PutBucketVersioning"
|
2834
3629
|
o.http_method = "PUT"
|
2835
|
-
o.http_request_uri = "
|
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
|
+
}
|
2836
3639
|
o.input = Shapes::ShapeRef.new(shape: PutBucketVersioningRequest)
|
2837
3640
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2838
3641
|
end)
|
@@ -2840,7 +3643,15 @@ module Aws::S3
|
|
2840
3643
|
api.add_operation(:put_bucket_website, Seahorse::Model::Operation.new.tap do |o|
|
2841
3644
|
o.name = "PutBucketWebsite"
|
2842
3645
|
o.http_method = "PUT"
|
2843
|
-
o.http_request_uri = "
|
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
|
+
}
|
2844
3655
|
o.input = Shapes::ShapeRef.new(shape: PutBucketWebsiteRequest)
|
2845
3656
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2846
3657
|
end)
|
@@ -2848,7 +3659,15 @@ module Aws::S3
|
|
2848
3659
|
api.add_operation(:put_object, Seahorse::Model::Operation.new.tap do |o|
|
2849
3660
|
o.name = "PutObject"
|
2850
3661
|
o.http_method = "PUT"
|
2851
|
-
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
|
+
}
|
2852
3671
|
o.input = Shapes::ShapeRef.new(shape: PutObjectRequest)
|
2853
3672
|
o.output = Shapes::ShapeRef.new(shape: PutObjectOutput)
|
2854
3673
|
end)
|
@@ -2856,7 +3675,15 @@ module Aws::S3
|
|
2856
3675
|
api.add_operation(:put_object_acl, Seahorse::Model::Operation.new.tap do |o|
|
2857
3676
|
o.name = "PutObjectAcl"
|
2858
3677
|
o.http_method = "PUT"
|
2859
|
-
o.http_request_uri = "/{
|
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
|
+
}
|
2860
3687
|
o.input = Shapes::ShapeRef.new(shape: PutObjectAclRequest)
|
2861
3688
|
o.output = Shapes::ShapeRef.new(shape: PutObjectAclOutput)
|
2862
3689
|
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
@@ -2865,7 +3692,15 @@ module Aws::S3
|
|
2865
3692
|
api.add_operation(:put_object_legal_hold, Seahorse::Model::Operation.new.tap do |o|
|
2866
3693
|
o.name = "PutObjectLegalHold"
|
2867
3694
|
o.http_method = "PUT"
|
2868
|
-
o.http_request_uri = "/{
|
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
|
+
}
|
2869
3704
|
o.input = Shapes::ShapeRef.new(shape: PutObjectLegalHoldRequest)
|
2870
3705
|
o.output = Shapes::ShapeRef.new(shape: PutObjectLegalHoldOutput)
|
2871
3706
|
end)
|
@@ -2873,7 +3708,15 @@ module Aws::S3
|
|
2873
3708
|
api.add_operation(:put_object_lock_configuration, Seahorse::Model::Operation.new.tap do |o|
|
2874
3709
|
o.name = "PutObjectLockConfiguration"
|
2875
3710
|
o.http_method = "PUT"
|
2876
|
-
o.http_request_uri = "
|
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
|
+
}
|
2877
3720
|
o.input = Shapes::ShapeRef.new(shape: PutObjectLockConfigurationRequest)
|
2878
3721
|
o.output = Shapes::ShapeRef.new(shape: PutObjectLockConfigurationOutput)
|
2879
3722
|
end)
|
@@ -2881,7 +3724,15 @@ module Aws::S3
|
|
2881
3724
|
api.add_operation(:put_object_retention, Seahorse::Model::Operation.new.tap do |o|
|
2882
3725
|
o.name = "PutObjectRetention"
|
2883
3726
|
o.http_method = "PUT"
|
2884
|
-
o.http_request_uri = "/{
|
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
|
+
}
|
2885
3736
|
o.input = Shapes::ShapeRef.new(shape: PutObjectRetentionRequest)
|
2886
3737
|
o.output = Shapes::ShapeRef.new(shape: PutObjectRetentionOutput)
|
2887
3738
|
end)
|
@@ -2889,7 +3740,15 @@ module Aws::S3
|
|
2889
3740
|
api.add_operation(:put_object_tagging, Seahorse::Model::Operation.new.tap do |o|
|
2890
3741
|
o.name = "PutObjectTagging"
|
2891
3742
|
o.http_method = "PUT"
|
2892
|
-
o.http_request_uri = "/{
|
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
|
+
}
|
2893
3752
|
o.input = Shapes::ShapeRef.new(shape: PutObjectTaggingRequest)
|
2894
3753
|
o.output = Shapes::ShapeRef.new(shape: PutObjectTaggingOutput)
|
2895
3754
|
end)
|
@@ -2897,7 +3756,15 @@ module Aws::S3
|
|
2897
3756
|
api.add_operation(:put_public_access_block, Seahorse::Model::Operation.new.tap do |o|
|
2898
3757
|
o.name = "PutPublicAccessBlock"
|
2899
3758
|
o.http_method = "PUT"
|
2900
|
-
o.http_request_uri = "
|
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
|
+
}
|
2901
3768
|
o.input = Shapes::ShapeRef.new(shape: PutPublicAccessBlockRequest)
|
2902
3769
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2903
3770
|
end)
|
@@ -2905,7 +3772,15 @@ module Aws::S3
|
|
2905
3772
|
api.add_operation(:restore_object, Seahorse::Model::Operation.new.tap do |o|
|
2906
3773
|
o.name = "RestoreObject"
|
2907
3774
|
o.http_method = "POST"
|
2908
|
-
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
|
+
}
|
2909
3784
|
o.input = Shapes::ShapeRef.new(shape: RestoreObjectRequest)
|
2910
3785
|
o.output = Shapes::ShapeRef.new(shape: RestoreObjectOutput)
|
2911
3786
|
o.errors << Shapes::ShapeRef.new(shape: ObjectAlreadyInActiveTierError)
|
@@ -2914,7 +3789,7 @@ module Aws::S3
|
|
2914
3789
|
api.add_operation(:select_object_content, Seahorse::Model::Operation.new.tap do |o|
|
2915
3790
|
o.name = "SelectObjectContent"
|
2916
3791
|
o.http_method = "POST"
|
2917
|
-
o.http_request_uri = "/{
|
3792
|
+
o.http_request_uri = "/{Key+}?select&select-type=2"
|
2918
3793
|
o.input = Shapes::ShapeRef.new(shape: SelectObjectContentRequest,
|
2919
3794
|
location_name: "SelectObjectContentRequest",
|
2920
3795
|
metadata: {
|
@@ -2927,7 +3802,15 @@ module Aws::S3
|
|
2927
3802
|
api.add_operation(:upload_part, Seahorse::Model::Operation.new.tap do |o|
|
2928
3803
|
o.name = "UploadPart"
|
2929
3804
|
o.http_method = "PUT"
|
2930
|
-
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
|
+
}
|
2931
3814
|
o.input = Shapes::ShapeRef.new(shape: UploadPartRequest)
|
2932
3815
|
o.output = Shapes::ShapeRef.new(shape: UploadPartOutput)
|
2933
3816
|
end)
|
@@ -2935,10 +3818,22 @@ module Aws::S3
|
|
2935
3818
|
api.add_operation(:upload_part_copy, Seahorse::Model::Operation.new.tap do |o|
|
2936
3819
|
o.name = "UploadPartCopy"
|
2937
3820
|
o.http_method = "PUT"
|
2938
|
-
o.http_request_uri = "/{
|
3821
|
+
o.http_request_uri = "/{Key+}"
|
2939
3822
|
o.input = Shapes::ShapeRef.new(shape: UploadPartCopyRequest)
|
2940
3823
|
o.output = Shapes::ShapeRef.new(shape: UploadPartCopyOutput)
|
2941
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)
|
2942
3837
|
end
|
2943
3838
|
|
2944
3839
|
end
|