aws-sdk-s3 1.75.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (91) hide show
  1. checksums.yaml +7 -0
  2. data/lib/aws-sdk-s3.rb +73 -0
  3. data/lib/aws-sdk-s3/bucket.rb +861 -0
  4. data/lib/aws-sdk-s3/bucket_acl.rb +277 -0
  5. data/lib/aws-sdk-s3/bucket_cors.rb +262 -0
  6. data/lib/aws-sdk-s3/bucket_lifecycle.rb +264 -0
  7. data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +283 -0
  8. data/lib/aws-sdk-s3/bucket_logging.rb +251 -0
  9. data/lib/aws-sdk-s3/bucket_notification.rb +293 -0
  10. data/lib/aws-sdk-s3/bucket_policy.rb +242 -0
  11. data/lib/aws-sdk-s3/bucket_region_cache.rb +81 -0
  12. data/lib/aws-sdk-s3/bucket_request_payment.rb +236 -0
  13. data/lib/aws-sdk-s3/bucket_tagging.rb +251 -0
  14. data/lib/aws-sdk-s3/bucket_versioning.rb +312 -0
  15. data/lib/aws-sdk-s3/bucket_website.rb +292 -0
  16. data/lib/aws-sdk-s3/client.rb +11818 -0
  17. data/lib/aws-sdk-s3/client_api.rb +3014 -0
  18. data/lib/aws-sdk-s3/customizations.rb +34 -0
  19. data/lib/aws-sdk-s3/customizations/bucket.rb +162 -0
  20. data/lib/aws-sdk-s3/customizations/multipart_upload.rb +44 -0
  21. data/lib/aws-sdk-s3/customizations/object.rb +389 -0
  22. data/lib/aws-sdk-s3/customizations/object_summary.rb +85 -0
  23. data/lib/aws-sdk-s3/customizations/types/list_object_versions_output.rb +13 -0
  24. data/lib/aws-sdk-s3/encryption.rb +21 -0
  25. data/lib/aws-sdk-s3/encryption/client.rb +375 -0
  26. data/lib/aws-sdk-s3/encryption/decrypt_handler.rb +190 -0
  27. data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +65 -0
  28. data/lib/aws-sdk-s3/encryption/default_key_provider.rb +40 -0
  29. data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +61 -0
  30. data/lib/aws-sdk-s3/encryption/errors.rb +15 -0
  31. data/lib/aws-sdk-s3/encryption/io_auth_decrypter.rb +58 -0
  32. data/lib/aws-sdk-s3/encryption/io_decrypter.rb +36 -0
  33. data/lib/aws-sdk-s3/encryption/io_encrypter.rb +71 -0
  34. data/lib/aws-sdk-s3/encryption/key_provider.rb +31 -0
  35. data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +75 -0
  36. data/lib/aws-sdk-s3/encryption/materials.rb +60 -0
  37. data/lib/aws-sdk-s3/encryption/utils.rb +81 -0
  38. data/lib/aws-sdk-s3/encryptionV2/client.rb +388 -0
  39. data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +198 -0
  40. data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +103 -0
  41. data/lib/aws-sdk-s3/encryptionV2/default_key_provider.rb +38 -0
  42. data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +66 -0
  43. data/lib/aws-sdk-s3/encryptionV2/errors.rb +13 -0
  44. data/lib/aws-sdk-s3/encryptionV2/io_auth_decrypter.rb +56 -0
  45. data/lib/aws-sdk-s3/encryptionV2/io_decrypter.rb +35 -0
  46. data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +71 -0
  47. data/lib/aws-sdk-s3/encryptionV2/key_provider.rb +29 -0
  48. data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +99 -0
  49. data/lib/aws-sdk-s3/encryptionV2/materials.rb +58 -0
  50. data/lib/aws-sdk-s3/encryptionV2/utils.rb +116 -0
  51. data/lib/aws-sdk-s3/encryption_v2.rb +20 -0
  52. data/lib/aws-sdk-s3/errors.rb +115 -0
  53. data/lib/aws-sdk-s3/event_streams.rb +69 -0
  54. data/lib/aws-sdk-s3/file_downloader.rb +142 -0
  55. data/lib/aws-sdk-s3/file_part.rb +78 -0
  56. data/lib/aws-sdk-s3/file_uploader.rb +70 -0
  57. data/lib/aws-sdk-s3/legacy_signer.rb +189 -0
  58. data/lib/aws-sdk-s3/multipart_file_uploader.rb +227 -0
  59. data/lib/aws-sdk-s3/multipart_stream_uploader.rb +173 -0
  60. data/lib/aws-sdk-s3/multipart_upload.rb +401 -0
  61. data/lib/aws-sdk-s3/multipart_upload_error.rb +18 -0
  62. data/lib/aws-sdk-s3/multipart_upload_part.rb +423 -0
  63. data/lib/aws-sdk-s3/object.rb +1422 -0
  64. data/lib/aws-sdk-s3/object_acl.rb +333 -0
  65. data/lib/aws-sdk-s3/object_copier.rb +101 -0
  66. data/lib/aws-sdk-s3/object_multipart_copier.rb +182 -0
  67. data/lib/aws-sdk-s3/object_summary.rb +1181 -0
  68. data/lib/aws-sdk-s3/object_version.rb +550 -0
  69. data/lib/aws-sdk-s3/plugins/accelerate.rb +87 -0
  70. data/lib/aws-sdk-s3/plugins/bucket_arn.rb +212 -0
  71. data/lib/aws-sdk-s3/plugins/bucket_dns.rb +91 -0
  72. data/lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb +45 -0
  73. data/lib/aws-sdk-s3/plugins/dualstack.rb +74 -0
  74. data/lib/aws-sdk-s3/plugins/expect_100_continue.rb +28 -0
  75. data/lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb +25 -0
  76. data/lib/aws-sdk-s3/plugins/http_200_errors.rb +55 -0
  77. data/lib/aws-sdk-s3/plugins/iad_regional_endpoint.rb +62 -0
  78. data/lib/aws-sdk-s3/plugins/location_constraint.rb +35 -0
  79. data/lib/aws-sdk-s3/plugins/md5s.rb +84 -0
  80. data/lib/aws-sdk-s3/plugins/redirects.rb +45 -0
  81. data/lib/aws-sdk-s3/plugins/s3_host_id.rb +30 -0
  82. data/lib/aws-sdk-s3/plugins/s3_signer.rb +222 -0
  83. data/lib/aws-sdk-s3/plugins/sse_cpk.rb +70 -0
  84. data/lib/aws-sdk-s3/plugins/streaming_retry.rb +118 -0
  85. data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +97 -0
  86. data/lib/aws-sdk-s3/presigned_post.rb +686 -0
  87. data/lib/aws-sdk-s3/presigner.rb +253 -0
  88. data/lib/aws-sdk-s3/resource.rb +117 -0
  89. data/lib/aws-sdk-s3/types.rb +13154 -0
  90. data/lib/aws-sdk-s3/waiters.rb +243 -0
  91. metadata +184 -0
@@ -0,0 +1,3014 @@
1
+ # frozen_string_literal: true
2
+
3
+ # WARNING ABOUT GENERATED CODE
4
+ #
5
+ # This file is generated. See the contributing guide for more information:
6
+ # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
7
+ #
8
+ # WARNING ABOUT GENERATED CODE
9
+
10
+ module Aws::S3
11
+ # @api private
12
+ module ClientApi
13
+
14
+ include Seahorse::Model
15
+
16
+ AbortDate = Shapes::TimestampShape.new(name: 'AbortDate')
17
+ AbortIncompleteMultipartUpload = Shapes::StructureShape.new(name: 'AbortIncompleteMultipartUpload')
18
+ AbortMultipartUploadOutput = Shapes::StructureShape.new(name: 'AbortMultipartUploadOutput')
19
+ AbortMultipartUploadRequest = Shapes::StructureShape.new(name: 'AbortMultipartUploadRequest')
20
+ AbortRuleId = Shapes::StringShape.new(name: 'AbortRuleId')
21
+ AccelerateConfiguration = Shapes::StructureShape.new(name: 'AccelerateConfiguration')
22
+ AcceptRanges = Shapes::StringShape.new(name: 'AcceptRanges')
23
+ AccessControlPolicy = Shapes::StructureShape.new(name: 'AccessControlPolicy')
24
+ AccessControlTranslation = Shapes::StructureShape.new(name: 'AccessControlTranslation')
25
+ AccountId = Shapes::StringShape.new(name: 'AccountId')
26
+ AllowQuotedRecordDelimiter = Shapes::BooleanShape.new(name: 'AllowQuotedRecordDelimiter')
27
+ AllowedHeader = Shapes::StringShape.new(name: 'AllowedHeader')
28
+ AllowedHeaders = Shapes::ListShape.new(name: 'AllowedHeaders', flattened: true)
29
+ AllowedMethod = Shapes::StringShape.new(name: 'AllowedMethod')
30
+ AllowedMethods = Shapes::ListShape.new(name: 'AllowedMethods', flattened: true)
31
+ AllowedOrigin = Shapes::StringShape.new(name: 'AllowedOrigin')
32
+ AllowedOrigins = Shapes::ListShape.new(name: 'AllowedOrigins', flattened: true)
33
+ AnalyticsAndOperator = Shapes::StructureShape.new(name: 'AnalyticsAndOperator')
34
+ AnalyticsConfiguration = Shapes::StructureShape.new(name: 'AnalyticsConfiguration')
35
+ AnalyticsConfigurationList = Shapes::ListShape.new(name: 'AnalyticsConfigurationList', flattened: true)
36
+ AnalyticsExportDestination = Shapes::StructureShape.new(name: 'AnalyticsExportDestination')
37
+ AnalyticsFilter = Shapes::StructureShape.new(name: 'AnalyticsFilter')
38
+ AnalyticsId = Shapes::StringShape.new(name: 'AnalyticsId')
39
+ AnalyticsS3BucketDestination = Shapes::StructureShape.new(name: 'AnalyticsS3BucketDestination')
40
+ AnalyticsS3ExportFileFormat = Shapes::StringShape.new(name: 'AnalyticsS3ExportFileFormat')
41
+ Body = Shapes::BlobShape.new(name: 'Body')
42
+ Bucket = Shapes::StructureShape.new(name: 'Bucket')
43
+ BucketAccelerateStatus = Shapes::StringShape.new(name: 'BucketAccelerateStatus')
44
+ BucketAlreadyExists = Shapes::StructureShape.new(name: 'BucketAlreadyExists')
45
+ BucketAlreadyOwnedByYou = Shapes::StructureShape.new(name: 'BucketAlreadyOwnedByYou')
46
+ BucketCannedACL = Shapes::StringShape.new(name: 'BucketCannedACL')
47
+ BucketLifecycleConfiguration = Shapes::StructureShape.new(name: 'BucketLifecycleConfiguration')
48
+ BucketLocationConstraint = Shapes::StringShape.new(name: 'BucketLocationConstraint')
49
+ BucketLoggingStatus = Shapes::StructureShape.new(name: 'BucketLoggingStatus')
50
+ BucketLogsPermission = Shapes::StringShape.new(name: 'BucketLogsPermission')
51
+ BucketName = Shapes::StringShape.new(name: 'BucketName')
52
+ BucketVersioningStatus = Shapes::StringShape.new(name: 'BucketVersioningStatus')
53
+ Buckets = Shapes::ListShape.new(name: 'Buckets')
54
+ BypassGovernanceRetention = Shapes::BooleanShape.new(name: 'BypassGovernanceRetention')
55
+ BytesProcessed = Shapes::IntegerShape.new(name: 'BytesProcessed')
56
+ BytesReturned = Shapes::IntegerShape.new(name: 'BytesReturned')
57
+ BytesScanned = Shapes::IntegerShape.new(name: 'BytesScanned')
58
+ CORSConfiguration = Shapes::StructureShape.new(name: 'CORSConfiguration')
59
+ CORSRule = Shapes::StructureShape.new(name: 'CORSRule')
60
+ CORSRules = Shapes::ListShape.new(name: 'CORSRules', flattened: true)
61
+ CSVInput = Shapes::StructureShape.new(name: 'CSVInput')
62
+ CSVOutput = Shapes::StructureShape.new(name: 'CSVOutput')
63
+ CacheControl = Shapes::StringShape.new(name: 'CacheControl')
64
+ CloudFunction = Shapes::StringShape.new(name: 'CloudFunction')
65
+ CloudFunctionConfiguration = Shapes::StructureShape.new(name: 'CloudFunctionConfiguration')
66
+ CloudFunctionInvocationRole = Shapes::StringShape.new(name: 'CloudFunctionInvocationRole')
67
+ Code = Shapes::StringShape.new(name: 'Code')
68
+ Comments = Shapes::StringShape.new(name: 'Comments')
69
+ CommonPrefix = Shapes::StructureShape.new(name: 'CommonPrefix')
70
+ CommonPrefixList = Shapes::ListShape.new(name: 'CommonPrefixList', flattened: true)
71
+ CompleteMultipartUploadOutput = Shapes::StructureShape.new(name: 'CompleteMultipartUploadOutput')
72
+ CompleteMultipartUploadRequest = Shapes::StructureShape.new(name: 'CompleteMultipartUploadRequest')
73
+ CompletedMultipartUpload = Shapes::StructureShape.new(name: 'CompletedMultipartUpload')
74
+ CompletedPart = Shapes::StructureShape.new(name: 'CompletedPart')
75
+ CompletedPartList = Shapes::ListShape.new(name: 'CompletedPartList', flattened: true)
76
+ CompressionType = Shapes::StringShape.new(name: 'CompressionType')
77
+ Condition = Shapes::StructureShape.new(name: 'Condition')
78
+ ConfirmRemoveSelfBucketAccess = Shapes::BooleanShape.new(name: 'ConfirmRemoveSelfBucketAccess')
79
+ ContentDisposition = Shapes::StringShape.new(name: 'ContentDisposition')
80
+ ContentEncoding = Shapes::StringShape.new(name: 'ContentEncoding')
81
+ ContentLanguage = Shapes::StringShape.new(name: 'ContentLanguage')
82
+ ContentLength = Shapes::IntegerShape.new(name: 'ContentLength')
83
+ ContentMD5 = Shapes::StringShape.new(name: 'ContentMD5')
84
+ ContentRange = Shapes::StringShape.new(name: 'ContentRange')
85
+ ContentType = Shapes::StringShape.new(name: 'ContentType')
86
+ ContinuationEvent = Shapes::StructureShape.new(name: 'ContinuationEvent')
87
+ CopyObjectOutput = Shapes::StructureShape.new(name: 'CopyObjectOutput')
88
+ CopyObjectRequest = Shapes::StructureShape.new(name: 'CopyObjectRequest')
89
+ CopyObjectResult = Shapes::StructureShape.new(name: 'CopyObjectResult')
90
+ CopyPartResult = Shapes::StructureShape.new(name: 'CopyPartResult')
91
+ CopySource = Shapes::StringShape.new(name: 'CopySource')
92
+ CopySourceIfMatch = Shapes::StringShape.new(name: 'CopySourceIfMatch')
93
+ CopySourceIfModifiedSince = Shapes::TimestampShape.new(name: 'CopySourceIfModifiedSince')
94
+ CopySourceIfNoneMatch = Shapes::StringShape.new(name: 'CopySourceIfNoneMatch')
95
+ CopySourceIfUnmodifiedSince = Shapes::TimestampShape.new(name: 'CopySourceIfUnmodifiedSince')
96
+ CopySourceRange = Shapes::StringShape.new(name: 'CopySourceRange')
97
+ CopySourceSSECustomerAlgorithm = Shapes::StringShape.new(name: 'CopySourceSSECustomerAlgorithm')
98
+ CopySourceSSECustomerKey = Shapes::StringShape.new(name: 'CopySourceSSECustomerKey')
99
+ CopySourceSSECustomerKeyMD5 = Shapes::StringShape.new(name: 'CopySourceSSECustomerKeyMD5')
100
+ CopySourceVersionId = Shapes::StringShape.new(name: 'CopySourceVersionId')
101
+ CreateBucketConfiguration = Shapes::StructureShape.new(name: 'CreateBucketConfiguration')
102
+ CreateBucketOutput = Shapes::StructureShape.new(name: 'CreateBucketOutput')
103
+ CreateBucketRequest = Shapes::StructureShape.new(name: 'CreateBucketRequest')
104
+ CreateMultipartUploadOutput = Shapes::StructureShape.new(name: 'CreateMultipartUploadOutput')
105
+ CreateMultipartUploadRequest = Shapes::StructureShape.new(name: 'CreateMultipartUploadRequest')
106
+ CreationDate = Shapes::TimestampShape.new(name: 'CreationDate')
107
+ Date = Shapes::TimestampShape.new(name: 'Date', timestampFormat: "iso8601")
108
+ Days = Shapes::IntegerShape.new(name: 'Days')
109
+ DaysAfterInitiation = Shapes::IntegerShape.new(name: 'DaysAfterInitiation')
110
+ DefaultRetention = Shapes::StructureShape.new(name: 'DefaultRetention')
111
+ Delete = Shapes::StructureShape.new(name: 'Delete')
112
+ DeleteBucketAnalyticsConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketAnalyticsConfigurationRequest')
113
+ DeleteBucketCorsRequest = Shapes::StructureShape.new(name: 'DeleteBucketCorsRequest')
114
+ DeleteBucketEncryptionRequest = Shapes::StructureShape.new(name: 'DeleteBucketEncryptionRequest')
115
+ DeleteBucketInventoryConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketInventoryConfigurationRequest')
116
+ DeleteBucketLifecycleRequest = Shapes::StructureShape.new(name: 'DeleteBucketLifecycleRequest')
117
+ DeleteBucketMetricsConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteBucketMetricsConfigurationRequest')
118
+ DeleteBucketPolicyRequest = Shapes::StructureShape.new(name: 'DeleteBucketPolicyRequest')
119
+ DeleteBucketReplicationRequest = Shapes::StructureShape.new(name: 'DeleteBucketReplicationRequest')
120
+ DeleteBucketRequest = Shapes::StructureShape.new(name: 'DeleteBucketRequest')
121
+ DeleteBucketTaggingRequest = Shapes::StructureShape.new(name: 'DeleteBucketTaggingRequest')
122
+ DeleteBucketWebsiteRequest = Shapes::StructureShape.new(name: 'DeleteBucketWebsiteRequest')
123
+ DeleteMarker = Shapes::BooleanShape.new(name: 'DeleteMarker')
124
+ DeleteMarkerEntry = Shapes::StructureShape.new(name: 'DeleteMarkerEntry')
125
+ DeleteMarkerReplication = Shapes::StructureShape.new(name: 'DeleteMarkerReplication')
126
+ DeleteMarkerReplicationStatus = Shapes::StringShape.new(name: 'DeleteMarkerReplicationStatus')
127
+ DeleteMarkerVersionId = Shapes::StringShape.new(name: 'DeleteMarkerVersionId')
128
+ DeleteMarkers = Shapes::ListShape.new(name: 'DeleteMarkers', flattened: true)
129
+ DeleteObjectOutput = Shapes::StructureShape.new(name: 'DeleteObjectOutput')
130
+ DeleteObjectRequest = Shapes::StructureShape.new(name: 'DeleteObjectRequest')
131
+ DeleteObjectTaggingOutput = Shapes::StructureShape.new(name: 'DeleteObjectTaggingOutput')
132
+ DeleteObjectTaggingRequest = Shapes::StructureShape.new(name: 'DeleteObjectTaggingRequest')
133
+ DeleteObjectsOutput = Shapes::StructureShape.new(name: 'DeleteObjectsOutput')
134
+ DeleteObjectsRequest = Shapes::StructureShape.new(name: 'DeleteObjectsRequest')
135
+ DeletePublicAccessBlockRequest = Shapes::StructureShape.new(name: 'DeletePublicAccessBlockRequest')
136
+ DeletedObject = Shapes::StructureShape.new(name: 'DeletedObject')
137
+ DeletedObjects = Shapes::ListShape.new(name: 'DeletedObjects', flattened: true)
138
+ Delimiter = Shapes::StringShape.new(name: 'Delimiter')
139
+ Description = Shapes::StringShape.new(name: 'Description')
140
+ Destination = Shapes::StructureShape.new(name: 'Destination')
141
+ DisplayName = Shapes::StringShape.new(name: 'DisplayName')
142
+ ETag = Shapes::StringShape.new(name: 'ETag')
143
+ EmailAddress = Shapes::StringShape.new(name: 'EmailAddress')
144
+ EnableRequestProgress = Shapes::BooleanShape.new(name: 'EnableRequestProgress')
145
+ EncodingType = Shapes::StringShape.new(name: 'EncodingType')
146
+ Encryption = Shapes::StructureShape.new(name: 'Encryption')
147
+ EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
148
+ End = Shapes::IntegerShape.new(name: 'End')
149
+ EndEvent = Shapes::StructureShape.new(name: 'EndEvent')
150
+ Error = Shapes::StructureShape.new(name: 'Error')
151
+ ErrorDocument = Shapes::StructureShape.new(name: 'ErrorDocument')
152
+ Errors = Shapes::ListShape.new(name: 'Errors', flattened: true)
153
+ Event = Shapes::StringShape.new(name: 'Event')
154
+ EventList = Shapes::ListShape.new(name: 'EventList', flattened: true)
155
+ ExistingObjectReplication = Shapes::StructureShape.new(name: 'ExistingObjectReplication')
156
+ ExistingObjectReplicationStatus = Shapes::StringShape.new(name: 'ExistingObjectReplicationStatus')
157
+ Expiration = Shapes::StringShape.new(name: 'Expiration')
158
+ ExpirationStatus = Shapes::StringShape.new(name: 'ExpirationStatus')
159
+ ExpiredObjectDeleteMarker = Shapes::BooleanShape.new(name: 'ExpiredObjectDeleteMarker')
160
+ Expires = Shapes::TimestampShape.new(name: 'Expires')
161
+ ExpiresString = Shapes::StringShape.new(name: 'ExpiresString')
162
+ ExposeHeader = Shapes::StringShape.new(name: 'ExposeHeader')
163
+ ExposeHeaders = Shapes::ListShape.new(name: 'ExposeHeaders', flattened: true)
164
+ Expression = Shapes::StringShape.new(name: 'Expression')
165
+ ExpressionType = Shapes::StringShape.new(name: 'ExpressionType')
166
+ FetchOwner = Shapes::BooleanShape.new(name: 'FetchOwner')
167
+ FieldDelimiter = Shapes::StringShape.new(name: 'FieldDelimiter')
168
+ FileHeaderInfo = Shapes::StringShape.new(name: 'FileHeaderInfo')
169
+ FilterRule = Shapes::StructureShape.new(name: 'FilterRule')
170
+ FilterRuleList = Shapes::ListShape.new(name: 'FilterRuleList', flattened: true)
171
+ FilterRuleName = Shapes::StringShape.new(name: 'FilterRuleName')
172
+ FilterRuleValue = Shapes::StringShape.new(name: 'FilterRuleValue')
173
+ GetBucketAccelerateConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketAccelerateConfigurationOutput')
174
+ GetBucketAccelerateConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketAccelerateConfigurationRequest')
175
+ GetBucketAclOutput = Shapes::StructureShape.new(name: 'GetBucketAclOutput')
176
+ GetBucketAclRequest = Shapes::StructureShape.new(name: 'GetBucketAclRequest')
177
+ GetBucketAnalyticsConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketAnalyticsConfigurationOutput')
178
+ GetBucketAnalyticsConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketAnalyticsConfigurationRequest')
179
+ GetBucketCorsOutput = Shapes::StructureShape.new(name: 'GetBucketCorsOutput')
180
+ GetBucketCorsRequest = Shapes::StructureShape.new(name: 'GetBucketCorsRequest')
181
+ GetBucketEncryptionOutput = Shapes::StructureShape.new(name: 'GetBucketEncryptionOutput')
182
+ GetBucketEncryptionRequest = Shapes::StructureShape.new(name: 'GetBucketEncryptionRequest')
183
+ GetBucketInventoryConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketInventoryConfigurationOutput')
184
+ GetBucketInventoryConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketInventoryConfigurationRequest')
185
+ GetBucketLifecycleConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketLifecycleConfigurationOutput')
186
+ GetBucketLifecycleConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketLifecycleConfigurationRequest')
187
+ GetBucketLifecycleOutput = Shapes::StructureShape.new(name: 'GetBucketLifecycleOutput')
188
+ GetBucketLifecycleRequest = Shapes::StructureShape.new(name: 'GetBucketLifecycleRequest')
189
+ GetBucketLocationOutput = Shapes::StructureShape.new(name: 'GetBucketLocationOutput')
190
+ GetBucketLocationRequest = Shapes::StructureShape.new(name: 'GetBucketLocationRequest')
191
+ GetBucketLoggingOutput = Shapes::StructureShape.new(name: 'GetBucketLoggingOutput')
192
+ GetBucketLoggingRequest = Shapes::StructureShape.new(name: 'GetBucketLoggingRequest')
193
+ GetBucketMetricsConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketMetricsConfigurationOutput')
194
+ GetBucketMetricsConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketMetricsConfigurationRequest')
195
+ GetBucketNotificationConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketNotificationConfigurationRequest')
196
+ GetBucketPolicyOutput = Shapes::StructureShape.new(name: 'GetBucketPolicyOutput')
197
+ GetBucketPolicyRequest = Shapes::StructureShape.new(name: 'GetBucketPolicyRequest')
198
+ GetBucketPolicyStatusOutput = Shapes::StructureShape.new(name: 'GetBucketPolicyStatusOutput')
199
+ GetBucketPolicyStatusRequest = Shapes::StructureShape.new(name: 'GetBucketPolicyStatusRequest')
200
+ GetBucketReplicationOutput = Shapes::StructureShape.new(name: 'GetBucketReplicationOutput')
201
+ GetBucketReplicationRequest = Shapes::StructureShape.new(name: 'GetBucketReplicationRequest')
202
+ GetBucketRequestPaymentOutput = Shapes::StructureShape.new(name: 'GetBucketRequestPaymentOutput')
203
+ GetBucketRequestPaymentRequest = Shapes::StructureShape.new(name: 'GetBucketRequestPaymentRequest')
204
+ GetBucketTaggingOutput = Shapes::StructureShape.new(name: 'GetBucketTaggingOutput')
205
+ GetBucketTaggingRequest = Shapes::StructureShape.new(name: 'GetBucketTaggingRequest')
206
+ GetBucketVersioningOutput = Shapes::StructureShape.new(name: 'GetBucketVersioningOutput')
207
+ GetBucketVersioningRequest = Shapes::StructureShape.new(name: 'GetBucketVersioningRequest')
208
+ GetBucketWebsiteOutput = Shapes::StructureShape.new(name: 'GetBucketWebsiteOutput')
209
+ GetBucketWebsiteRequest = Shapes::StructureShape.new(name: 'GetBucketWebsiteRequest')
210
+ GetObjectAclOutput = Shapes::StructureShape.new(name: 'GetObjectAclOutput')
211
+ GetObjectAclRequest = Shapes::StructureShape.new(name: 'GetObjectAclRequest')
212
+ GetObjectLegalHoldOutput = Shapes::StructureShape.new(name: 'GetObjectLegalHoldOutput')
213
+ GetObjectLegalHoldRequest = Shapes::StructureShape.new(name: 'GetObjectLegalHoldRequest')
214
+ GetObjectLockConfigurationOutput = Shapes::StructureShape.new(name: 'GetObjectLockConfigurationOutput')
215
+ GetObjectLockConfigurationRequest = Shapes::StructureShape.new(name: 'GetObjectLockConfigurationRequest')
216
+ GetObjectOutput = Shapes::StructureShape.new(name: 'GetObjectOutput')
217
+ GetObjectRequest = Shapes::StructureShape.new(name: 'GetObjectRequest')
218
+ GetObjectRetentionOutput = Shapes::StructureShape.new(name: 'GetObjectRetentionOutput')
219
+ GetObjectRetentionRequest = Shapes::StructureShape.new(name: 'GetObjectRetentionRequest')
220
+ GetObjectTaggingOutput = Shapes::StructureShape.new(name: 'GetObjectTaggingOutput')
221
+ GetObjectTaggingRequest = Shapes::StructureShape.new(name: 'GetObjectTaggingRequest')
222
+ GetObjectTorrentOutput = Shapes::StructureShape.new(name: 'GetObjectTorrentOutput')
223
+ GetObjectTorrentRequest = Shapes::StructureShape.new(name: 'GetObjectTorrentRequest')
224
+ GetPublicAccessBlockOutput = Shapes::StructureShape.new(name: 'GetPublicAccessBlockOutput')
225
+ GetPublicAccessBlockRequest = Shapes::StructureShape.new(name: 'GetPublicAccessBlockRequest')
226
+ GlacierJobParameters = Shapes::StructureShape.new(name: 'GlacierJobParameters')
227
+ Grant = Shapes::StructureShape.new(name: 'Grant')
228
+ GrantFullControl = Shapes::StringShape.new(name: 'GrantFullControl')
229
+ GrantRead = Shapes::StringShape.new(name: 'GrantRead')
230
+ GrantReadACP = Shapes::StringShape.new(name: 'GrantReadACP')
231
+ GrantWrite = Shapes::StringShape.new(name: 'GrantWrite')
232
+ GrantWriteACP = Shapes::StringShape.new(name: 'GrantWriteACP')
233
+ Grantee = Shapes::StructureShape.new(name: 'Grantee', xmlNamespace: {"prefix"=>"xsi", "uri"=>"http://www.w3.org/2001/XMLSchema-instance"})
234
+ Grants = Shapes::ListShape.new(name: 'Grants')
235
+ HeadBucketRequest = Shapes::StructureShape.new(name: 'HeadBucketRequest')
236
+ HeadObjectOutput = Shapes::StructureShape.new(name: 'HeadObjectOutput')
237
+ HeadObjectRequest = Shapes::StructureShape.new(name: 'HeadObjectRequest')
238
+ HostName = Shapes::StringShape.new(name: 'HostName')
239
+ HttpErrorCodeReturnedEquals = Shapes::StringShape.new(name: 'HttpErrorCodeReturnedEquals')
240
+ HttpRedirectCode = Shapes::StringShape.new(name: 'HttpRedirectCode')
241
+ ID = Shapes::StringShape.new(name: 'ID')
242
+ IfMatch = Shapes::StringShape.new(name: 'IfMatch')
243
+ IfModifiedSince = Shapes::TimestampShape.new(name: 'IfModifiedSince')
244
+ IfNoneMatch = Shapes::StringShape.new(name: 'IfNoneMatch')
245
+ IfUnmodifiedSince = Shapes::TimestampShape.new(name: 'IfUnmodifiedSince')
246
+ IndexDocument = Shapes::StructureShape.new(name: 'IndexDocument')
247
+ Initiated = Shapes::TimestampShape.new(name: 'Initiated')
248
+ Initiator = Shapes::StructureShape.new(name: 'Initiator')
249
+ InputSerialization = Shapes::StructureShape.new(name: 'InputSerialization')
250
+ InventoryConfiguration = Shapes::StructureShape.new(name: 'InventoryConfiguration')
251
+ InventoryConfigurationList = Shapes::ListShape.new(name: 'InventoryConfigurationList', flattened: true)
252
+ InventoryDestination = Shapes::StructureShape.new(name: 'InventoryDestination')
253
+ InventoryEncryption = Shapes::StructureShape.new(name: 'InventoryEncryption')
254
+ InventoryFilter = Shapes::StructureShape.new(name: 'InventoryFilter')
255
+ InventoryFormat = Shapes::StringShape.new(name: 'InventoryFormat')
256
+ InventoryFrequency = Shapes::StringShape.new(name: 'InventoryFrequency')
257
+ InventoryId = Shapes::StringShape.new(name: 'InventoryId')
258
+ InventoryIncludedObjectVersions = Shapes::StringShape.new(name: 'InventoryIncludedObjectVersions')
259
+ InventoryOptionalField = Shapes::StringShape.new(name: 'InventoryOptionalField')
260
+ InventoryOptionalFields = Shapes::ListShape.new(name: 'InventoryOptionalFields')
261
+ InventoryS3BucketDestination = Shapes::StructureShape.new(name: 'InventoryS3BucketDestination')
262
+ InventorySchedule = Shapes::StructureShape.new(name: 'InventorySchedule')
263
+ IsEnabled = Shapes::BooleanShape.new(name: 'IsEnabled')
264
+ IsLatest = Shapes::BooleanShape.new(name: 'IsLatest')
265
+ IsPublic = Shapes::BooleanShape.new(name: 'IsPublic')
266
+ IsTruncated = Shapes::BooleanShape.new(name: 'IsTruncated')
267
+ JSONInput = Shapes::StructureShape.new(name: 'JSONInput')
268
+ JSONOutput = Shapes::StructureShape.new(name: 'JSONOutput')
269
+ JSONType = Shapes::StringShape.new(name: 'JSONType')
270
+ KMSContext = Shapes::StringShape.new(name: 'KMSContext')
271
+ KeyCount = Shapes::IntegerShape.new(name: 'KeyCount')
272
+ KeyMarker = Shapes::StringShape.new(name: 'KeyMarker')
273
+ KeyPrefixEquals = Shapes::StringShape.new(name: 'KeyPrefixEquals')
274
+ LambdaFunctionArn = Shapes::StringShape.new(name: 'LambdaFunctionArn')
275
+ LambdaFunctionConfiguration = Shapes::StructureShape.new(name: 'LambdaFunctionConfiguration')
276
+ LambdaFunctionConfigurationList = Shapes::ListShape.new(name: 'LambdaFunctionConfigurationList', flattened: true)
277
+ LastModified = Shapes::TimestampShape.new(name: 'LastModified')
278
+ LifecycleConfiguration = Shapes::StructureShape.new(name: 'LifecycleConfiguration')
279
+ LifecycleExpiration = Shapes::StructureShape.new(name: 'LifecycleExpiration')
280
+ LifecycleRule = Shapes::StructureShape.new(name: 'LifecycleRule')
281
+ LifecycleRuleAndOperator = Shapes::StructureShape.new(name: 'LifecycleRuleAndOperator')
282
+ LifecycleRuleFilter = Shapes::StructureShape.new(name: 'LifecycleRuleFilter')
283
+ LifecycleRules = Shapes::ListShape.new(name: 'LifecycleRules', flattened: true)
284
+ ListBucketAnalyticsConfigurationsOutput = Shapes::StructureShape.new(name: 'ListBucketAnalyticsConfigurationsOutput')
285
+ ListBucketAnalyticsConfigurationsRequest = Shapes::StructureShape.new(name: 'ListBucketAnalyticsConfigurationsRequest')
286
+ ListBucketInventoryConfigurationsOutput = Shapes::StructureShape.new(name: 'ListBucketInventoryConfigurationsOutput')
287
+ ListBucketInventoryConfigurationsRequest = Shapes::StructureShape.new(name: 'ListBucketInventoryConfigurationsRequest')
288
+ ListBucketMetricsConfigurationsOutput = Shapes::StructureShape.new(name: 'ListBucketMetricsConfigurationsOutput')
289
+ ListBucketMetricsConfigurationsRequest = Shapes::StructureShape.new(name: 'ListBucketMetricsConfigurationsRequest')
290
+ ListBucketsOutput = Shapes::StructureShape.new(name: 'ListBucketsOutput')
291
+ ListMultipartUploadsOutput = Shapes::StructureShape.new(name: 'ListMultipartUploadsOutput')
292
+ ListMultipartUploadsRequest = Shapes::StructureShape.new(name: 'ListMultipartUploadsRequest')
293
+ ListObjectVersionsOutput = Shapes::StructureShape.new(name: 'ListObjectVersionsOutput')
294
+ ListObjectVersionsRequest = Shapes::StructureShape.new(name: 'ListObjectVersionsRequest')
295
+ ListObjectsOutput = Shapes::StructureShape.new(name: 'ListObjectsOutput')
296
+ ListObjectsRequest = Shapes::StructureShape.new(name: 'ListObjectsRequest')
297
+ ListObjectsV2Output = Shapes::StructureShape.new(name: 'ListObjectsV2Output')
298
+ ListObjectsV2Request = Shapes::StructureShape.new(name: 'ListObjectsV2Request')
299
+ ListPartsOutput = Shapes::StructureShape.new(name: 'ListPartsOutput')
300
+ ListPartsRequest = Shapes::StructureShape.new(name: 'ListPartsRequest')
301
+ Location = Shapes::StringShape.new(name: 'Location')
302
+ LocationPrefix = Shapes::StringShape.new(name: 'LocationPrefix')
303
+ LoggingEnabled = Shapes::StructureShape.new(name: 'LoggingEnabled')
304
+ MFA = Shapes::StringShape.new(name: 'MFA')
305
+ MFADelete = Shapes::StringShape.new(name: 'MFADelete')
306
+ MFADeleteStatus = Shapes::StringShape.new(name: 'MFADeleteStatus')
307
+ Marker = Shapes::StringShape.new(name: 'Marker')
308
+ MaxAgeSeconds = Shapes::IntegerShape.new(name: 'MaxAgeSeconds')
309
+ MaxKeys = Shapes::IntegerShape.new(name: 'MaxKeys')
310
+ MaxParts = Shapes::IntegerShape.new(name: 'MaxParts')
311
+ MaxUploads = Shapes::IntegerShape.new(name: 'MaxUploads')
312
+ Message = Shapes::StringShape.new(name: 'Message')
313
+ Metadata = Shapes::MapShape.new(name: 'Metadata')
314
+ MetadataDirective = Shapes::StringShape.new(name: 'MetadataDirective')
315
+ MetadataEntry = Shapes::StructureShape.new(name: 'MetadataEntry')
316
+ MetadataKey = Shapes::StringShape.new(name: 'MetadataKey')
317
+ MetadataValue = Shapes::StringShape.new(name: 'MetadataValue')
318
+ Metrics = Shapes::StructureShape.new(name: 'Metrics')
319
+ MetricsAndOperator = Shapes::StructureShape.new(name: 'MetricsAndOperator')
320
+ MetricsConfiguration = Shapes::StructureShape.new(name: 'MetricsConfiguration')
321
+ MetricsConfigurationList = Shapes::ListShape.new(name: 'MetricsConfigurationList', flattened: true)
322
+ MetricsFilter = Shapes::StructureShape.new(name: 'MetricsFilter')
323
+ MetricsId = Shapes::StringShape.new(name: 'MetricsId')
324
+ MetricsStatus = Shapes::StringShape.new(name: 'MetricsStatus')
325
+ Minutes = Shapes::IntegerShape.new(name: 'Minutes')
326
+ MissingMeta = Shapes::IntegerShape.new(name: 'MissingMeta')
327
+ MultipartUpload = Shapes::StructureShape.new(name: 'MultipartUpload')
328
+ MultipartUploadId = Shapes::StringShape.new(name: 'MultipartUploadId')
329
+ MultipartUploadList = Shapes::ListShape.new(name: 'MultipartUploadList', flattened: true)
330
+ NextKeyMarker = Shapes::StringShape.new(name: 'NextKeyMarker')
331
+ NextMarker = Shapes::StringShape.new(name: 'NextMarker')
332
+ NextPartNumberMarker = Shapes::IntegerShape.new(name: 'NextPartNumberMarker')
333
+ NextToken = Shapes::StringShape.new(name: 'NextToken')
334
+ NextUploadIdMarker = Shapes::StringShape.new(name: 'NextUploadIdMarker')
335
+ NextVersionIdMarker = Shapes::StringShape.new(name: 'NextVersionIdMarker')
336
+ NoSuchBucket = Shapes::StructureShape.new(name: 'NoSuchBucket')
337
+ NoSuchKey = Shapes::StructureShape.new(name: 'NoSuchKey')
338
+ NoSuchUpload = Shapes::StructureShape.new(name: 'NoSuchUpload')
339
+ NoncurrentVersionExpiration = Shapes::StructureShape.new(name: 'NoncurrentVersionExpiration')
340
+ NoncurrentVersionTransition = Shapes::StructureShape.new(name: 'NoncurrentVersionTransition')
341
+ NoncurrentVersionTransitionList = Shapes::ListShape.new(name: 'NoncurrentVersionTransitionList', flattened: true)
342
+ NotificationConfiguration = Shapes::StructureShape.new(name: 'NotificationConfiguration')
343
+ NotificationConfigurationDeprecated = Shapes::StructureShape.new(name: 'NotificationConfigurationDeprecated')
344
+ NotificationConfigurationFilter = Shapes::StructureShape.new(name: 'NotificationConfigurationFilter')
345
+ NotificationId = Shapes::StringShape.new(name: 'NotificationId')
346
+ Object = Shapes::StructureShape.new(name: 'Object')
347
+ ObjectAlreadyInActiveTierError = Shapes::StructureShape.new(name: 'ObjectAlreadyInActiveTierError')
348
+ ObjectCannedACL = Shapes::StringShape.new(name: 'ObjectCannedACL')
349
+ ObjectIdentifier = Shapes::StructureShape.new(name: 'ObjectIdentifier')
350
+ ObjectIdentifierList = Shapes::ListShape.new(name: 'ObjectIdentifierList', flattened: true)
351
+ ObjectKey = Shapes::StringShape.new(name: 'ObjectKey')
352
+ ObjectList = Shapes::ListShape.new(name: 'ObjectList', flattened: true)
353
+ ObjectLockConfiguration = Shapes::StructureShape.new(name: 'ObjectLockConfiguration')
354
+ ObjectLockEnabled = Shapes::StringShape.new(name: 'ObjectLockEnabled')
355
+ ObjectLockEnabledForBucket = Shapes::BooleanShape.new(name: 'ObjectLockEnabledForBucket')
356
+ ObjectLockLegalHold = Shapes::StructureShape.new(name: 'ObjectLockLegalHold')
357
+ ObjectLockLegalHoldStatus = Shapes::StringShape.new(name: 'ObjectLockLegalHoldStatus')
358
+ ObjectLockMode = Shapes::StringShape.new(name: 'ObjectLockMode')
359
+ ObjectLockRetainUntilDate = Shapes::TimestampShape.new(name: 'ObjectLockRetainUntilDate', timestampFormat: "iso8601")
360
+ ObjectLockRetention = Shapes::StructureShape.new(name: 'ObjectLockRetention')
361
+ ObjectLockRetentionMode = Shapes::StringShape.new(name: 'ObjectLockRetentionMode')
362
+ ObjectLockRule = Shapes::StructureShape.new(name: 'ObjectLockRule')
363
+ ObjectLockToken = Shapes::StringShape.new(name: 'ObjectLockToken')
364
+ ObjectNotInActiveTierError = Shapes::StructureShape.new(name: 'ObjectNotInActiveTierError')
365
+ ObjectStorageClass = Shapes::StringShape.new(name: 'ObjectStorageClass')
366
+ ObjectVersion = Shapes::StructureShape.new(name: 'ObjectVersion')
367
+ ObjectVersionId = Shapes::StringShape.new(name: 'ObjectVersionId')
368
+ ObjectVersionList = Shapes::ListShape.new(name: 'ObjectVersionList', flattened: true)
369
+ ObjectVersionStorageClass = Shapes::StringShape.new(name: 'ObjectVersionStorageClass')
370
+ OutputLocation = Shapes::StructureShape.new(name: 'OutputLocation')
371
+ OutputSerialization = Shapes::StructureShape.new(name: 'OutputSerialization')
372
+ Owner = Shapes::StructureShape.new(name: 'Owner')
373
+ OwnerOverride = Shapes::StringShape.new(name: 'OwnerOverride')
374
+ ParquetInput = Shapes::StructureShape.new(name: 'ParquetInput')
375
+ Part = Shapes::StructureShape.new(name: 'Part')
376
+ PartNumber = Shapes::IntegerShape.new(name: 'PartNumber')
377
+ PartNumberMarker = Shapes::IntegerShape.new(name: 'PartNumberMarker')
378
+ Parts = Shapes::ListShape.new(name: 'Parts', flattened: true)
379
+ PartsCount = Shapes::IntegerShape.new(name: 'PartsCount')
380
+ Payer = Shapes::StringShape.new(name: 'Payer')
381
+ Permission = Shapes::StringShape.new(name: 'Permission')
382
+ Policy = Shapes::StringShape.new(name: 'Policy')
383
+ PolicyStatus = Shapes::StructureShape.new(name: 'PolicyStatus')
384
+ Prefix = Shapes::StringShape.new(name: 'Prefix')
385
+ Priority = Shapes::IntegerShape.new(name: 'Priority')
386
+ Progress = Shapes::StructureShape.new(name: 'Progress')
387
+ ProgressEvent = Shapes::StructureShape.new(name: 'ProgressEvent')
388
+ Protocol = Shapes::StringShape.new(name: 'Protocol')
389
+ PublicAccessBlockConfiguration = Shapes::StructureShape.new(name: 'PublicAccessBlockConfiguration')
390
+ PutBucketAccelerateConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketAccelerateConfigurationRequest')
391
+ PutBucketAclRequest = Shapes::StructureShape.new(name: 'PutBucketAclRequest')
392
+ PutBucketAnalyticsConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketAnalyticsConfigurationRequest')
393
+ PutBucketCorsRequest = Shapes::StructureShape.new(name: 'PutBucketCorsRequest')
394
+ PutBucketEncryptionRequest = Shapes::StructureShape.new(name: 'PutBucketEncryptionRequest')
395
+ PutBucketInventoryConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketInventoryConfigurationRequest')
396
+ PutBucketLifecycleConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketLifecycleConfigurationRequest')
397
+ PutBucketLifecycleRequest = Shapes::StructureShape.new(name: 'PutBucketLifecycleRequest')
398
+ PutBucketLoggingRequest = Shapes::StructureShape.new(name: 'PutBucketLoggingRequest')
399
+ PutBucketMetricsConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketMetricsConfigurationRequest')
400
+ PutBucketNotificationConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketNotificationConfigurationRequest')
401
+ PutBucketNotificationRequest = Shapes::StructureShape.new(name: 'PutBucketNotificationRequest')
402
+ PutBucketPolicyRequest = Shapes::StructureShape.new(name: 'PutBucketPolicyRequest')
403
+ PutBucketReplicationRequest = Shapes::StructureShape.new(name: 'PutBucketReplicationRequest')
404
+ PutBucketRequestPaymentRequest = Shapes::StructureShape.new(name: 'PutBucketRequestPaymentRequest')
405
+ PutBucketTaggingRequest = Shapes::StructureShape.new(name: 'PutBucketTaggingRequest')
406
+ PutBucketVersioningRequest = Shapes::StructureShape.new(name: 'PutBucketVersioningRequest')
407
+ PutBucketWebsiteRequest = Shapes::StructureShape.new(name: 'PutBucketWebsiteRequest')
408
+ PutObjectAclOutput = Shapes::StructureShape.new(name: 'PutObjectAclOutput')
409
+ PutObjectAclRequest = Shapes::StructureShape.new(name: 'PutObjectAclRequest')
410
+ PutObjectLegalHoldOutput = Shapes::StructureShape.new(name: 'PutObjectLegalHoldOutput')
411
+ PutObjectLegalHoldRequest = Shapes::StructureShape.new(name: 'PutObjectLegalHoldRequest')
412
+ PutObjectLockConfigurationOutput = Shapes::StructureShape.new(name: 'PutObjectLockConfigurationOutput')
413
+ PutObjectLockConfigurationRequest = Shapes::StructureShape.new(name: 'PutObjectLockConfigurationRequest')
414
+ PutObjectOutput = Shapes::StructureShape.new(name: 'PutObjectOutput')
415
+ PutObjectRequest = Shapes::StructureShape.new(name: 'PutObjectRequest')
416
+ PutObjectRetentionOutput = Shapes::StructureShape.new(name: 'PutObjectRetentionOutput')
417
+ PutObjectRetentionRequest = Shapes::StructureShape.new(name: 'PutObjectRetentionRequest')
418
+ PutObjectTaggingOutput = Shapes::StructureShape.new(name: 'PutObjectTaggingOutput')
419
+ PutObjectTaggingRequest = Shapes::StructureShape.new(name: 'PutObjectTaggingRequest')
420
+ PutPublicAccessBlockRequest = Shapes::StructureShape.new(name: 'PutPublicAccessBlockRequest')
421
+ QueueArn = Shapes::StringShape.new(name: 'QueueArn')
422
+ QueueConfiguration = Shapes::StructureShape.new(name: 'QueueConfiguration')
423
+ QueueConfigurationDeprecated = Shapes::StructureShape.new(name: 'QueueConfigurationDeprecated')
424
+ QueueConfigurationList = Shapes::ListShape.new(name: 'QueueConfigurationList', flattened: true)
425
+ Quiet = Shapes::BooleanShape.new(name: 'Quiet')
426
+ QuoteCharacter = Shapes::StringShape.new(name: 'QuoteCharacter')
427
+ QuoteEscapeCharacter = Shapes::StringShape.new(name: 'QuoteEscapeCharacter')
428
+ QuoteFields = Shapes::StringShape.new(name: 'QuoteFields')
429
+ Range = Shapes::StringShape.new(name: 'Range')
430
+ RecordDelimiter = Shapes::StringShape.new(name: 'RecordDelimiter')
431
+ RecordsEvent = Shapes::StructureShape.new(name: 'RecordsEvent')
432
+ Redirect = Shapes::StructureShape.new(name: 'Redirect')
433
+ RedirectAllRequestsTo = Shapes::StructureShape.new(name: 'RedirectAllRequestsTo')
434
+ ReplaceKeyPrefixWith = Shapes::StringShape.new(name: 'ReplaceKeyPrefixWith')
435
+ ReplaceKeyWith = Shapes::StringShape.new(name: 'ReplaceKeyWith')
436
+ ReplicaKmsKeyID = Shapes::StringShape.new(name: 'ReplicaKmsKeyID')
437
+ ReplicationConfiguration = Shapes::StructureShape.new(name: 'ReplicationConfiguration')
438
+ ReplicationRule = Shapes::StructureShape.new(name: 'ReplicationRule')
439
+ ReplicationRuleAndOperator = Shapes::StructureShape.new(name: 'ReplicationRuleAndOperator')
440
+ ReplicationRuleFilter = Shapes::StructureShape.new(name: 'ReplicationRuleFilter')
441
+ ReplicationRuleStatus = Shapes::StringShape.new(name: 'ReplicationRuleStatus')
442
+ ReplicationRules = Shapes::ListShape.new(name: 'ReplicationRules', flattened: true)
443
+ ReplicationStatus = Shapes::StringShape.new(name: 'ReplicationStatus')
444
+ ReplicationTime = Shapes::StructureShape.new(name: 'ReplicationTime')
445
+ ReplicationTimeStatus = Shapes::StringShape.new(name: 'ReplicationTimeStatus')
446
+ ReplicationTimeValue = Shapes::StructureShape.new(name: 'ReplicationTimeValue')
447
+ RequestCharged = Shapes::StringShape.new(name: 'RequestCharged')
448
+ RequestPayer = Shapes::StringShape.new(name: 'RequestPayer')
449
+ RequestPaymentConfiguration = Shapes::StructureShape.new(name: 'RequestPaymentConfiguration')
450
+ RequestProgress = Shapes::StructureShape.new(name: 'RequestProgress')
451
+ ResponseCacheControl = Shapes::StringShape.new(name: 'ResponseCacheControl')
452
+ ResponseContentDisposition = Shapes::StringShape.new(name: 'ResponseContentDisposition')
453
+ ResponseContentEncoding = Shapes::StringShape.new(name: 'ResponseContentEncoding')
454
+ ResponseContentLanguage = Shapes::StringShape.new(name: 'ResponseContentLanguage')
455
+ ResponseContentType = Shapes::StringShape.new(name: 'ResponseContentType')
456
+ ResponseExpires = Shapes::TimestampShape.new(name: 'ResponseExpires')
457
+ Restore = Shapes::StringShape.new(name: 'Restore')
458
+ RestoreObjectOutput = Shapes::StructureShape.new(name: 'RestoreObjectOutput')
459
+ RestoreObjectRequest = Shapes::StructureShape.new(name: 'RestoreObjectRequest')
460
+ RestoreOutputPath = Shapes::StringShape.new(name: 'RestoreOutputPath')
461
+ RestoreRequest = Shapes::StructureShape.new(name: 'RestoreRequest')
462
+ RestoreRequestType = Shapes::StringShape.new(name: 'RestoreRequestType')
463
+ Role = Shapes::StringShape.new(name: 'Role')
464
+ RoutingRule = Shapes::StructureShape.new(name: 'RoutingRule')
465
+ RoutingRules = Shapes::ListShape.new(name: 'RoutingRules')
466
+ Rule = Shapes::StructureShape.new(name: 'Rule')
467
+ Rules = Shapes::ListShape.new(name: 'Rules', flattened: true)
468
+ S3KeyFilter = Shapes::StructureShape.new(name: 'S3KeyFilter')
469
+ S3Location = Shapes::StructureShape.new(name: 'S3Location')
470
+ SSECustomerAlgorithm = Shapes::StringShape.new(name: 'SSECustomerAlgorithm')
471
+ SSECustomerKey = Shapes::StringShape.new(name: 'SSECustomerKey')
472
+ SSECustomerKeyMD5 = Shapes::StringShape.new(name: 'SSECustomerKeyMD5')
473
+ SSEKMS = Shapes::StructureShape.new(name: 'SSEKMS')
474
+ SSEKMSEncryptionContext = Shapes::StringShape.new(name: 'SSEKMSEncryptionContext')
475
+ SSEKMSKeyId = Shapes::StringShape.new(name: 'SSEKMSKeyId')
476
+ SSES3 = Shapes::StructureShape.new(name: 'SSES3')
477
+ ScanRange = Shapes::StructureShape.new(name: 'ScanRange')
478
+ SelectObjectContentEventStream = Shapes::StructureShape.new(name: 'SelectObjectContentEventStream')
479
+ SelectObjectContentOutput = Shapes::StructureShape.new(name: 'SelectObjectContentOutput')
480
+ SelectObjectContentRequest = Shapes::StructureShape.new(name: 'SelectObjectContentRequest')
481
+ SelectParameters = Shapes::StructureShape.new(name: 'SelectParameters')
482
+ ServerSideEncryption = Shapes::StringShape.new(name: 'ServerSideEncryption')
483
+ ServerSideEncryptionByDefault = Shapes::StructureShape.new(name: 'ServerSideEncryptionByDefault')
484
+ ServerSideEncryptionConfiguration = Shapes::StructureShape.new(name: 'ServerSideEncryptionConfiguration')
485
+ ServerSideEncryptionRule = Shapes::StructureShape.new(name: 'ServerSideEncryptionRule')
486
+ ServerSideEncryptionRules = Shapes::ListShape.new(name: 'ServerSideEncryptionRules', flattened: true)
487
+ Setting = Shapes::BooleanShape.new(name: 'Setting')
488
+ Size = Shapes::IntegerShape.new(name: 'Size')
489
+ SourceSelectionCriteria = Shapes::StructureShape.new(name: 'SourceSelectionCriteria')
490
+ SseKmsEncryptedObjects = Shapes::StructureShape.new(name: 'SseKmsEncryptedObjects')
491
+ SseKmsEncryptedObjectsStatus = Shapes::StringShape.new(name: 'SseKmsEncryptedObjectsStatus')
492
+ Start = Shapes::IntegerShape.new(name: 'Start')
493
+ StartAfter = Shapes::StringShape.new(name: 'StartAfter')
494
+ Stats = Shapes::StructureShape.new(name: 'Stats')
495
+ StatsEvent = Shapes::StructureShape.new(name: 'StatsEvent')
496
+ StorageClass = Shapes::StringShape.new(name: 'StorageClass')
497
+ StorageClassAnalysis = Shapes::StructureShape.new(name: 'StorageClassAnalysis')
498
+ StorageClassAnalysisDataExport = Shapes::StructureShape.new(name: 'StorageClassAnalysisDataExport')
499
+ StorageClassAnalysisSchemaVersion = Shapes::StringShape.new(name: 'StorageClassAnalysisSchemaVersion')
500
+ Suffix = Shapes::StringShape.new(name: 'Suffix')
501
+ Tag = Shapes::StructureShape.new(name: 'Tag')
502
+ TagCount = Shapes::IntegerShape.new(name: 'TagCount')
503
+ TagSet = Shapes::ListShape.new(name: 'TagSet')
504
+ Tagging = Shapes::StructureShape.new(name: 'Tagging')
505
+ TaggingDirective = Shapes::StringShape.new(name: 'TaggingDirective')
506
+ TaggingHeader = Shapes::StringShape.new(name: 'TaggingHeader')
507
+ TargetBucket = Shapes::StringShape.new(name: 'TargetBucket')
508
+ TargetGrant = Shapes::StructureShape.new(name: 'TargetGrant')
509
+ TargetGrants = Shapes::ListShape.new(name: 'TargetGrants')
510
+ TargetPrefix = Shapes::StringShape.new(name: 'TargetPrefix')
511
+ Tier = Shapes::StringShape.new(name: 'Tier')
512
+ Token = Shapes::StringShape.new(name: 'Token')
513
+ TopicArn = Shapes::StringShape.new(name: 'TopicArn')
514
+ TopicConfiguration = Shapes::StructureShape.new(name: 'TopicConfiguration')
515
+ TopicConfigurationDeprecated = Shapes::StructureShape.new(name: 'TopicConfigurationDeprecated')
516
+ TopicConfigurationList = Shapes::ListShape.new(name: 'TopicConfigurationList', flattened: true)
517
+ Transition = Shapes::StructureShape.new(name: 'Transition')
518
+ TransitionList = Shapes::ListShape.new(name: 'TransitionList', flattened: true)
519
+ TransitionStorageClass = Shapes::StringShape.new(name: 'TransitionStorageClass')
520
+ Type = Shapes::StringShape.new(name: 'Type')
521
+ URI = Shapes::StringShape.new(name: 'URI')
522
+ UploadIdMarker = Shapes::StringShape.new(name: 'UploadIdMarker')
523
+ UploadPartCopyOutput = Shapes::StructureShape.new(name: 'UploadPartCopyOutput')
524
+ UploadPartCopyRequest = Shapes::StructureShape.new(name: 'UploadPartCopyRequest')
525
+ UploadPartOutput = Shapes::StructureShape.new(name: 'UploadPartOutput')
526
+ UploadPartRequest = Shapes::StructureShape.new(name: 'UploadPartRequest')
527
+ UserMetadata = Shapes::ListShape.new(name: 'UserMetadata')
528
+ Value = Shapes::StringShape.new(name: 'Value')
529
+ VersionIdMarker = Shapes::StringShape.new(name: 'VersionIdMarker')
530
+ VersioningConfiguration = Shapes::StructureShape.new(name: 'VersioningConfiguration')
531
+ WebsiteConfiguration = Shapes::StructureShape.new(name: 'WebsiteConfiguration')
532
+ WebsiteRedirectLocation = Shapes::StringShape.new(name: 'WebsiteRedirectLocation')
533
+ Years = Shapes::IntegerShape.new(name: 'Years')
534
+
535
+ AbortIncompleteMultipartUpload.add_member(:days_after_initiation, Shapes::ShapeRef.new(shape: DaysAfterInitiation, location_name: "DaysAfterInitiation"))
536
+ AbortIncompleteMultipartUpload.struct_class = Types::AbortIncompleteMultipartUpload
537
+
538
+ AbortMultipartUploadOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
539
+ AbortMultipartUploadOutput.struct_class = Types::AbortMultipartUploadOutput
540
+
541
+ AbortMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
542
+ AbortMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
543
+ AbortMultipartUploadRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
544
+ AbortMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
545
+ AbortMultipartUploadRequest.struct_class = Types::AbortMultipartUploadRequest
546
+
547
+ AccelerateConfiguration.add_member(:status, Shapes::ShapeRef.new(shape: BucketAccelerateStatus, location_name: "Status"))
548
+ AccelerateConfiguration.struct_class = Types::AccelerateConfiguration
549
+
550
+ AccessControlPolicy.add_member(:grants, Shapes::ShapeRef.new(shape: Grants, location_name: "AccessControlList"))
551
+ AccessControlPolicy.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
552
+ AccessControlPolicy.struct_class = Types::AccessControlPolicy
553
+
554
+ AccessControlTranslation.add_member(:owner, Shapes::ShapeRef.new(shape: OwnerOverride, required: true, location_name: "Owner"))
555
+ AccessControlTranslation.struct_class = Types::AccessControlTranslation
556
+
557
+ AllowedHeaders.member = Shapes::ShapeRef.new(shape: AllowedHeader)
558
+
559
+ AllowedMethods.member = Shapes::ShapeRef.new(shape: AllowedMethod)
560
+
561
+ AllowedOrigins.member = Shapes::ShapeRef.new(shape: AllowedOrigin)
562
+
563
+ AnalyticsAndOperator.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
564
+ AnalyticsAndOperator.add_member(:tags, Shapes::ShapeRef.new(shape: TagSet, location_name: "Tag", metadata: {"flattened"=>true}))
565
+ AnalyticsAndOperator.struct_class = Types::AnalyticsAndOperator
566
+
567
+ AnalyticsConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: AnalyticsId, required: true, location_name: "Id"))
568
+ AnalyticsConfiguration.add_member(:filter, Shapes::ShapeRef.new(shape: AnalyticsFilter, location_name: "Filter"))
569
+ AnalyticsConfiguration.add_member(:storage_class_analysis, Shapes::ShapeRef.new(shape: StorageClassAnalysis, required: true, location_name: "StorageClassAnalysis"))
570
+ AnalyticsConfiguration.struct_class = Types::AnalyticsConfiguration
571
+
572
+ AnalyticsConfigurationList.member = Shapes::ShapeRef.new(shape: AnalyticsConfiguration)
573
+
574
+ AnalyticsExportDestination.add_member(:s3_bucket_destination, Shapes::ShapeRef.new(shape: AnalyticsS3BucketDestination, required: true, location_name: "S3BucketDestination"))
575
+ AnalyticsExportDestination.struct_class = Types::AnalyticsExportDestination
576
+
577
+ AnalyticsFilter.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
578
+ AnalyticsFilter.add_member(:tag, Shapes::ShapeRef.new(shape: Tag, location_name: "Tag"))
579
+ AnalyticsFilter.add_member(:and, Shapes::ShapeRef.new(shape: AnalyticsAndOperator, location_name: "And"))
580
+ AnalyticsFilter.struct_class = Types::AnalyticsFilter
581
+
582
+ AnalyticsS3BucketDestination.add_member(:format, Shapes::ShapeRef.new(shape: AnalyticsS3ExportFileFormat, required: true, location_name: "Format"))
583
+ AnalyticsS3BucketDestination.add_member(:bucket_account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "BucketAccountId"))
584
+ AnalyticsS3BucketDestination.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "Bucket"))
585
+ AnalyticsS3BucketDestination.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
586
+ AnalyticsS3BucketDestination.struct_class = Types::AnalyticsS3BucketDestination
587
+
588
+ Bucket.add_member(:name, Shapes::ShapeRef.new(shape: BucketName, location_name: "Name"))
589
+ Bucket.add_member(:creation_date, Shapes::ShapeRef.new(shape: CreationDate, location_name: "CreationDate"))
590
+ Bucket.struct_class = Types::Bucket
591
+
592
+ BucketAlreadyExists.struct_class = Types::BucketAlreadyExists
593
+
594
+ BucketAlreadyOwnedByYou.struct_class = Types::BucketAlreadyOwnedByYou
595
+
596
+ BucketLifecycleConfiguration.add_member(:rules, Shapes::ShapeRef.new(shape: LifecycleRules, required: true, location_name: "Rule"))
597
+ BucketLifecycleConfiguration.struct_class = Types::BucketLifecycleConfiguration
598
+
599
+ BucketLoggingStatus.add_member(:logging_enabled, Shapes::ShapeRef.new(shape: LoggingEnabled, location_name: "LoggingEnabled"))
600
+ BucketLoggingStatus.struct_class = Types::BucketLoggingStatus
601
+
602
+ Buckets.member = Shapes::ShapeRef.new(shape: Bucket, location_name: "Bucket")
603
+
604
+ CORSConfiguration.add_member(:cors_rules, Shapes::ShapeRef.new(shape: CORSRules, required: true, location_name: "CORSRule"))
605
+ CORSConfiguration.struct_class = Types::CORSConfiguration
606
+
607
+ CORSRule.add_member(:allowed_headers, Shapes::ShapeRef.new(shape: AllowedHeaders, location_name: "AllowedHeader"))
608
+ CORSRule.add_member(:allowed_methods, Shapes::ShapeRef.new(shape: AllowedMethods, required: true, location_name: "AllowedMethod"))
609
+ CORSRule.add_member(:allowed_origins, Shapes::ShapeRef.new(shape: AllowedOrigins, required: true, location_name: "AllowedOrigin"))
610
+ CORSRule.add_member(:expose_headers, Shapes::ShapeRef.new(shape: ExposeHeaders, location_name: "ExposeHeader"))
611
+ CORSRule.add_member(:max_age_seconds, Shapes::ShapeRef.new(shape: MaxAgeSeconds, location_name: "MaxAgeSeconds"))
612
+ CORSRule.struct_class = Types::CORSRule
613
+
614
+ CORSRules.member = Shapes::ShapeRef.new(shape: CORSRule)
615
+
616
+ CSVInput.add_member(:file_header_info, Shapes::ShapeRef.new(shape: FileHeaderInfo, location_name: "FileHeaderInfo"))
617
+ CSVInput.add_member(:comments, Shapes::ShapeRef.new(shape: Comments, location_name: "Comments"))
618
+ CSVInput.add_member(:quote_escape_character, Shapes::ShapeRef.new(shape: QuoteEscapeCharacter, location_name: "QuoteEscapeCharacter"))
619
+ CSVInput.add_member(:record_delimiter, Shapes::ShapeRef.new(shape: RecordDelimiter, location_name: "RecordDelimiter"))
620
+ CSVInput.add_member(:field_delimiter, Shapes::ShapeRef.new(shape: FieldDelimiter, location_name: "FieldDelimiter"))
621
+ CSVInput.add_member(:quote_character, Shapes::ShapeRef.new(shape: QuoteCharacter, location_name: "QuoteCharacter"))
622
+ CSVInput.add_member(:allow_quoted_record_delimiter, Shapes::ShapeRef.new(shape: AllowQuotedRecordDelimiter, location_name: "AllowQuotedRecordDelimiter"))
623
+ CSVInput.struct_class = Types::CSVInput
624
+
625
+ CSVOutput.add_member(:quote_fields, Shapes::ShapeRef.new(shape: QuoteFields, location_name: "QuoteFields"))
626
+ CSVOutput.add_member(:quote_escape_character, Shapes::ShapeRef.new(shape: QuoteEscapeCharacter, location_name: "QuoteEscapeCharacter"))
627
+ CSVOutput.add_member(:record_delimiter, Shapes::ShapeRef.new(shape: RecordDelimiter, location_name: "RecordDelimiter"))
628
+ CSVOutput.add_member(:field_delimiter, Shapes::ShapeRef.new(shape: FieldDelimiter, location_name: "FieldDelimiter"))
629
+ CSVOutput.add_member(:quote_character, Shapes::ShapeRef.new(shape: QuoteCharacter, location_name: "QuoteCharacter"))
630
+ CSVOutput.struct_class = Types::CSVOutput
631
+
632
+ CloudFunctionConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
633
+ CloudFunctionConfiguration.add_member(:event, Shapes::ShapeRef.new(shape: Event, deprecated: true, location_name: "Event"))
634
+ CloudFunctionConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, location_name: "Event"))
635
+ CloudFunctionConfiguration.add_member(:cloud_function, Shapes::ShapeRef.new(shape: CloudFunction, location_name: "CloudFunction"))
636
+ CloudFunctionConfiguration.add_member(:invocation_role, Shapes::ShapeRef.new(shape: CloudFunctionInvocationRole, location_name: "InvocationRole"))
637
+ CloudFunctionConfiguration.struct_class = Types::CloudFunctionConfiguration
638
+
639
+ CommonPrefix.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
640
+ CommonPrefix.struct_class = Types::CommonPrefix
641
+
642
+ CommonPrefixList.member = Shapes::ShapeRef.new(shape: CommonPrefix)
643
+
644
+ CompleteMultipartUploadOutput.add_member(:location, Shapes::ShapeRef.new(shape: Location, location_name: "Location"))
645
+ CompleteMultipartUploadOutput.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
646
+ CompleteMultipartUploadOutput.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
647
+ CompleteMultipartUploadOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
648
+ CompleteMultipartUploadOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
649
+ CompleteMultipartUploadOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
650
+ CompleteMultipartUploadOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
651
+ CompleteMultipartUploadOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
652
+ CompleteMultipartUploadOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
653
+ CompleteMultipartUploadOutput.struct_class = Types::CompleteMultipartUploadOutput
654
+
655
+ CompleteMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
656
+ CompleteMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
657
+ CompleteMultipartUploadRequest.add_member(:multipart_upload, Shapes::ShapeRef.new(shape: CompletedMultipartUpload, location_name: "CompleteMultipartUpload", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
658
+ CompleteMultipartUploadRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
659
+ CompleteMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
660
+ CompleteMultipartUploadRequest.struct_class = Types::CompleteMultipartUploadRequest
661
+ CompleteMultipartUploadRequest[:payload] = :multipart_upload
662
+ CompleteMultipartUploadRequest[:payload_member] = CompleteMultipartUploadRequest.member(:multipart_upload)
663
+
664
+ CompletedMultipartUpload.add_member(:parts, Shapes::ShapeRef.new(shape: CompletedPartList, location_name: "Part"))
665
+ CompletedMultipartUpload.struct_class = Types::CompletedMultipartUpload
666
+
667
+ CompletedPart.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
668
+ CompletedPart.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location_name: "PartNumber"))
669
+ CompletedPart.struct_class = Types::CompletedPart
670
+
671
+ CompletedPartList.member = Shapes::ShapeRef.new(shape: CompletedPart)
672
+
673
+ Condition.add_member(:http_error_code_returned_equals, Shapes::ShapeRef.new(shape: HttpErrorCodeReturnedEquals, location_name: "HttpErrorCodeReturnedEquals"))
674
+ Condition.add_member(:key_prefix_equals, Shapes::ShapeRef.new(shape: KeyPrefixEquals, location_name: "KeyPrefixEquals"))
675
+ Condition.struct_class = Types::Condition
676
+
677
+ ContinuationEvent.struct_class = Types::ContinuationEvent
678
+
679
+ CopyObjectOutput.add_member(:copy_object_result, Shapes::ShapeRef.new(shape: CopyObjectResult, location_name: "CopyObjectResult"))
680
+ CopyObjectOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
681
+ CopyObjectOutput.add_member(:copy_source_version_id, Shapes::ShapeRef.new(shape: CopySourceVersionId, location: "header", location_name: "x-amz-copy-source-version-id"))
682
+ CopyObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
683
+ CopyObjectOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
684
+ CopyObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
685
+ CopyObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
686
+ CopyObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
687
+ CopyObjectOutput.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
688
+ CopyObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
689
+ CopyObjectOutput.struct_class = Types::CopyObjectOutput
690
+ CopyObjectOutput[:payload] = :copy_object_result
691
+ CopyObjectOutput[:payload_member] = CopyObjectOutput.member(:copy_object_result)
692
+
693
+ CopyObjectRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
694
+ CopyObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
695
+ CopyObjectRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
696
+ CopyObjectRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
697
+ CopyObjectRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
698
+ CopyObjectRequest.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
699
+ CopyObjectRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
700
+ CopyObjectRequest.add_member(:copy_source, Shapes::ShapeRef.new(shape: CopySource, required: true, location: "header", location_name: "x-amz-copy-source"))
701
+ CopyObjectRequest.add_member(:copy_source_if_match, Shapes::ShapeRef.new(shape: CopySourceIfMatch, location: "header", location_name: "x-amz-copy-source-if-match"))
702
+ CopyObjectRequest.add_member(:copy_source_if_modified_since, Shapes::ShapeRef.new(shape: CopySourceIfModifiedSince, location: "header", location_name: "x-amz-copy-source-if-modified-since"))
703
+ CopyObjectRequest.add_member(:copy_source_if_none_match, Shapes::ShapeRef.new(shape: CopySourceIfNoneMatch, location: "header", location_name: "x-amz-copy-source-if-none-match"))
704
+ CopyObjectRequest.add_member(:copy_source_if_unmodified_since, Shapes::ShapeRef.new(shape: CopySourceIfUnmodifiedSince, location: "header", location_name: "x-amz-copy-source-if-unmodified-since"))
705
+ CopyObjectRequest.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
706
+ CopyObjectRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
707
+ CopyObjectRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
708
+ CopyObjectRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
709
+ CopyObjectRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
710
+ CopyObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
711
+ CopyObjectRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
712
+ CopyObjectRequest.add_member(:metadata_directive, Shapes::ShapeRef.new(shape: MetadataDirective, location: "header", location_name: "x-amz-metadata-directive"))
713
+ CopyObjectRequest.add_member(:tagging_directive, Shapes::ShapeRef.new(shape: TaggingDirective, location: "header", location_name: "x-amz-tagging-directive"))
714
+ CopyObjectRequest.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
715
+ CopyObjectRequest.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
716
+ CopyObjectRequest.add_member(:website_redirect_location, Shapes::ShapeRef.new(shape: WebsiteRedirectLocation, location: "header", location_name: "x-amz-website-redirect-location"))
717
+ CopyObjectRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
718
+ CopyObjectRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
719
+ CopyObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
720
+ CopyObjectRequest.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
721
+ CopyObjectRequest.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
722
+ 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"))
723
+ 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"))
724
+ 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"))
725
+ CopyObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
726
+ CopyObjectRequest.add_member(:tagging, Shapes::ShapeRef.new(shape: TaggingHeader, location: "header", location_name: "x-amz-tagging"))
727
+ CopyObjectRequest.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: ObjectLockMode, location: "header", location_name: "x-amz-object-lock-mode"))
728
+ CopyObjectRequest.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: ObjectLockRetainUntilDate, location: "header", location_name: "x-amz-object-lock-retain-until-date"))
729
+ CopyObjectRequest.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
730
+ CopyObjectRequest.struct_class = Types::CopyObjectRequest
731
+
732
+ CopyObjectResult.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
733
+ CopyObjectResult.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
734
+ CopyObjectResult.struct_class = Types::CopyObjectResult
735
+
736
+ CopyPartResult.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
737
+ CopyPartResult.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
738
+ CopyPartResult.struct_class = Types::CopyPartResult
739
+
740
+ CreateBucketConfiguration.add_member(:location_constraint, Shapes::ShapeRef.new(shape: BucketLocationConstraint, location_name: "LocationConstraint"))
741
+ CreateBucketConfiguration.struct_class = Types::CreateBucketConfiguration
742
+
743
+ CreateBucketOutput.add_member(:location, Shapes::ShapeRef.new(shape: Location, location: "header", location_name: "Location"))
744
+ CreateBucketOutput.struct_class = Types::CreateBucketOutput
745
+
746
+ CreateBucketRequest.add_member(:acl, Shapes::ShapeRef.new(shape: BucketCannedACL, location: "header", location_name: "x-amz-acl"))
747
+ CreateBucketRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
748
+ 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/"}}))
749
+ CreateBucketRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
750
+ CreateBucketRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
751
+ CreateBucketRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
752
+ CreateBucketRequest.add_member(:grant_write, Shapes::ShapeRef.new(shape: GrantWrite, location: "header", location_name: "x-amz-grant-write"))
753
+ CreateBucketRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
754
+ CreateBucketRequest.add_member(:object_lock_enabled_for_bucket, Shapes::ShapeRef.new(shape: ObjectLockEnabledForBucket, location: "header", location_name: "x-amz-bucket-object-lock-enabled"))
755
+ CreateBucketRequest.struct_class = Types::CreateBucketRequest
756
+ CreateBucketRequest[:payload] = :create_bucket_configuration
757
+ CreateBucketRequest[:payload_member] = CreateBucketRequest.member(:create_bucket_configuration)
758
+
759
+ CreateMultipartUploadOutput.add_member(:abort_date, Shapes::ShapeRef.new(shape: AbortDate, location: "header", location_name: "x-amz-abort-date"))
760
+ CreateMultipartUploadOutput.add_member(:abort_rule_id, Shapes::ShapeRef.new(shape: AbortRuleId, location: "header", location_name: "x-amz-abort-rule-id"))
761
+ CreateMultipartUploadOutput.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
762
+ CreateMultipartUploadOutput.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
763
+ CreateMultipartUploadOutput.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, location_name: "UploadId"))
764
+ CreateMultipartUploadOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
765
+ CreateMultipartUploadOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
766
+ CreateMultipartUploadOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
767
+ CreateMultipartUploadOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
768
+ CreateMultipartUploadOutput.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
769
+ CreateMultipartUploadOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
770
+ CreateMultipartUploadOutput.struct_class = Types::CreateMultipartUploadOutput
771
+
772
+ CreateMultipartUploadRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
773
+ CreateMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
774
+ CreateMultipartUploadRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
775
+ CreateMultipartUploadRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
776
+ CreateMultipartUploadRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
777
+ CreateMultipartUploadRequest.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
778
+ CreateMultipartUploadRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
779
+ CreateMultipartUploadRequest.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
780
+ CreateMultipartUploadRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
781
+ CreateMultipartUploadRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
782
+ CreateMultipartUploadRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
783
+ CreateMultipartUploadRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
784
+ CreateMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
785
+ CreateMultipartUploadRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
786
+ CreateMultipartUploadRequest.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
787
+ CreateMultipartUploadRequest.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
788
+ CreateMultipartUploadRequest.add_member(:website_redirect_location, Shapes::ShapeRef.new(shape: WebsiteRedirectLocation, location: "header", location_name: "x-amz-website-redirect-location"))
789
+ CreateMultipartUploadRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
790
+ CreateMultipartUploadRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
791
+ CreateMultipartUploadRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
792
+ CreateMultipartUploadRequest.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
793
+ CreateMultipartUploadRequest.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
794
+ CreateMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
795
+ CreateMultipartUploadRequest.add_member(:tagging, Shapes::ShapeRef.new(shape: TaggingHeader, location: "header", location_name: "x-amz-tagging"))
796
+ CreateMultipartUploadRequest.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: ObjectLockMode, location: "header", location_name: "x-amz-object-lock-mode"))
797
+ CreateMultipartUploadRequest.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: ObjectLockRetainUntilDate, location: "header", location_name: "x-amz-object-lock-retain-until-date"))
798
+ CreateMultipartUploadRequest.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
799
+ CreateMultipartUploadRequest.struct_class = Types::CreateMultipartUploadRequest
800
+
801
+ DefaultRetention.add_member(:mode, Shapes::ShapeRef.new(shape: ObjectLockRetentionMode, location_name: "Mode"))
802
+ DefaultRetention.add_member(:days, Shapes::ShapeRef.new(shape: Days, location_name: "Days"))
803
+ DefaultRetention.add_member(:years, Shapes::ShapeRef.new(shape: Years, location_name: "Years"))
804
+ DefaultRetention.struct_class = Types::DefaultRetention
805
+
806
+ Delete.add_member(:objects, Shapes::ShapeRef.new(shape: ObjectIdentifierList, required: true, location_name: "Object"))
807
+ Delete.add_member(:quiet, Shapes::ShapeRef.new(shape: Quiet, location_name: "Quiet"))
808
+ Delete.struct_class = Types::Delete
809
+
810
+ DeleteBucketAnalyticsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
811
+ DeleteBucketAnalyticsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: AnalyticsId, required: true, location: "querystring", location_name: "id"))
812
+ DeleteBucketAnalyticsConfigurationRequest.struct_class = Types::DeleteBucketAnalyticsConfigurationRequest
813
+
814
+ DeleteBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
815
+ DeleteBucketCorsRequest.struct_class = Types::DeleteBucketCorsRequest
816
+
817
+ DeleteBucketEncryptionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
818
+ DeleteBucketEncryptionRequest.struct_class = Types::DeleteBucketEncryptionRequest
819
+
820
+ DeleteBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
821
+ DeleteBucketInventoryConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: InventoryId, required: true, location: "querystring", location_name: "id"))
822
+ DeleteBucketInventoryConfigurationRequest.struct_class = Types::DeleteBucketInventoryConfigurationRequest
823
+
824
+ DeleteBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
825
+ DeleteBucketLifecycleRequest.struct_class = Types::DeleteBucketLifecycleRequest
826
+
827
+ DeleteBucketMetricsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
828
+ DeleteBucketMetricsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location: "querystring", location_name: "id"))
829
+ DeleteBucketMetricsConfigurationRequest.struct_class = Types::DeleteBucketMetricsConfigurationRequest
830
+
831
+ DeleteBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
832
+ DeleteBucketPolicyRequest.struct_class = Types::DeleteBucketPolicyRequest
833
+
834
+ DeleteBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
835
+ DeleteBucketReplicationRequest.struct_class = Types::DeleteBucketReplicationRequest
836
+
837
+ DeleteBucketRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
838
+ DeleteBucketRequest.struct_class = Types::DeleteBucketRequest
839
+
840
+ DeleteBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
841
+ DeleteBucketTaggingRequest.struct_class = Types::DeleteBucketTaggingRequest
842
+
843
+ DeleteBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
844
+ DeleteBucketWebsiteRequest.struct_class = Types::DeleteBucketWebsiteRequest
845
+
846
+ DeleteMarkerEntry.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
847
+ DeleteMarkerEntry.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
848
+ DeleteMarkerEntry.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
849
+ DeleteMarkerEntry.add_member(:is_latest, Shapes::ShapeRef.new(shape: IsLatest, location_name: "IsLatest"))
850
+ DeleteMarkerEntry.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
851
+ DeleteMarkerEntry.struct_class = Types::DeleteMarkerEntry
852
+
853
+ DeleteMarkerReplication.add_member(:status, Shapes::ShapeRef.new(shape: DeleteMarkerReplicationStatus, location_name: "Status"))
854
+ DeleteMarkerReplication.struct_class = Types::DeleteMarkerReplication
855
+
856
+ DeleteMarkers.member = Shapes::ShapeRef.new(shape: DeleteMarkerEntry)
857
+
858
+ DeleteObjectOutput.add_member(:delete_marker, Shapes::ShapeRef.new(shape: DeleteMarker, location: "header", location_name: "x-amz-delete-marker"))
859
+ DeleteObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
860
+ DeleteObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
861
+ DeleteObjectOutput.struct_class = Types::DeleteObjectOutput
862
+
863
+ DeleteObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
864
+ DeleteObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
865
+ DeleteObjectRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
866
+ DeleteObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
867
+ DeleteObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
868
+ DeleteObjectRequest.add_member(:bypass_governance_retention, Shapes::ShapeRef.new(shape: BypassGovernanceRetention, location: "header", location_name: "x-amz-bypass-governance-retention"))
869
+ DeleteObjectRequest.struct_class = Types::DeleteObjectRequest
870
+
871
+ DeleteObjectTaggingOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
872
+ DeleteObjectTaggingOutput.struct_class = Types::DeleteObjectTaggingOutput
873
+
874
+ DeleteObjectTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
875
+ DeleteObjectTaggingRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
876
+ DeleteObjectTaggingRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
877
+ DeleteObjectTaggingRequest.struct_class = Types::DeleteObjectTaggingRequest
878
+
879
+ DeleteObjectsOutput.add_member(:deleted, Shapes::ShapeRef.new(shape: DeletedObjects, location_name: "Deleted"))
880
+ DeleteObjectsOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
881
+ DeleteObjectsOutput.add_member(:errors, Shapes::ShapeRef.new(shape: Errors, location_name: "Error"))
882
+ DeleteObjectsOutput.struct_class = Types::DeleteObjectsOutput
883
+
884
+ DeleteObjectsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
885
+ 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/"}}))
886
+ DeleteObjectsRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
887
+ DeleteObjectsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
888
+ DeleteObjectsRequest.add_member(:bypass_governance_retention, Shapes::ShapeRef.new(shape: BypassGovernanceRetention, location: "header", location_name: "x-amz-bypass-governance-retention"))
889
+ DeleteObjectsRequest.struct_class = Types::DeleteObjectsRequest
890
+ DeleteObjectsRequest[:payload] = :delete
891
+ DeleteObjectsRequest[:payload_member] = DeleteObjectsRequest.member(:delete)
892
+
893
+ DeletePublicAccessBlockRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
894
+ DeletePublicAccessBlockRequest.struct_class = Types::DeletePublicAccessBlockRequest
895
+
896
+ DeletedObject.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
897
+ DeletedObject.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
898
+ DeletedObject.add_member(:delete_marker, Shapes::ShapeRef.new(shape: DeleteMarker, location_name: "DeleteMarker"))
899
+ DeletedObject.add_member(:delete_marker_version_id, Shapes::ShapeRef.new(shape: DeleteMarkerVersionId, location_name: "DeleteMarkerVersionId"))
900
+ DeletedObject.struct_class = Types::DeletedObject
901
+
902
+ DeletedObjects.member = Shapes::ShapeRef.new(shape: DeletedObject)
903
+
904
+ Destination.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "Bucket"))
905
+ Destination.add_member(:account, Shapes::ShapeRef.new(shape: AccountId, location_name: "Account"))
906
+ Destination.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
907
+ Destination.add_member(:access_control_translation, Shapes::ShapeRef.new(shape: AccessControlTranslation, location_name: "AccessControlTranslation"))
908
+ Destination.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "EncryptionConfiguration"))
909
+ Destination.add_member(:replication_time, Shapes::ShapeRef.new(shape: ReplicationTime, location_name: "ReplicationTime"))
910
+ Destination.add_member(:metrics, Shapes::ShapeRef.new(shape: Metrics, location_name: "Metrics"))
911
+ Destination.struct_class = Types::Destination
912
+
913
+ Encryption.add_member(:encryption_type, Shapes::ShapeRef.new(shape: ServerSideEncryption, required: true, location_name: "EncryptionType"))
914
+ Encryption.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location_name: "KMSKeyId"))
915
+ Encryption.add_member(:kms_context, Shapes::ShapeRef.new(shape: KMSContext, location_name: "KMSContext"))
916
+ Encryption.struct_class = Types::Encryption
917
+
918
+ EncryptionConfiguration.add_member(:replica_kms_key_id, Shapes::ShapeRef.new(shape: ReplicaKmsKeyID, location_name: "ReplicaKmsKeyID"))
919
+ EncryptionConfiguration.struct_class = Types::EncryptionConfiguration
920
+
921
+ EndEvent.struct_class = Types::EndEvent
922
+
923
+ Error.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
924
+ Error.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
925
+ Error.add_member(:code, Shapes::ShapeRef.new(shape: Code, location_name: "Code"))
926
+ Error.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
927
+ Error.struct_class = Types::Error
928
+
929
+ ErrorDocument.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location_name: "Key"))
930
+ ErrorDocument.struct_class = Types::ErrorDocument
931
+
932
+ Errors.member = Shapes::ShapeRef.new(shape: Error)
933
+
934
+ EventList.member = Shapes::ShapeRef.new(shape: Event)
935
+
936
+ ExistingObjectReplication.add_member(:status, Shapes::ShapeRef.new(shape: ExistingObjectReplicationStatus, required: true, location_name: "Status"))
937
+ ExistingObjectReplication.struct_class = Types::ExistingObjectReplication
938
+
939
+ ExposeHeaders.member = Shapes::ShapeRef.new(shape: ExposeHeader)
940
+
941
+ FilterRule.add_member(:name, Shapes::ShapeRef.new(shape: FilterRuleName, location_name: "Name"))
942
+ FilterRule.add_member(:value, Shapes::ShapeRef.new(shape: FilterRuleValue, location_name: "Value"))
943
+ FilterRule.struct_class = Types::FilterRule
944
+
945
+ FilterRuleList.member = Shapes::ShapeRef.new(shape: FilterRule)
946
+
947
+ GetBucketAccelerateConfigurationOutput.add_member(:status, Shapes::ShapeRef.new(shape: BucketAccelerateStatus, location_name: "Status"))
948
+ GetBucketAccelerateConfigurationOutput.struct_class = Types::GetBucketAccelerateConfigurationOutput
949
+
950
+ GetBucketAccelerateConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
951
+ GetBucketAccelerateConfigurationRequest.struct_class = Types::GetBucketAccelerateConfigurationRequest
952
+
953
+ GetBucketAclOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
954
+ GetBucketAclOutput.add_member(:grants, Shapes::ShapeRef.new(shape: Grants, location_name: "AccessControlList"))
955
+ GetBucketAclOutput.struct_class = Types::GetBucketAclOutput
956
+
957
+ GetBucketAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
958
+ GetBucketAclRequest.struct_class = Types::GetBucketAclRequest
959
+
960
+ GetBucketAnalyticsConfigurationOutput.add_member(:analytics_configuration, Shapes::ShapeRef.new(shape: AnalyticsConfiguration, location_name: "AnalyticsConfiguration"))
961
+ GetBucketAnalyticsConfigurationOutput.struct_class = Types::GetBucketAnalyticsConfigurationOutput
962
+ GetBucketAnalyticsConfigurationOutput[:payload] = :analytics_configuration
963
+ GetBucketAnalyticsConfigurationOutput[:payload_member] = GetBucketAnalyticsConfigurationOutput.member(:analytics_configuration)
964
+
965
+ GetBucketAnalyticsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
966
+ GetBucketAnalyticsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: AnalyticsId, required: true, location: "querystring", location_name: "id"))
967
+ GetBucketAnalyticsConfigurationRequest.struct_class = Types::GetBucketAnalyticsConfigurationRequest
968
+
969
+ GetBucketCorsOutput.add_member(:cors_rules, Shapes::ShapeRef.new(shape: CORSRules, location_name: "CORSRule"))
970
+ GetBucketCorsOutput.struct_class = Types::GetBucketCorsOutput
971
+
972
+ GetBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
973
+ GetBucketCorsRequest.struct_class = Types::GetBucketCorsRequest
974
+
975
+ GetBucketEncryptionOutput.add_member(:server_side_encryption_configuration, Shapes::ShapeRef.new(shape: ServerSideEncryptionConfiguration, location_name: "ServerSideEncryptionConfiguration"))
976
+ GetBucketEncryptionOutput.struct_class = Types::GetBucketEncryptionOutput
977
+ GetBucketEncryptionOutput[:payload] = :server_side_encryption_configuration
978
+ GetBucketEncryptionOutput[:payload_member] = GetBucketEncryptionOutput.member(:server_side_encryption_configuration)
979
+
980
+ GetBucketEncryptionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
981
+ GetBucketEncryptionRequest.struct_class = Types::GetBucketEncryptionRequest
982
+
983
+ GetBucketInventoryConfigurationOutput.add_member(:inventory_configuration, Shapes::ShapeRef.new(shape: InventoryConfiguration, location_name: "InventoryConfiguration"))
984
+ GetBucketInventoryConfigurationOutput.struct_class = Types::GetBucketInventoryConfigurationOutput
985
+ GetBucketInventoryConfigurationOutput[:payload] = :inventory_configuration
986
+ GetBucketInventoryConfigurationOutput[:payload_member] = GetBucketInventoryConfigurationOutput.member(:inventory_configuration)
987
+
988
+ GetBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
989
+ GetBucketInventoryConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: InventoryId, required: true, location: "querystring", location_name: "id"))
990
+ GetBucketInventoryConfigurationRequest.struct_class = Types::GetBucketInventoryConfigurationRequest
991
+
992
+ GetBucketLifecycleConfigurationOutput.add_member(:rules, Shapes::ShapeRef.new(shape: LifecycleRules, location_name: "Rule"))
993
+ GetBucketLifecycleConfigurationOutput.struct_class = Types::GetBucketLifecycleConfigurationOutput
994
+
995
+ GetBucketLifecycleConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
996
+ GetBucketLifecycleConfigurationRequest.struct_class = Types::GetBucketLifecycleConfigurationRequest
997
+
998
+ GetBucketLifecycleOutput.add_member(:rules, Shapes::ShapeRef.new(shape: Rules, location_name: "Rule"))
999
+ GetBucketLifecycleOutput.struct_class = Types::GetBucketLifecycleOutput
1000
+
1001
+ GetBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1002
+ GetBucketLifecycleRequest.struct_class = Types::GetBucketLifecycleRequest
1003
+
1004
+ GetBucketLocationOutput.add_member(:location_constraint, Shapes::ShapeRef.new(shape: BucketLocationConstraint, location_name: "LocationConstraint"))
1005
+ GetBucketLocationOutput.struct_class = Types::GetBucketLocationOutput
1006
+
1007
+ GetBucketLocationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1008
+ GetBucketLocationRequest.struct_class = Types::GetBucketLocationRequest
1009
+
1010
+ GetBucketLoggingOutput.add_member(:logging_enabled, Shapes::ShapeRef.new(shape: LoggingEnabled, location_name: "LoggingEnabled"))
1011
+ GetBucketLoggingOutput.struct_class = Types::GetBucketLoggingOutput
1012
+
1013
+ GetBucketLoggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1014
+ GetBucketLoggingRequest.struct_class = Types::GetBucketLoggingRequest
1015
+
1016
+ GetBucketMetricsConfigurationOutput.add_member(:metrics_configuration, Shapes::ShapeRef.new(shape: MetricsConfiguration, location_name: "MetricsConfiguration"))
1017
+ GetBucketMetricsConfigurationOutput.struct_class = Types::GetBucketMetricsConfigurationOutput
1018
+ GetBucketMetricsConfigurationOutput[:payload] = :metrics_configuration
1019
+ GetBucketMetricsConfigurationOutput[:payload_member] = GetBucketMetricsConfigurationOutput.member(:metrics_configuration)
1020
+
1021
+ GetBucketMetricsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1022
+ GetBucketMetricsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location: "querystring", location_name: "id"))
1023
+ GetBucketMetricsConfigurationRequest.struct_class = Types::GetBucketMetricsConfigurationRequest
1024
+
1025
+ GetBucketNotificationConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1026
+ GetBucketNotificationConfigurationRequest.struct_class = Types::GetBucketNotificationConfigurationRequest
1027
+
1028
+ GetBucketPolicyOutput.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, location_name: "Policy"))
1029
+ GetBucketPolicyOutput.struct_class = Types::GetBucketPolicyOutput
1030
+ GetBucketPolicyOutput[:payload] = :policy
1031
+ GetBucketPolicyOutput[:payload_member] = GetBucketPolicyOutput.member(:policy)
1032
+
1033
+ GetBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1034
+ GetBucketPolicyRequest.struct_class = Types::GetBucketPolicyRequest
1035
+
1036
+ GetBucketPolicyStatusOutput.add_member(:policy_status, Shapes::ShapeRef.new(shape: PolicyStatus, location_name: "PolicyStatus"))
1037
+ GetBucketPolicyStatusOutput.struct_class = Types::GetBucketPolicyStatusOutput
1038
+ GetBucketPolicyStatusOutput[:payload] = :policy_status
1039
+ GetBucketPolicyStatusOutput[:payload_member] = GetBucketPolicyStatusOutput.member(:policy_status)
1040
+
1041
+ GetBucketPolicyStatusRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1042
+ GetBucketPolicyStatusRequest.struct_class = Types::GetBucketPolicyStatusRequest
1043
+
1044
+ GetBucketReplicationOutput.add_member(:replication_configuration, Shapes::ShapeRef.new(shape: ReplicationConfiguration, location_name: "ReplicationConfiguration"))
1045
+ GetBucketReplicationOutput.struct_class = Types::GetBucketReplicationOutput
1046
+ GetBucketReplicationOutput[:payload] = :replication_configuration
1047
+ GetBucketReplicationOutput[:payload_member] = GetBucketReplicationOutput.member(:replication_configuration)
1048
+
1049
+ GetBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1050
+ GetBucketReplicationRequest.struct_class = Types::GetBucketReplicationRequest
1051
+
1052
+ GetBucketRequestPaymentOutput.add_member(:payer, Shapes::ShapeRef.new(shape: Payer, location_name: "Payer"))
1053
+ GetBucketRequestPaymentOutput.struct_class = Types::GetBucketRequestPaymentOutput
1054
+
1055
+ GetBucketRequestPaymentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1056
+ GetBucketRequestPaymentRequest.struct_class = Types::GetBucketRequestPaymentRequest
1057
+
1058
+ GetBucketTaggingOutput.add_member(:tag_set, Shapes::ShapeRef.new(shape: TagSet, required: true, location_name: "TagSet"))
1059
+ GetBucketTaggingOutput.struct_class = Types::GetBucketTaggingOutput
1060
+
1061
+ GetBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1062
+ GetBucketTaggingRequest.struct_class = Types::GetBucketTaggingRequest
1063
+
1064
+ GetBucketVersioningOutput.add_member(:status, Shapes::ShapeRef.new(shape: BucketVersioningStatus, location_name: "Status"))
1065
+ GetBucketVersioningOutput.add_member(:mfa_delete, Shapes::ShapeRef.new(shape: MFADeleteStatus, location_name: "MfaDelete"))
1066
+ GetBucketVersioningOutput.struct_class = Types::GetBucketVersioningOutput
1067
+
1068
+ GetBucketVersioningRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1069
+ GetBucketVersioningRequest.struct_class = Types::GetBucketVersioningRequest
1070
+
1071
+ GetBucketWebsiteOutput.add_member(:redirect_all_requests_to, Shapes::ShapeRef.new(shape: RedirectAllRequestsTo, location_name: "RedirectAllRequestsTo"))
1072
+ GetBucketWebsiteOutput.add_member(:index_document, Shapes::ShapeRef.new(shape: IndexDocument, location_name: "IndexDocument"))
1073
+ GetBucketWebsiteOutput.add_member(:error_document, Shapes::ShapeRef.new(shape: ErrorDocument, location_name: "ErrorDocument"))
1074
+ GetBucketWebsiteOutput.add_member(:routing_rules, Shapes::ShapeRef.new(shape: RoutingRules, location_name: "RoutingRules"))
1075
+ GetBucketWebsiteOutput.struct_class = Types::GetBucketWebsiteOutput
1076
+
1077
+ GetBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1078
+ GetBucketWebsiteRequest.struct_class = Types::GetBucketWebsiteRequest
1079
+
1080
+ GetObjectAclOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
1081
+ GetObjectAclOutput.add_member(:grants, Shapes::ShapeRef.new(shape: Grants, location_name: "AccessControlList"))
1082
+ GetObjectAclOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1083
+ GetObjectAclOutput.struct_class = Types::GetObjectAclOutput
1084
+
1085
+ GetObjectAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1086
+ GetObjectAclRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1087
+ GetObjectAclRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
1088
+ GetObjectAclRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1089
+ GetObjectAclRequest.struct_class = Types::GetObjectAclRequest
1090
+
1091
+ GetObjectLegalHoldOutput.add_member(:legal_hold, Shapes::ShapeRef.new(shape: ObjectLockLegalHold, location_name: "LegalHold"))
1092
+ GetObjectLegalHoldOutput.struct_class = Types::GetObjectLegalHoldOutput
1093
+ GetObjectLegalHoldOutput[:payload] = :legal_hold
1094
+ GetObjectLegalHoldOutput[:payload_member] = GetObjectLegalHoldOutput.member(:legal_hold)
1095
+
1096
+ GetObjectLegalHoldRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1097
+ GetObjectLegalHoldRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1098
+ GetObjectLegalHoldRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
1099
+ GetObjectLegalHoldRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1100
+ GetObjectLegalHoldRequest.struct_class = Types::GetObjectLegalHoldRequest
1101
+
1102
+ GetObjectLockConfigurationOutput.add_member(:object_lock_configuration, Shapes::ShapeRef.new(shape: ObjectLockConfiguration, location_name: "ObjectLockConfiguration"))
1103
+ GetObjectLockConfigurationOutput.struct_class = Types::GetObjectLockConfigurationOutput
1104
+ GetObjectLockConfigurationOutput[:payload] = :object_lock_configuration
1105
+ GetObjectLockConfigurationOutput[:payload_member] = GetObjectLockConfigurationOutput.member(:object_lock_configuration)
1106
+
1107
+ GetObjectLockConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1108
+ GetObjectLockConfigurationRequest.struct_class = Types::GetObjectLockConfigurationRequest
1109
+
1110
+ GetObjectOutput.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
1111
+ GetObjectOutput.add_member(:delete_marker, Shapes::ShapeRef.new(shape: DeleteMarker, location: "header", location_name: "x-amz-delete-marker"))
1112
+ GetObjectOutput.add_member(:accept_ranges, Shapes::ShapeRef.new(shape: AcceptRanges, location: "header", location_name: "accept-ranges"))
1113
+ GetObjectOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
1114
+ GetObjectOutput.add_member(:restore, Shapes::ShapeRef.new(shape: Restore, location: "header", location_name: "x-amz-restore"))
1115
+ GetObjectOutput.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location: "header", location_name: "Last-Modified"))
1116
+ GetObjectOutput.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
1117
+ GetObjectOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
1118
+ GetObjectOutput.add_member(:missing_meta, Shapes::ShapeRef.new(shape: MissingMeta, location: "header", location_name: "x-amz-missing-meta"))
1119
+ GetObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
1120
+ GetObjectOutput.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
1121
+ GetObjectOutput.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
1122
+ GetObjectOutput.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
1123
+ GetObjectOutput.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
1124
+ GetObjectOutput.add_member(:content_range, Shapes::ShapeRef.new(shape: ContentRange, location: "header", location_name: "Content-Range"))
1125
+ GetObjectOutput.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
1126
+ GetObjectOutput.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
1127
+ GetObjectOutput.add_member(:expires_string, Shapes::ShapeRef.new(shape: ExpiresString, location: "header", location_name: "Expires"))
1128
+ GetObjectOutput.add_member(:website_redirect_location, Shapes::ShapeRef.new(shape: WebsiteRedirectLocation, location: "header", location_name: "x-amz-website-redirect-location"))
1129
+ GetObjectOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
1130
+ GetObjectOutput.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
1131
+ GetObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
1132
+ GetObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
1133
+ GetObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
1134
+ GetObjectOutput.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
1135
+ GetObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1136
+ GetObjectOutput.add_member(:replication_status, Shapes::ShapeRef.new(shape: ReplicationStatus, location: "header", location_name: "x-amz-replication-status"))
1137
+ GetObjectOutput.add_member(:parts_count, Shapes::ShapeRef.new(shape: PartsCount, location: "header", location_name: "x-amz-mp-parts-count"))
1138
+ GetObjectOutput.add_member(:tag_count, Shapes::ShapeRef.new(shape: TagCount, location: "header", location_name: "x-amz-tagging-count"))
1139
+ GetObjectOutput.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: ObjectLockMode, location: "header", location_name: "x-amz-object-lock-mode"))
1140
+ GetObjectOutput.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: ObjectLockRetainUntilDate, location: "header", location_name: "x-amz-object-lock-retain-until-date"))
1141
+ GetObjectOutput.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
1142
+ GetObjectOutput.struct_class = Types::GetObjectOutput
1143
+ GetObjectOutput[:payload] = :body
1144
+ GetObjectOutput[:payload_member] = GetObjectOutput.member(:body)
1145
+
1146
+ GetObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1147
+ GetObjectRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: IfMatch, location: "header", location_name: "If-Match"))
1148
+ GetObjectRequest.add_member(:if_modified_since, Shapes::ShapeRef.new(shape: IfModifiedSince, location: "header", location_name: "If-Modified-Since"))
1149
+ GetObjectRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
1150
+ GetObjectRequest.add_member(:if_unmodified_since, Shapes::ShapeRef.new(shape: IfUnmodifiedSince, location: "header", location_name: "If-Unmodified-Since"))
1151
+ GetObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1152
+ GetObjectRequest.add_member(:range, Shapes::ShapeRef.new(shape: Range, location: "header", location_name: "Range"))
1153
+ GetObjectRequest.add_member(:response_cache_control, Shapes::ShapeRef.new(shape: ResponseCacheControl, location: "querystring", location_name: "response-cache-control"))
1154
+ GetObjectRequest.add_member(:response_content_disposition, Shapes::ShapeRef.new(shape: ResponseContentDisposition, location: "querystring", location_name: "response-content-disposition"))
1155
+ GetObjectRequest.add_member(:response_content_encoding, Shapes::ShapeRef.new(shape: ResponseContentEncoding, location: "querystring", location_name: "response-content-encoding"))
1156
+ GetObjectRequest.add_member(:response_content_language, Shapes::ShapeRef.new(shape: ResponseContentLanguage, location: "querystring", location_name: "response-content-language"))
1157
+ GetObjectRequest.add_member(:response_content_type, Shapes::ShapeRef.new(shape: ResponseContentType, location: "querystring", location_name: "response-content-type"))
1158
+ GetObjectRequest.add_member(:response_expires, Shapes::ShapeRef.new(shape: ResponseExpires, location: "querystring", location_name: "response-expires"))
1159
+ GetObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
1160
+ GetObjectRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
1161
+ GetObjectRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
1162
+ GetObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
1163
+ GetObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1164
+ GetObjectRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location: "querystring", location_name: "partNumber"))
1165
+ GetObjectRequest.struct_class = Types::GetObjectRequest
1166
+
1167
+ GetObjectRetentionOutput.add_member(:retention, Shapes::ShapeRef.new(shape: ObjectLockRetention, location_name: "Retention"))
1168
+ GetObjectRetentionOutput.struct_class = Types::GetObjectRetentionOutput
1169
+ GetObjectRetentionOutput[:payload] = :retention
1170
+ GetObjectRetentionOutput[:payload_member] = GetObjectRetentionOutput.member(:retention)
1171
+
1172
+ GetObjectRetentionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1173
+ GetObjectRetentionRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1174
+ GetObjectRetentionRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
1175
+ GetObjectRetentionRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1176
+ GetObjectRetentionRequest.struct_class = Types::GetObjectRetentionRequest
1177
+
1178
+ GetObjectTaggingOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
1179
+ GetObjectTaggingOutput.add_member(:tag_set, Shapes::ShapeRef.new(shape: TagSet, required: true, location_name: "TagSet"))
1180
+ GetObjectTaggingOutput.struct_class = Types::GetObjectTaggingOutput
1181
+
1182
+ GetObjectTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1183
+ GetObjectTaggingRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1184
+ GetObjectTaggingRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
1185
+ GetObjectTaggingRequest.struct_class = Types::GetObjectTaggingRequest
1186
+
1187
+ GetObjectTorrentOutput.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
1188
+ GetObjectTorrentOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1189
+ GetObjectTorrentOutput.struct_class = Types::GetObjectTorrentOutput
1190
+ GetObjectTorrentOutput[:payload] = :body
1191
+ GetObjectTorrentOutput[:payload_member] = GetObjectTorrentOutput.member(:body)
1192
+
1193
+ GetObjectTorrentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1194
+ GetObjectTorrentRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1195
+ GetObjectTorrentRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1196
+ GetObjectTorrentRequest.struct_class = Types::GetObjectTorrentRequest
1197
+
1198
+ GetPublicAccessBlockOutput.add_member(:public_access_block_configuration, Shapes::ShapeRef.new(shape: PublicAccessBlockConfiguration, location_name: "PublicAccessBlockConfiguration"))
1199
+ GetPublicAccessBlockOutput.struct_class = Types::GetPublicAccessBlockOutput
1200
+ GetPublicAccessBlockOutput[:payload] = :public_access_block_configuration
1201
+ GetPublicAccessBlockOutput[:payload_member] = GetPublicAccessBlockOutput.member(:public_access_block_configuration)
1202
+
1203
+ GetPublicAccessBlockRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1204
+ GetPublicAccessBlockRequest.struct_class = Types::GetPublicAccessBlockRequest
1205
+
1206
+ GlacierJobParameters.add_member(:tier, Shapes::ShapeRef.new(shape: Tier, required: true, location_name: "Tier"))
1207
+ GlacierJobParameters.struct_class = Types::GlacierJobParameters
1208
+
1209
+ Grant.add_member(:grantee, Shapes::ShapeRef.new(shape: Grantee, location_name: "Grantee"))
1210
+ Grant.add_member(:permission, Shapes::ShapeRef.new(shape: Permission, location_name: "Permission"))
1211
+ Grant.struct_class = Types::Grant
1212
+
1213
+ Grantee.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
1214
+ Grantee.add_member(:email_address, Shapes::ShapeRef.new(shape: EmailAddress, location_name: "EmailAddress"))
1215
+ Grantee.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
1216
+ Grantee.add_member(:type, Shapes::ShapeRef.new(shape: Type, required: true, location_name: "xsi:type", metadata: {"xmlAttribute"=>true}))
1217
+ Grantee.add_member(:uri, Shapes::ShapeRef.new(shape: URI, location_name: "URI"))
1218
+ Grantee.struct_class = Types::Grantee
1219
+
1220
+ Grants.member = Shapes::ShapeRef.new(shape: Grant, location_name: "Grant")
1221
+
1222
+ HeadBucketRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1223
+ HeadBucketRequest.struct_class = Types::HeadBucketRequest
1224
+
1225
+ HeadObjectOutput.add_member(:delete_marker, Shapes::ShapeRef.new(shape: DeleteMarker, location: "header", location_name: "x-amz-delete-marker"))
1226
+ HeadObjectOutput.add_member(:accept_ranges, Shapes::ShapeRef.new(shape: AcceptRanges, location: "header", location_name: "accept-ranges"))
1227
+ HeadObjectOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
1228
+ HeadObjectOutput.add_member(:restore, Shapes::ShapeRef.new(shape: Restore, location: "header", location_name: "x-amz-restore"))
1229
+ HeadObjectOutput.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location: "header", location_name: "Last-Modified"))
1230
+ HeadObjectOutput.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
1231
+ HeadObjectOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
1232
+ HeadObjectOutput.add_member(:missing_meta, Shapes::ShapeRef.new(shape: MissingMeta, location: "header", location_name: "x-amz-missing-meta"))
1233
+ HeadObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
1234
+ HeadObjectOutput.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
1235
+ HeadObjectOutput.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
1236
+ HeadObjectOutput.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
1237
+ HeadObjectOutput.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
1238
+ HeadObjectOutput.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
1239
+ HeadObjectOutput.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
1240
+ HeadObjectOutput.add_member(:expires_string, Shapes::ShapeRef.new(shape: ExpiresString, location: "header", location_name: "Expires"))
1241
+ HeadObjectOutput.add_member(:website_redirect_location, Shapes::ShapeRef.new(shape: WebsiteRedirectLocation, location: "header", location_name: "x-amz-website-redirect-location"))
1242
+ HeadObjectOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
1243
+ HeadObjectOutput.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
1244
+ HeadObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
1245
+ HeadObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
1246
+ HeadObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
1247
+ HeadObjectOutput.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
1248
+ HeadObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1249
+ HeadObjectOutput.add_member(:replication_status, Shapes::ShapeRef.new(shape: ReplicationStatus, location: "header", location_name: "x-amz-replication-status"))
1250
+ HeadObjectOutput.add_member(:parts_count, Shapes::ShapeRef.new(shape: PartsCount, location: "header", location_name: "x-amz-mp-parts-count"))
1251
+ HeadObjectOutput.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: ObjectLockMode, location: "header", location_name: "x-amz-object-lock-mode"))
1252
+ HeadObjectOutput.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: ObjectLockRetainUntilDate, location: "header", location_name: "x-amz-object-lock-retain-until-date"))
1253
+ HeadObjectOutput.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
1254
+ HeadObjectOutput.struct_class = Types::HeadObjectOutput
1255
+
1256
+ HeadObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1257
+ HeadObjectRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: IfMatch, location: "header", location_name: "If-Match"))
1258
+ HeadObjectRequest.add_member(:if_modified_since, Shapes::ShapeRef.new(shape: IfModifiedSince, location: "header", location_name: "If-Modified-Since"))
1259
+ HeadObjectRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
1260
+ HeadObjectRequest.add_member(:if_unmodified_since, Shapes::ShapeRef.new(shape: IfUnmodifiedSince, location: "header", location_name: "If-Unmodified-Since"))
1261
+ HeadObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1262
+ HeadObjectRequest.add_member(:range, Shapes::ShapeRef.new(shape: Range, location: "header", location_name: "Range"))
1263
+ HeadObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
1264
+ HeadObjectRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
1265
+ HeadObjectRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
1266
+ HeadObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
1267
+ HeadObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1268
+ HeadObjectRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location: "querystring", location_name: "partNumber"))
1269
+ HeadObjectRequest.struct_class = Types::HeadObjectRequest
1270
+
1271
+ IndexDocument.add_member(:suffix, Shapes::ShapeRef.new(shape: Suffix, required: true, location_name: "Suffix"))
1272
+ IndexDocument.struct_class = Types::IndexDocument
1273
+
1274
+ Initiator.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
1275
+ Initiator.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
1276
+ Initiator.struct_class = Types::Initiator
1277
+
1278
+ InputSerialization.add_member(:csv, Shapes::ShapeRef.new(shape: CSVInput, location_name: "CSV"))
1279
+ InputSerialization.add_member(:compression_type, Shapes::ShapeRef.new(shape: CompressionType, location_name: "CompressionType"))
1280
+ InputSerialization.add_member(:json, Shapes::ShapeRef.new(shape: JSONInput, location_name: "JSON"))
1281
+ InputSerialization.add_member(:parquet, Shapes::ShapeRef.new(shape: ParquetInput, location_name: "Parquet"))
1282
+ InputSerialization.struct_class = Types::InputSerialization
1283
+
1284
+ InventoryConfiguration.add_member(:destination, Shapes::ShapeRef.new(shape: InventoryDestination, required: true, location_name: "Destination"))
1285
+ InventoryConfiguration.add_member(:is_enabled, Shapes::ShapeRef.new(shape: IsEnabled, required: true, location_name: "IsEnabled"))
1286
+ InventoryConfiguration.add_member(:filter, Shapes::ShapeRef.new(shape: InventoryFilter, location_name: "Filter"))
1287
+ InventoryConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: InventoryId, required: true, location_name: "Id"))
1288
+ InventoryConfiguration.add_member(:included_object_versions, Shapes::ShapeRef.new(shape: InventoryIncludedObjectVersions, required: true, location_name: "IncludedObjectVersions"))
1289
+ InventoryConfiguration.add_member(:optional_fields, Shapes::ShapeRef.new(shape: InventoryOptionalFields, location_name: "OptionalFields"))
1290
+ InventoryConfiguration.add_member(:schedule, Shapes::ShapeRef.new(shape: InventorySchedule, required: true, location_name: "Schedule"))
1291
+ InventoryConfiguration.struct_class = Types::InventoryConfiguration
1292
+
1293
+ InventoryConfigurationList.member = Shapes::ShapeRef.new(shape: InventoryConfiguration)
1294
+
1295
+ InventoryDestination.add_member(:s3_bucket_destination, Shapes::ShapeRef.new(shape: InventoryS3BucketDestination, required: true, location_name: "S3BucketDestination"))
1296
+ InventoryDestination.struct_class = Types::InventoryDestination
1297
+
1298
+ InventoryEncryption.add_member(:sses3, Shapes::ShapeRef.new(shape: SSES3, location_name: "SSE-S3"))
1299
+ InventoryEncryption.add_member(:ssekms, Shapes::ShapeRef.new(shape: SSEKMS, location_name: "SSE-KMS"))
1300
+ InventoryEncryption.struct_class = Types::InventoryEncryption
1301
+
1302
+ InventoryFilter.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, required: true, location_name: "Prefix"))
1303
+ InventoryFilter.struct_class = Types::InventoryFilter
1304
+
1305
+ InventoryOptionalFields.member = Shapes::ShapeRef.new(shape: InventoryOptionalField, location_name: "Field")
1306
+
1307
+ InventoryS3BucketDestination.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "AccountId"))
1308
+ InventoryS3BucketDestination.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "Bucket"))
1309
+ InventoryS3BucketDestination.add_member(:format, Shapes::ShapeRef.new(shape: InventoryFormat, required: true, location_name: "Format"))
1310
+ InventoryS3BucketDestination.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1311
+ InventoryS3BucketDestination.add_member(:encryption, Shapes::ShapeRef.new(shape: InventoryEncryption, location_name: "Encryption"))
1312
+ InventoryS3BucketDestination.struct_class = Types::InventoryS3BucketDestination
1313
+
1314
+ InventorySchedule.add_member(:frequency, Shapes::ShapeRef.new(shape: InventoryFrequency, required: true, location_name: "Frequency"))
1315
+ InventorySchedule.struct_class = Types::InventorySchedule
1316
+
1317
+ JSONInput.add_member(:type, Shapes::ShapeRef.new(shape: JSONType, location_name: "Type"))
1318
+ JSONInput.struct_class = Types::JSONInput
1319
+
1320
+ JSONOutput.add_member(:record_delimiter, Shapes::ShapeRef.new(shape: RecordDelimiter, location_name: "RecordDelimiter"))
1321
+ JSONOutput.struct_class = Types::JSONOutput
1322
+
1323
+ LambdaFunctionConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
1324
+ LambdaFunctionConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: LambdaFunctionArn, required: true, location_name: "CloudFunction"))
1325
+ LambdaFunctionConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, required: true, location_name: "Event"))
1326
+ LambdaFunctionConfiguration.add_member(:filter, Shapes::ShapeRef.new(shape: NotificationConfigurationFilter, location_name: "Filter"))
1327
+ LambdaFunctionConfiguration.struct_class = Types::LambdaFunctionConfiguration
1328
+
1329
+ LambdaFunctionConfigurationList.member = Shapes::ShapeRef.new(shape: LambdaFunctionConfiguration)
1330
+
1331
+ LifecycleConfiguration.add_member(:rules, Shapes::ShapeRef.new(shape: Rules, required: true, location_name: "Rule"))
1332
+ LifecycleConfiguration.struct_class = Types::LifecycleConfiguration
1333
+
1334
+ LifecycleExpiration.add_member(:date, Shapes::ShapeRef.new(shape: Date, location_name: "Date"))
1335
+ LifecycleExpiration.add_member(:days, Shapes::ShapeRef.new(shape: Days, location_name: "Days"))
1336
+ LifecycleExpiration.add_member(:expired_object_delete_marker, Shapes::ShapeRef.new(shape: ExpiredObjectDeleteMarker, location_name: "ExpiredObjectDeleteMarker"))
1337
+ LifecycleExpiration.struct_class = Types::LifecycleExpiration
1338
+
1339
+ LifecycleRule.add_member(:expiration, Shapes::ShapeRef.new(shape: LifecycleExpiration, location_name: "Expiration"))
1340
+ LifecycleRule.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
1341
+ LifecycleRule.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, deprecated: true, location_name: "Prefix"))
1342
+ LifecycleRule.add_member(:filter, Shapes::ShapeRef.new(shape: LifecycleRuleFilter, location_name: "Filter"))
1343
+ LifecycleRule.add_member(:status, Shapes::ShapeRef.new(shape: ExpirationStatus, required: true, location_name: "Status"))
1344
+ LifecycleRule.add_member(:transitions, Shapes::ShapeRef.new(shape: TransitionList, location_name: "Transition"))
1345
+ LifecycleRule.add_member(:noncurrent_version_transitions, Shapes::ShapeRef.new(shape: NoncurrentVersionTransitionList, location_name: "NoncurrentVersionTransition"))
1346
+ LifecycleRule.add_member(:noncurrent_version_expiration, Shapes::ShapeRef.new(shape: NoncurrentVersionExpiration, location_name: "NoncurrentVersionExpiration"))
1347
+ LifecycleRule.add_member(:abort_incomplete_multipart_upload, Shapes::ShapeRef.new(shape: AbortIncompleteMultipartUpload, location_name: "AbortIncompleteMultipartUpload"))
1348
+ LifecycleRule.struct_class = Types::LifecycleRule
1349
+
1350
+ LifecycleRuleAndOperator.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1351
+ LifecycleRuleAndOperator.add_member(:tags, Shapes::ShapeRef.new(shape: TagSet, location_name: "Tag", metadata: {"flattened"=>true}))
1352
+ LifecycleRuleAndOperator.struct_class = Types::LifecycleRuleAndOperator
1353
+
1354
+ LifecycleRuleFilter.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1355
+ LifecycleRuleFilter.add_member(:tag, Shapes::ShapeRef.new(shape: Tag, location_name: "Tag"))
1356
+ LifecycleRuleFilter.add_member(:and, Shapes::ShapeRef.new(shape: LifecycleRuleAndOperator, location_name: "And"))
1357
+ LifecycleRuleFilter.struct_class = Types::LifecycleRuleFilter
1358
+
1359
+ LifecycleRules.member = Shapes::ShapeRef.new(shape: LifecycleRule)
1360
+
1361
+ ListBucketAnalyticsConfigurationsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
1362
+ ListBucketAnalyticsConfigurationsOutput.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location_name: "ContinuationToken"))
1363
+ ListBucketAnalyticsConfigurationsOutput.add_member(:next_continuation_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextContinuationToken"))
1364
+ ListBucketAnalyticsConfigurationsOutput.add_member(:analytics_configuration_list, Shapes::ShapeRef.new(shape: AnalyticsConfigurationList, location_name: "AnalyticsConfiguration"))
1365
+ ListBucketAnalyticsConfigurationsOutput.struct_class = Types::ListBucketAnalyticsConfigurationsOutput
1366
+
1367
+ ListBucketAnalyticsConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1368
+ ListBucketAnalyticsConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
1369
+ ListBucketAnalyticsConfigurationsRequest.struct_class = Types::ListBucketAnalyticsConfigurationsRequest
1370
+
1371
+ ListBucketInventoryConfigurationsOutput.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location_name: "ContinuationToken"))
1372
+ ListBucketInventoryConfigurationsOutput.add_member(:inventory_configuration_list, Shapes::ShapeRef.new(shape: InventoryConfigurationList, location_name: "InventoryConfiguration"))
1373
+ ListBucketInventoryConfigurationsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
1374
+ ListBucketInventoryConfigurationsOutput.add_member(:next_continuation_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextContinuationToken"))
1375
+ ListBucketInventoryConfigurationsOutput.struct_class = Types::ListBucketInventoryConfigurationsOutput
1376
+
1377
+ ListBucketInventoryConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1378
+ ListBucketInventoryConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
1379
+ ListBucketInventoryConfigurationsRequest.struct_class = Types::ListBucketInventoryConfigurationsRequest
1380
+
1381
+ ListBucketMetricsConfigurationsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
1382
+ ListBucketMetricsConfigurationsOutput.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location_name: "ContinuationToken"))
1383
+ ListBucketMetricsConfigurationsOutput.add_member(:next_continuation_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextContinuationToken"))
1384
+ ListBucketMetricsConfigurationsOutput.add_member(:metrics_configuration_list, Shapes::ShapeRef.new(shape: MetricsConfigurationList, location_name: "MetricsConfiguration"))
1385
+ ListBucketMetricsConfigurationsOutput.struct_class = Types::ListBucketMetricsConfigurationsOutput
1386
+
1387
+ ListBucketMetricsConfigurationsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1388
+ ListBucketMetricsConfigurationsRequest.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
1389
+ ListBucketMetricsConfigurationsRequest.struct_class = Types::ListBucketMetricsConfigurationsRequest
1390
+
1391
+ ListBucketsOutput.add_member(:buckets, Shapes::ShapeRef.new(shape: Buckets, location_name: "Buckets"))
1392
+ ListBucketsOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
1393
+ ListBucketsOutput.struct_class = Types::ListBucketsOutput
1394
+
1395
+ ListMultipartUploadsOutput.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
1396
+ ListMultipartUploadsOutput.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location_name: "KeyMarker"))
1397
+ ListMultipartUploadsOutput.add_member(:upload_id_marker, Shapes::ShapeRef.new(shape: UploadIdMarker, location_name: "UploadIdMarker"))
1398
+ ListMultipartUploadsOutput.add_member(:next_key_marker, Shapes::ShapeRef.new(shape: NextKeyMarker, location_name: "NextKeyMarker"))
1399
+ ListMultipartUploadsOutput.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1400
+ ListMultipartUploadsOutput.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location_name: "Delimiter"))
1401
+ ListMultipartUploadsOutput.add_member(:next_upload_id_marker, Shapes::ShapeRef.new(shape: NextUploadIdMarker, location_name: "NextUploadIdMarker"))
1402
+ ListMultipartUploadsOutput.add_member(:max_uploads, Shapes::ShapeRef.new(shape: MaxUploads, location_name: "MaxUploads"))
1403
+ ListMultipartUploadsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
1404
+ ListMultipartUploadsOutput.add_member(:uploads, Shapes::ShapeRef.new(shape: MultipartUploadList, location_name: "Upload"))
1405
+ ListMultipartUploadsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
1406
+ ListMultipartUploadsOutput.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location_name: "EncodingType"))
1407
+ ListMultipartUploadsOutput.struct_class = Types::ListMultipartUploadsOutput
1408
+
1409
+ ListMultipartUploadsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1410
+ ListMultipartUploadsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
1411
+ ListMultipartUploadsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
1412
+ ListMultipartUploadsRequest.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location: "querystring", location_name: "key-marker"))
1413
+ ListMultipartUploadsRequest.add_member(:max_uploads, Shapes::ShapeRef.new(shape: MaxUploads, location: "querystring", location_name: "max-uploads"))
1414
+ ListMultipartUploadsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
1415
+ ListMultipartUploadsRequest.add_member(:upload_id_marker, Shapes::ShapeRef.new(shape: UploadIdMarker, location: "querystring", location_name: "upload-id-marker"))
1416
+ ListMultipartUploadsRequest.struct_class = Types::ListMultipartUploadsRequest
1417
+
1418
+ ListObjectVersionsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
1419
+ ListObjectVersionsOutput.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location_name: "KeyMarker"))
1420
+ ListObjectVersionsOutput.add_member(:version_id_marker, Shapes::ShapeRef.new(shape: VersionIdMarker, location_name: "VersionIdMarker"))
1421
+ ListObjectVersionsOutput.add_member(:next_key_marker, Shapes::ShapeRef.new(shape: NextKeyMarker, location_name: "NextKeyMarker"))
1422
+ ListObjectVersionsOutput.add_member(:next_version_id_marker, Shapes::ShapeRef.new(shape: NextVersionIdMarker, location_name: "NextVersionIdMarker"))
1423
+ ListObjectVersionsOutput.add_member(:versions, Shapes::ShapeRef.new(shape: ObjectVersionList, location_name: "Version"))
1424
+ ListObjectVersionsOutput.add_member(:delete_markers, Shapes::ShapeRef.new(shape: DeleteMarkers, location_name: "DeleteMarker"))
1425
+ ListObjectVersionsOutput.add_member(:name, Shapes::ShapeRef.new(shape: BucketName, location_name: "Name"))
1426
+ ListObjectVersionsOutput.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1427
+ ListObjectVersionsOutput.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location_name: "Delimiter"))
1428
+ ListObjectVersionsOutput.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location_name: "MaxKeys"))
1429
+ ListObjectVersionsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
1430
+ ListObjectVersionsOutput.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location_name: "EncodingType"))
1431
+ ListObjectVersionsOutput.struct_class = Types::ListObjectVersionsOutput
1432
+
1433
+ ListObjectVersionsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1434
+ ListObjectVersionsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
1435
+ ListObjectVersionsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
1436
+ ListObjectVersionsRequest.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location: "querystring", location_name: "key-marker"))
1437
+ ListObjectVersionsRequest.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
1438
+ ListObjectVersionsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
1439
+ ListObjectVersionsRequest.add_member(:version_id_marker, Shapes::ShapeRef.new(shape: VersionIdMarker, location: "querystring", location_name: "version-id-marker"))
1440
+ ListObjectVersionsRequest.struct_class = Types::ListObjectVersionsRequest
1441
+
1442
+ ListObjectsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
1443
+ ListObjectsOutput.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location_name: "Marker"))
1444
+ ListObjectsOutput.add_member(:next_marker, Shapes::ShapeRef.new(shape: NextMarker, location_name: "NextMarker"))
1445
+ ListObjectsOutput.add_member(:contents, Shapes::ShapeRef.new(shape: ObjectList, location_name: "Contents"))
1446
+ ListObjectsOutput.add_member(:name, Shapes::ShapeRef.new(shape: BucketName, location_name: "Name"))
1447
+ ListObjectsOutput.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1448
+ ListObjectsOutput.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location_name: "Delimiter"))
1449
+ ListObjectsOutput.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location_name: "MaxKeys"))
1450
+ ListObjectsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
1451
+ ListObjectsOutput.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location_name: "EncodingType"))
1452
+ ListObjectsOutput.struct_class = Types::ListObjectsOutput
1453
+
1454
+ ListObjectsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1455
+ ListObjectsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
1456
+ ListObjectsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
1457
+ ListObjectsRequest.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location: "querystring", location_name: "marker"))
1458
+ ListObjectsRequest.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
1459
+ ListObjectsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
1460
+ ListObjectsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1461
+ ListObjectsRequest.struct_class = Types::ListObjectsRequest
1462
+
1463
+ ListObjectsV2Output.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
1464
+ ListObjectsV2Output.add_member(:contents, Shapes::ShapeRef.new(shape: ObjectList, location_name: "Contents"))
1465
+ ListObjectsV2Output.add_member(:name, Shapes::ShapeRef.new(shape: BucketName, location_name: "Name"))
1466
+ ListObjectsV2Output.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1467
+ ListObjectsV2Output.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location_name: "Delimiter"))
1468
+ ListObjectsV2Output.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location_name: "MaxKeys"))
1469
+ ListObjectsV2Output.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
1470
+ ListObjectsV2Output.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location_name: "EncodingType"))
1471
+ ListObjectsV2Output.add_member(:key_count, Shapes::ShapeRef.new(shape: KeyCount, location_name: "KeyCount"))
1472
+ ListObjectsV2Output.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location_name: "ContinuationToken"))
1473
+ ListObjectsV2Output.add_member(:next_continuation_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextContinuationToken"))
1474
+ ListObjectsV2Output.add_member(:start_after, Shapes::ShapeRef.new(shape: StartAfter, location_name: "StartAfter"))
1475
+ ListObjectsV2Output.struct_class = Types::ListObjectsV2Output
1476
+
1477
+ ListObjectsV2Request.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1478
+ ListObjectsV2Request.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
1479
+ ListObjectsV2Request.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
1480
+ ListObjectsV2Request.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
1481
+ ListObjectsV2Request.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
1482
+ ListObjectsV2Request.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
1483
+ ListObjectsV2Request.add_member(:fetch_owner, Shapes::ShapeRef.new(shape: FetchOwner, location: "querystring", location_name: "fetch-owner"))
1484
+ ListObjectsV2Request.add_member(:start_after, Shapes::ShapeRef.new(shape: StartAfter, location: "querystring", location_name: "start-after"))
1485
+ ListObjectsV2Request.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1486
+ ListObjectsV2Request.struct_class = Types::ListObjectsV2Request
1487
+
1488
+ ListPartsOutput.add_member(:abort_date, Shapes::ShapeRef.new(shape: AbortDate, location: "header", location_name: "x-amz-abort-date"))
1489
+ ListPartsOutput.add_member(:abort_rule_id, Shapes::ShapeRef.new(shape: AbortRuleId, location: "header", location_name: "x-amz-abort-rule-id"))
1490
+ ListPartsOutput.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
1491
+ ListPartsOutput.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
1492
+ ListPartsOutput.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, location_name: "UploadId"))
1493
+ ListPartsOutput.add_member(:part_number_marker, Shapes::ShapeRef.new(shape: PartNumberMarker, location_name: "PartNumberMarker"))
1494
+ ListPartsOutput.add_member(:next_part_number_marker, Shapes::ShapeRef.new(shape: NextPartNumberMarker, location_name: "NextPartNumberMarker"))
1495
+ ListPartsOutput.add_member(:max_parts, Shapes::ShapeRef.new(shape: MaxParts, location_name: "MaxParts"))
1496
+ ListPartsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
1497
+ ListPartsOutput.add_member(:parts, Shapes::ShapeRef.new(shape: Parts, location_name: "Part"))
1498
+ ListPartsOutput.add_member(:initiator, Shapes::ShapeRef.new(shape: Initiator, location_name: "Initiator"))
1499
+ ListPartsOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
1500
+ ListPartsOutput.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
1501
+ ListPartsOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1502
+ ListPartsOutput.struct_class = Types::ListPartsOutput
1503
+
1504
+ ListPartsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1505
+ ListPartsRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1506
+ ListPartsRequest.add_member(:max_parts, Shapes::ShapeRef.new(shape: MaxParts, location: "querystring", location_name: "max-parts"))
1507
+ ListPartsRequest.add_member(:part_number_marker, Shapes::ShapeRef.new(shape: PartNumberMarker, location: "querystring", location_name: "part-number-marker"))
1508
+ ListPartsRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
1509
+ ListPartsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1510
+ ListPartsRequest.struct_class = Types::ListPartsRequest
1511
+
1512
+ LoggingEnabled.add_member(:target_bucket, Shapes::ShapeRef.new(shape: TargetBucket, required: true, location_name: "TargetBucket"))
1513
+ LoggingEnabled.add_member(:target_grants, Shapes::ShapeRef.new(shape: TargetGrants, location_name: "TargetGrants"))
1514
+ LoggingEnabled.add_member(:target_prefix, Shapes::ShapeRef.new(shape: TargetPrefix, required: true, location_name: "TargetPrefix"))
1515
+ LoggingEnabled.struct_class = Types::LoggingEnabled
1516
+
1517
+ Metadata.key = Shapes::ShapeRef.new(shape: MetadataKey)
1518
+ Metadata.value = Shapes::ShapeRef.new(shape: MetadataValue)
1519
+
1520
+ MetadataEntry.add_member(:name, Shapes::ShapeRef.new(shape: MetadataKey, location_name: "Name"))
1521
+ MetadataEntry.add_member(:value, Shapes::ShapeRef.new(shape: MetadataValue, location_name: "Value"))
1522
+ MetadataEntry.struct_class = Types::MetadataEntry
1523
+
1524
+ Metrics.add_member(:status, Shapes::ShapeRef.new(shape: MetricsStatus, required: true, location_name: "Status"))
1525
+ Metrics.add_member(:event_threshold, Shapes::ShapeRef.new(shape: ReplicationTimeValue, required: true, location_name: "EventThreshold"))
1526
+ Metrics.struct_class = Types::Metrics
1527
+
1528
+ MetricsAndOperator.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1529
+ MetricsAndOperator.add_member(:tags, Shapes::ShapeRef.new(shape: TagSet, location_name: "Tag", metadata: {"flattened"=>true}))
1530
+ MetricsAndOperator.struct_class = Types::MetricsAndOperator
1531
+
1532
+ MetricsConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location_name: "Id"))
1533
+ MetricsConfiguration.add_member(:filter, Shapes::ShapeRef.new(shape: MetricsFilter, location_name: "Filter"))
1534
+ MetricsConfiguration.struct_class = Types::MetricsConfiguration
1535
+
1536
+ MetricsConfigurationList.member = Shapes::ShapeRef.new(shape: MetricsConfiguration)
1537
+
1538
+ MetricsFilter.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1539
+ MetricsFilter.add_member(:tag, Shapes::ShapeRef.new(shape: Tag, location_name: "Tag"))
1540
+ MetricsFilter.add_member(:and, Shapes::ShapeRef.new(shape: MetricsAndOperator, location_name: "And"))
1541
+ MetricsFilter.struct_class = Types::MetricsFilter
1542
+
1543
+ MultipartUpload.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, location_name: "UploadId"))
1544
+ MultipartUpload.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
1545
+ MultipartUpload.add_member(:initiated, Shapes::ShapeRef.new(shape: Initiated, location_name: "Initiated"))
1546
+ MultipartUpload.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
1547
+ MultipartUpload.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
1548
+ MultipartUpload.add_member(:initiator, Shapes::ShapeRef.new(shape: Initiator, location_name: "Initiator"))
1549
+ MultipartUpload.struct_class = Types::MultipartUpload
1550
+
1551
+ MultipartUploadList.member = Shapes::ShapeRef.new(shape: MultipartUpload)
1552
+
1553
+ NoSuchBucket.struct_class = Types::NoSuchBucket
1554
+
1555
+ NoSuchKey.struct_class = Types::NoSuchKey
1556
+
1557
+ NoSuchUpload.struct_class = Types::NoSuchUpload
1558
+
1559
+ NoncurrentVersionExpiration.add_member(:noncurrent_days, Shapes::ShapeRef.new(shape: Days, location_name: "NoncurrentDays"))
1560
+ NoncurrentVersionExpiration.struct_class = Types::NoncurrentVersionExpiration
1561
+
1562
+ NoncurrentVersionTransition.add_member(:noncurrent_days, Shapes::ShapeRef.new(shape: Days, location_name: "NoncurrentDays"))
1563
+ NoncurrentVersionTransition.add_member(:storage_class, Shapes::ShapeRef.new(shape: TransitionStorageClass, location_name: "StorageClass"))
1564
+ NoncurrentVersionTransition.struct_class = Types::NoncurrentVersionTransition
1565
+
1566
+ NoncurrentVersionTransitionList.member = Shapes::ShapeRef.new(shape: NoncurrentVersionTransition)
1567
+
1568
+ NotificationConfiguration.add_member(:topic_configurations, Shapes::ShapeRef.new(shape: TopicConfigurationList, location_name: "TopicConfiguration"))
1569
+ NotificationConfiguration.add_member(:queue_configurations, Shapes::ShapeRef.new(shape: QueueConfigurationList, location_name: "QueueConfiguration"))
1570
+ NotificationConfiguration.add_member(:lambda_function_configurations, Shapes::ShapeRef.new(shape: LambdaFunctionConfigurationList, location_name: "CloudFunctionConfiguration"))
1571
+ NotificationConfiguration.struct_class = Types::NotificationConfiguration
1572
+
1573
+ NotificationConfigurationDeprecated.add_member(:topic_configuration, Shapes::ShapeRef.new(shape: TopicConfigurationDeprecated, location_name: "TopicConfiguration"))
1574
+ NotificationConfigurationDeprecated.add_member(:queue_configuration, Shapes::ShapeRef.new(shape: QueueConfigurationDeprecated, location_name: "QueueConfiguration"))
1575
+ NotificationConfigurationDeprecated.add_member(:cloud_function_configuration, Shapes::ShapeRef.new(shape: CloudFunctionConfiguration, location_name: "CloudFunctionConfiguration"))
1576
+ NotificationConfigurationDeprecated.struct_class = Types::NotificationConfigurationDeprecated
1577
+
1578
+ NotificationConfigurationFilter.add_member(:key, Shapes::ShapeRef.new(shape: S3KeyFilter, location_name: "S3Key"))
1579
+ NotificationConfigurationFilter.struct_class = Types::NotificationConfigurationFilter
1580
+
1581
+ Object.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
1582
+ Object.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
1583
+ Object.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
1584
+ Object.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
1585
+ Object.add_member(:storage_class, Shapes::ShapeRef.new(shape: ObjectStorageClass, location_name: "StorageClass"))
1586
+ Object.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
1587
+ Object.struct_class = Types::Object
1588
+
1589
+ ObjectAlreadyInActiveTierError.struct_class = Types::ObjectAlreadyInActiveTierError
1590
+
1591
+ ObjectIdentifier.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location_name: "Key"))
1592
+ ObjectIdentifier.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
1593
+ ObjectIdentifier.struct_class = Types::ObjectIdentifier
1594
+
1595
+ ObjectIdentifierList.member = Shapes::ShapeRef.new(shape: ObjectIdentifier)
1596
+
1597
+ ObjectList.member = Shapes::ShapeRef.new(shape: Object)
1598
+
1599
+ ObjectLockConfiguration.add_member(:object_lock_enabled, Shapes::ShapeRef.new(shape: ObjectLockEnabled, location_name: "ObjectLockEnabled"))
1600
+ ObjectLockConfiguration.add_member(:rule, Shapes::ShapeRef.new(shape: ObjectLockRule, location_name: "Rule"))
1601
+ ObjectLockConfiguration.struct_class = Types::ObjectLockConfiguration
1602
+
1603
+ ObjectLockLegalHold.add_member(:status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location_name: "Status"))
1604
+ ObjectLockLegalHold.struct_class = Types::ObjectLockLegalHold
1605
+
1606
+ ObjectLockRetention.add_member(:mode, Shapes::ShapeRef.new(shape: ObjectLockRetentionMode, location_name: "Mode"))
1607
+ ObjectLockRetention.add_member(:retain_until_date, Shapes::ShapeRef.new(shape: Date, location_name: "RetainUntilDate"))
1608
+ ObjectLockRetention.struct_class = Types::ObjectLockRetention
1609
+
1610
+ ObjectLockRule.add_member(:default_retention, Shapes::ShapeRef.new(shape: DefaultRetention, location_name: "DefaultRetention"))
1611
+ ObjectLockRule.struct_class = Types::ObjectLockRule
1612
+
1613
+ ObjectNotInActiveTierError.struct_class = Types::ObjectNotInActiveTierError
1614
+
1615
+ ObjectVersion.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
1616
+ ObjectVersion.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
1617
+ ObjectVersion.add_member(:storage_class, Shapes::ShapeRef.new(shape: ObjectVersionStorageClass, location_name: "StorageClass"))
1618
+ ObjectVersion.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
1619
+ ObjectVersion.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
1620
+ ObjectVersion.add_member(:is_latest, Shapes::ShapeRef.new(shape: IsLatest, location_name: "IsLatest"))
1621
+ ObjectVersion.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
1622
+ ObjectVersion.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
1623
+ ObjectVersion.struct_class = Types::ObjectVersion
1624
+
1625
+ ObjectVersionList.member = Shapes::ShapeRef.new(shape: ObjectVersion)
1626
+
1627
+ OutputLocation.add_member(:s3, Shapes::ShapeRef.new(shape: S3Location, location_name: "S3"))
1628
+ OutputLocation.struct_class = Types::OutputLocation
1629
+
1630
+ OutputSerialization.add_member(:csv, Shapes::ShapeRef.new(shape: CSVOutput, location_name: "CSV"))
1631
+ OutputSerialization.add_member(:json, Shapes::ShapeRef.new(shape: JSONOutput, location_name: "JSON"))
1632
+ OutputSerialization.struct_class = Types::OutputSerialization
1633
+
1634
+ Owner.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
1635
+ Owner.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
1636
+ Owner.struct_class = Types::Owner
1637
+
1638
+ ParquetInput.struct_class = Types::ParquetInput
1639
+
1640
+ Part.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location_name: "PartNumber"))
1641
+ Part.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
1642
+ Part.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
1643
+ Part.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
1644
+ Part.struct_class = Types::Part
1645
+
1646
+ Parts.member = Shapes::ShapeRef.new(shape: Part)
1647
+
1648
+ PolicyStatus.add_member(:is_public, Shapes::ShapeRef.new(shape: IsPublic, location_name: "IsPublic"))
1649
+ PolicyStatus.struct_class = Types::PolicyStatus
1650
+
1651
+ Progress.add_member(:bytes_scanned, Shapes::ShapeRef.new(shape: BytesScanned, location_name: "BytesScanned"))
1652
+ Progress.add_member(:bytes_processed, Shapes::ShapeRef.new(shape: BytesProcessed, location_name: "BytesProcessed"))
1653
+ Progress.add_member(:bytes_returned, Shapes::ShapeRef.new(shape: BytesReturned, location_name: "BytesReturned"))
1654
+ Progress.struct_class = Types::Progress
1655
+
1656
+ ProgressEvent.add_member(:details, Shapes::ShapeRef.new(shape: Progress, eventpayload: true, eventpayload_type: 'structure', location_name: "Details", metadata: {"eventpayload"=>true}))
1657
+ ProgressEvent.struct_class = Types::ProgressEvent
1658
+
1659
+ PublicAccessBlockConfiguration.add_member(:block_public_acls, Shapes::ShapeRef.new(shape: Setting, location_name: "BlockPublicAcls"))
1660
+ PublicAccessBlockConfiguration.add_member(:ignore_public_acls, Shapes::ShapeRef.new(shape: Setting, location_name: "IgnorePublicAcls"))
1661
+ PublicAccessBlockConfiguration.add_member(:block_public_policy, Shapes::ShapeRef.new(shape: Setting, location_name: "BlockPublicPolicy"))
1662
+ PublicAccessBlockConfiguration.add_member(:restrict_public_buckets, Shapes::ShapeRef.new(shape: Setting, location_name: "RestrictPublicBuckets"))
1663
+ PublicAccessBlockConfiguration.struct_class = Types::PublicAccessBlockConfiguration
1664
+
1665
+ PutBucketAccelerateConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1666
+ 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/"}}))
1667
+ PutBucketAccelerateConfigurationRequest.struct_class = Types::PutBucketAccelerateConfigurationRequest
1668
+ PutBucketAccelerateConfigurationRequest[:payload] = :accelerate_configuration
1669
+ PutBucketAccelerateConfigurationRequest[:payload_member] = PutBucketAccelerateConfigurationRequest.member(:accelerate_configuration)
1670
+
1671
+ PutBucketAclRequest.add_member(:acl, Shapes::ShapeRef.new(shape: BucketCannedACL, location: "header", location_name: "x-amz-acl"))
1672
+ 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/"}}))
1673
+ PutBucketAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1674
+ PutBucketAclRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1675
+ PutBucketAclRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
1676
+ PutBucketAclRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
1677
+ PutBucketAclRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
1678
+ PutBucketAclRequest.add_member(:grant_write, Shapes::ShapeRef.new(shape: GrantWrite, location: "header", location_name: "x-amz-grant-write"))
1679
+ PutBucketAclRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
1680
+ PutBucketAclRequest.struct_class = Types::PutBucketAclRequest
1681
+ PutBucketAclRequest[:payload] = :access_control_policy
1682
+ PutBucketAclRequest[:payload_member] = PutBucketAclRequest.member(:access_control_policy)
1683
+
1684
+ PutBucketAnalyticsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1685
+ PutBucketAnalyticsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: AnalyticsId, required: true, location: "querystring", location_name: "id"))
1686
+ 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/"}}))
1687
+ PutBucketAnalyticsConfigurationRequest.struct_class = Types::PutBucketAnalyticsConfigurationRequest
1688
+ PutBucketAnalyticsConfigurationRequest[:payload] = :analytics_configuration
1689
+ PutBucketAnalyticsConfigurationRequest[:payload_member] = PutBucketAnalyticsConfigurationRequest.member(:analytics_configuration)
1690
+
1691
+ PutBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1692
+ 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/"}}))
1693
+ PutBucketCorsRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1694
+ PutBucketCorsRequest.struct_class = Types::PutBucketCorsRequest
1695
+ PutBucketCorsRequest[:payload] = :cors_configuration
1696
+ PutBucketCorsRequest[:payload_member] = PutBucketCorsRequest.member(:cors_configuration)
1697
+
1698
+ PutBucketEncryptionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1699
+ PutBucketEncryptionRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1700
+ 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/"}}))
1701
+ PutBucketEncryptionRequest.struct_class = Types::PutBucketEncryptionRequest
1702
+ PutBucketEncryptionRequest[:payload] = :server_side_encryption_configuration
1703
+ PutBucketEncryptionRequest[:payload_member] = PutBucketEncryptionRequest.member(:server_side_encryption_configuration)
1704
+
1705
+ PutBucketInventoryConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1706
+ PutBucketInventoryConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: InventoryId, required: true, location: "querystring", location_name: "id"))
1707
+ 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/"}}))
1708
+ PutBucketInventoryConfigurationRequest.struct_class = Types::PutBucketInventoryConfigurationRequest
1709
+ PutBucketInventoryConfigurationRequest[:payload] = :inventory_configuration
1710
+ PutBucketInventoryConfigurationRequest[:payload_member] = PutBucketInventoryConfigurationRequest.member(:inventory_configuration)
1711
+
1712
+ PutBucketLifecycleConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1713
+ PutBucketLifecycleConfigurationRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: BucketLifecycleConfiguration, location_name: "LifecycleConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
1714
+ PutBucketLifecycleConfigurationRequest.struct_class = Types::PutBucketLifecycleConfigurationRequest
1715
+ PutBucketLifecycleConfigurationRequest[:payload] = :lifecycle_configuration
1716
+ PutBucketLifecycleConfigurationRequest[:payload_member] = PutBucketLifecycleConfigurationRequest.member(:lifecycle_configuration)
1717
+
1718
+ PutBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1719
+ PutBucketLifecycleRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1720
+ PutBucketLifecycleRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: LifecycleConfiguration, location_name: "LifecycleConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
1721
+ PutBucketLifecycleRequest.struct_class = Types::PutBucketLifecycleRequest
1722
+ PutBucketLifecycleRequest[:payload] = :lifecycle_configuration
1723
+ PutBucketLifecycleRequest[:payload_member] = PutBucketLifecycleRequest.member(:lifecycle_configuration)
1724
+
1725
+ PutBucketLoggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1726
+ 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/"}}))
1727
+ PutBucketLoggingRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1728
+ PutBucketLoggingRequest.struct_class = Types::PutBucketLoggingRequest
1729
+ PutBucketLoggingRequest[:payload] = :bucket_logging_status
1730
+ PutBucketLoggingRequest[:payload_member] = PutBucketLoggingRequest.member(:bucket_logging_status)
1731
+
1732
+ PutBucketMetricsConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1733
+ PutBucketMetricsConfigurationRequest.add_member(:id, Shapes::ShapeRef.new(shape: MetricsId, required: true, location: "querystring", location_name: "id"))
1734
+ 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/"}}))
1735
+ PutBucketMetricsConfigurationRequest.struct_class = Types::PutBucketMetricsConfigurationRequest
1736
+ PutBucketMetricsConfigurationRequest[:payload] = :metrics_configuration
1737
+ PutBucketMetricsConfigurationRequest[:payload_member] = PutBucketMetricsConfigurationRequest.member(:metrics_configuration)
1738
+
1739
+ PutBucketNotificationConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1740
+ 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/"}}))
1741
+ PutBucketNotificationConfigurationRequest.struct_class = Types::PutBucketNotificationConfigurationRequest
1742
+ PutBucketNotificationConfigurationRequest[:payload] = :notification_configuration
1743
+ PutBucketNotificationConfigurationRequest[:payload_member] = PutBucketNotificationConfigurationRequest.member(:notification_configuration)
1744
+
1745
+ PutBucketNotificationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1746
+ PutBucketNotificationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1747
+ 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/"}}))
1748
+ PutBucketNotificationRequest.struct_class = Types::PutBucketNotificationRequest
1749
+ PutBucketNotificationRequest[:payload] = :notification_configuration
1750
+ PutBucketNotificationRequest[:payload_member] = PutBucketNotificationRequest.member(:notification_configuration)
1751
+
1752
+ PutBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1753
+ PutBucketPolicyRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1754
+ PutBucketPolicyRequest.add_member(:confirm_remove_self_bucket_access, Shapes::ShapeRef.new(shape: ConfirmRemoveSelfBucketAccess, location: "header", location_name: "x-amz-confirm-remove-self-bucket-access"))
1755
+ PutBucketPolicyRequest.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, required: true, location_name: "Policy"))
1756
+ PutBucketPolicyRequest.struct_class = Types::PutBucketPolicyRequest
1757
+ PutBucketPolicyRequest[:payload] = :policy
1758
+ PutBucketPolicyRequest[:payload_member] = PutBucketPolicyRequest.member(:policy)
1759
+
1760
+ PutBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1761
+ PutBucketReplicationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1762
+ 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/"}}))
1763
+ PutBucketReplicationRequest.add_member(:token, Shapes::ShapeRef.new(shape: ObjectLockToken, location: "header", location_name: "x-amz-bucket-object-lock-token"))
1764
+ PutBucketReplicationRequest.struct_class = Types::PutBucketReplicationRequest
1765
+ PutBucketReplicationRequest[:payload] = :replication_configuration
1766
+ PutBucketReplicationRequest[:payload_member] = PutBucketReplicationRequest.member(:replication_configuration)
1767
+
1768
+ PutBucketRequestPaymentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1769
+ PutBucketRequestPaymentRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1770
+ 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/"}}))
1771
+ PutBucketRequestPaymentRequest.struct_class = Types::PutBucketRequestPaymentRequest
1772
+ PutBucketRequestPaymentRequest[:payload] = :request_payment_configuration
1773
+ PutBucketRequestPaymentRequest[:payload_member] = PutBucketRequestPaymentRequest.member(:request_payment_configuration)
1774
+
1775
+ PutBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1776
+ PutBucketTaggingRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1777
+ 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/"}}))
1778
+ PutBucketTaggingRequest.struct_class = Types::PutBucketTaggingRequest
1779
+ PutBucketTaggingRequest[:payload] = :tagging
1780
+ PutBucketTaggingRequest[:payload_member] = PutBucketTaggingRequest.member(:tagging)
1781
+
1782
+ PutBucketVersioningRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1783
+ PutBucketVersioningRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1784
+ PutBucketVersioningRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
1785
+ 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/"}}))
1786
+ PutBucketVersioningRequest.struct_class = Types::PutBucketVersioningRequest
1787
+ PutBucketVersioningRequest[:payload] = :versioning_configuration
1788
+ PutBucketVersioningRequest[:payload_member] = PutBucketVersioningRequest.member(:versioning_configuration)
1789
+
1790
+ PutBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1791
+ PutBucketWebsiteRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1792
+ 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/"}}))
1793
+ PutBucketWebsiteRequest.struct_class = Types::PutBucketWebsiteRequest
1794
+ PutBucketWebsiteRequest[:payload] = :website_configuration
1795
+ PutBucketWebsiteRequest[:payload_member] = PutBucketWebsiteRequest.member(:website_configuration)
1796
+
1797
+ PutObjectAclOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1798
+ PutObjectAclOutput.struct_class = Types::PutObjectAclOutput
1799
+
1800
+ PutObjectAclRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
1801
+ 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/"}}))
1802
+ PutObjectAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1803
+ PutObjectAclRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1804
+ PutObjectAclRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
1805
+ PutObjectAclRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
1806
+ PutObjectAclRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
1807
+ PutObjectAclRequest.add_member(:grant_write, Shapes::ShapeRef.new(shape: GrantWrite, location: "header", location_name: "x-amz-grant-write"))
1808
+ PutObjectAclRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
1809
+ PutObjectAclRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1810
+ PutObjectAclRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1811
+ PutObjectAclRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
1812
+ PutObjectAclRequest.struct_class = Types::PutObjectAclRequest
1813
+ PutObjectAclRequest[:payload] = :access_control_policy
1814
+ PutObjectAclRequest[:payload_member] = PutObjectAclRequest.member(:access_control_policy)
1815
+
1816
+ PutObjectLegalHoldOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1817
+ PutObjectLegalHoldOutput.struct_class = Types::PutObjectLegalHoldOutput
1818
+
1819
+ PutObjectLegalHoldRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1820
+ PutObjectLegalHoldRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1821
+ PutObjectLegalHoldRequest.add_member(:legal_hold, Shapes::ShapeRef.new(shape: ObjectLockLegalHold, location_name: "LegalHold", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
1822
+ PutObjectLegalHoldRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1823
+ PutObjectLegalHoldRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
1824
+ PutObjectLegalHoldRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1825
+ PutObjectLegalHoldRequest.struct_class = Types::PutObjectLegalHoldRequest
1826
+ PutObjectLegalHoldRequest[:payload] = :legal_hold
1827
+ PutObjectLegalHoldRequest[:payload_member] = PutObjectLegalHoldRequest.member(:legal_hold)
1828
+
1829
+ PutObjectLockConfigurationOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1830
+ PutObjectLockConfigurationOutput.struct_class = Types::PutObjectLockConfigurationOutput
1831
+
1832
+ PutObjectLockConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1833
+ 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/"}}))
1834
+ PutObjectLockConfigurationRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1835
+ PutObjectLockConfigurationRequest.add_member(:token, Shapes::ShapeRef.new(shape: ObjectLockToken, location: "header", location_name: "x-amz-bucket-object-lock-token"))
1836
+ PutObjectLockConfigurationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1837
+ PutObjectLockConfigurationRequest.struct_class = Types::PutObjectLockConfigurationRequest
1838
+ PutObjectLockConfigurationRequest[:payload] = :object_lock_configuration
1839
+ PutObjectLockConfigurationRequest[:payload_member] = PutObjectLockConfigurationRequest.member(:object_lock_configuration)
1840
+
1841
+ PutObjectOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
1842
+ PutObjectOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
1843
+ PutObjectOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
1844
+ PutObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
1845
+ PutObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
1846
+ PutObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
1847
+ PutObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
1848
+ PutObjectOutput.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
1849
+ PutObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1850
+ PutObjectOutput.struct_class = Types::PutObjectOutput
1851
+
1852
+ PutObjectRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
1853
+ PutObjectRequest.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
1854
+ PutObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1855
+ PutObjectRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
1856
+ PutObjectRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
1857
+ PutObjectRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
1858
+ PutObjectRequest.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
1859
+ PutObjectRequest.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
1860
+ PutObjectRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
1861
+ PutObjectRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
1862
+ PutObjectRequest.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
1863
+ PutObjectRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
1864
+ PutObjectRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
1865
+ PutObjectRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
1866
+ PutObjectRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
1867
+ PutObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1868
+ PutObjectRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
1869
+ PutObjectRequest.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
1870
+ PutObjectRequest.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
1871
+ PutObjectRequest.add_member(:website_redirect_location, Shapes::ShapeRef.new(shape: WebsiteRedirectLocation, location: "header", location_name: "x-amz-website-redirect-location"))
1872
+ PutObjectRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
1873
+ PutObjectRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
1874
+ PutObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
1875
+ PutObjectRequest.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
1876
+ PutObjectRequest.add_member(:ssekms_encryption_context, Shapes::ShapeRef.new(shape: SSEKMSEncryptionContext, location: "header", location_name: "x-amz-server-side-encryption-context"))
1877
+ PutObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1878
+ PutObjectRequest.add_member(:tagging, Shapes::ShapeRef.new(shape: TaggingHeader, location: "header", location_name: "x-amz-tagging"))
1879
+ PutObjectRequest.add_member(:object_lock_mode, Shapes::ShapeRef.new(shape: ObjectLockMode, location: "header", location_name: "x-amz-object-lock-mode"))
1880
+ PutObjectRequest.add_member(:object_lock_retain_until_date, Shapes::ShapeRef.new(shape: ObjectLockRetainUntilDate, location: "header", location_name: "x-amz-object-lock-retain-until-date"))
1881
+ PutObjectRequest.add_member(:object_lock_legal_hold_status, Shapes::ShapeRef.new(shape: ObjectLockLegalHoldStatus, location: "header", location_name: "x-amz-object-lock-legal-hold"))
1882
+ PutObjectRequest.struct_class = Types::PutObjectRequest
1883
+ PutObjectRequest[:payload] = :body
1884
+ PutObjectRequest[:payload_member] = PutObjectRequest.member(:body)
1885
+
1886
+ PutObjectRetentionOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1887
+ PutObjectRetentionOutput.struct_class = Types::PutObjectRetentionOutput
1888
+
1889
+ PutObjectRetentionRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1890
+ PutObjectRetentionRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1891
+ PutObjectRetentionRequest.add_member(:retention, Shapes::ShapeRef.new(shape: ObjectLockRetention, location_name: "Retention", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
1892
+ PutObjectRetentionRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1893
+ PutObjectRetentionRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
1894
+ PutObjectRetentionRequest.add_member(:bypass_governance_retention, Shapes::ShapeRef.new(shape: BypassGovernanceRetention, location: "header", location_name: "x-amz-bypass-governance-retention"))
1895
+ PutObjectRetentionRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1896
+ PutObjectRetentionRequest.struct_class = Types::PutObjectRetentionRequest
1897
+ PutObjectRetentionRequest[:payload] = :retention
1898
+ PutObjectRetentionRequest[:payload_member] = PutObjectRetentionRequest.member(:retention)
1899
+
1900
+ PutObjectTaggingOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
1901
+ PutObjectTaggingOutput.struct_class = Types::PutObjectTaggingOutput
1902
+
1903
+ PutObjectTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1904
+ PutObjectTaggingRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1905
+ PutObjectTaggingRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
1906
+ PutObjectTaggingRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1907
+ 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/"}}))
1908
+ PutObjectTaggingRequest.struct_class = Types::PutObjectTaggingRequest
1909
+ PutObjectTaggingRequest[:payload] = :tagging
1910
+ PutObjectTaggingRequest[:payload_member] = PutObjectTaggingRequest.member(:tagging)
1911
+
1912
+ PutPublicAccessBlockRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1913
+ PutPublicAccessBlockRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, deprecated: true, location: "header", location_name: "Content-MD5", metadata: {"deprecatedMessage"=>"Content-MD5 header will now be automatically computed and injected in associated operation's Http request."}))
1914
+ 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/"}}))
1915
+ PutPublicAccessBlockRequest.struct_class = Types::PutPublicAccessBlockRequest
1916
+ PutPublicAccessBlockRequest[:payload] = :public_access_block_configuration
1917
+ PutPublicAccessBlockRequest[:payload_member] = PutPublicAccessBlockRequest.member(:public_access_block_configuration)
1918
+
1919
+ QueueConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
1920
+ QueueConfiguration.add_member(:queue_arn, Shapes::ShapeRef.new(shape: QueueArn, required: true, location_name: "Queue"))
1921
+ QueueConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, required: true, location_name: "Event"))
1922
+ QueueConfiguration.add_member(:filter, Shapes::ShapeRef.new(shape: NotificationConfigurationFilter, location_name: "Filter"))
1923
+ QueueConfiguration.struct_class = Types::QueueConfiguration
1924
+
1925
+ QueueConfigurationDeprecated.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
1926
+ QueueConfigurationDeprecated.add_member(:event, Shapes::ShapeRef.new(shape: Event, deprecated: true, location_name: "Event"))
1927
+ QueueConfigurationDeprecated.add_member(:events, Shapes::ShapeRef.new(shape: EventList, location_name: "Event"))
1928
+ QueueConfigurationDeprecated.add_member(:queue, Shapes::ShapeRef.new(shape: QueueArn, location_name: "Queue"))
1929
+ QueueConfigurationDeprecated.struct_class = Types::QueueConfigurationDeprecated
1930
+
1931
+ QueueConfigurationList.member = Shapes::ShapeRef.new(shape: QueueConfiguration)
1932
+
1933
+ RecordsEvent.add_member(:payload, Shapes::ShapeRef.new(shape: Body, eventpayload: true, eventpayload_type: 'blob', location_name: "Payload", metadata: {"eventpayload"=>true}))
1934
+ RecordsEvent.struct_class = Types::RecordsEvent
1935
+
1936
+ Redirect.add_member(:host_name, Shapes::ShapeRef.new(shape: HostName, location_name: "HostName"))
1937
+ Redirect.add_member(:http_redirect_code, Shapes::ShapeRef.new(shape: HttpRedirectCode, location_name: "HttpRedirectCode"))
1938
+ Redirect.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "Protocol"))
1939
+ Redirect.add_member(:replace_key_prefix_with, Shapes::ShapeRef.new(shape: ReplaceKeyPrefixWith, location_name: "ReplaceKeyPrefixWith"))
1940
+ Redirect.add_member(:replace_key_with, Shapes::ShapeRef.new(shape: ReplaceKeyWith, location_name: "ReplaceKeyWith"))
1941
+ Redirect.struct_class = Types::Redirect
1942
+
1943
+ RedirectAllRequestsTo.add_member(:host_name, Shapes::ShapeRef.new(shape: HostName, required: true, location_name: "HostName"))
1944
+ RedirectAllRequestsTo.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "Protocol"))
1945
+ RedirectAllRequestsTo.struct_class = Types::RedirectAllRequestsTo
1946
+
1947
+ ReplicationConfiguration.add_member(:role, Shapes::ShapeRef.new(shape: Role, required: true, location_name: "Role"))
1948
+ ReplicationConfiguration.add_member(:rules, Shapes::ShapeRef.new(shape: ReplicationRules, required: true, location_name: "Rule"))
1949
+ ReplicationConfiguration.struct_class = Types::ReplicationConfiguration
1950
+
1951
+ ReplicationRule.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
1952
+ ReplicationRule.add_member(:priority, Shapes::ShapeRef.new(shape: Priority, location_name: "Priority"))
1953
+ ReplicationRule.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, deprecated: true, location_name: "Prefix"))
1954
+ ReplicationRule.add_member(:filter, Shapes::ShapeRef.new(shape: ReplicationRuleFilter, location_name: "Filter"))
1955
+ ReplicationRule.add_member(:status, Shapes::ShapeRef.new(shape: ReplicationRuleStatus, required: true, location_name: "Status"))
1956
+ ReplicationRule.add_member(:source_selection_criteria, Shapes::ShapeRef.new(shape: SourceSelectionCriteria, location_name: "SourceSelectionCriteria"))
1957
+ ReplicationRule.add_member(:existing_object_replication, Shapes::ShapeRef.new(shape: ExistingObjectReplication, location_name: "ExistingObjectReplication"))
1958
+ ReplicationRule.add_member(:destination, Shapes::ShapeRef.new(shape: Destination, required: true, location_name: "Destination"))
1959
+ ReplicationRule.add_member(:delete_marker_replication, Shapes::ShapeRef.new(shape: DeleteMarkerReplication, location_name: "DeleteMarkerReplication"))
1960
+ ReplicationRule.struct_class = Types::ReplicationRule
1961
+
1962
+ ReplicationRuleAndOperator.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1963
+ ReplicationRuleAndOperator.add_member(:tags, Shapes::ShapeRef.new(shape: TagSet, location_name: "Tag", metadata: {"flattened"=>true}))
1964
+ ReplicationRuleAndOperator.struct_class = Types::ReplicationRuleAndOperator
1965
+
1966
+ ReplicationRuleFilter.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
1967
+ ReplicationRuleFilter.add_member(:tag, Shapes::ShapeRef.new(shape: Tag, location_name: "Tag"))
1968
+ ReplicationRuleFilter.add_member(:and, Shapes::ShapeRef.new(shape: ReplicationRuleAndOperator, location_name: "And"))
1969
+ ReplicationRuleFilter.struct_class = Types::ReplicationRuleFilter
1970
+
1971
+ ReplicationRules.member = Shapes::ShapeRef.new(shape: ReplicationRule)
1972
+
1973
+ ReplicationTime.add_member(:status, Shapes::ShapeRef.new(shape: ReplicationTimeStatus, required: true, location_name: "Status"))
1974
+ ReplicationTime.add_member(:time, Shapes::ShapeRef.new(shape: ReplicationTimeValue, required: true, location_name: "Time"))
1975
+ ReplicationTime.struct_class = Types::ReplicationTime
1976
+
1977
+ ReplicationTimeValue.add_member(:minutes, Shapes::ShapeRef.new(shape: Minutes, location_name: "Minutes"))
1978
+ ReplicationTimeValue.struct_class = Types::ReplicationTimeValue
1979
+
1980
+ RequestPaymentConfiguration.add_member(:payer, Shapes::ShapeRef.new(shape: Payer, required: true, location_name: "Payer"))
1981
+ RequestPaymentConfiguration.struct_class = Types::RequestPaymentConfiguration
1982
+
1983
+ RequestProgress.add_member(:enabled, Shapes::ShapeRef.new(shape: EnableRequestProgress, location_name: "Enabled"))
1984
+ RequestProgress.struct_class = Types::RequestProgress
1985
+
1986
+ RestoreObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
1987
+ RestoreObjectOutput.add_member(:restore_output_path, Shapes::ShapeRef.new(shape: RestoreOutputPath, location: "header", location_name: "x-amz-restore-output-path"))
1988
+ RestoreObjectOutput.struct_class = Types::RestoreObjectOutput
1989
+
1990
+ RestoreObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
1991
+ RestoreObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
1992
+ RestoreObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
1993
+ RestoreObjectRequest.add_member(:restore_request, Shapes::ShapeRef.new(shape: RestoreRequest, location_name: "RestoreRequest", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
1994
+ RestoreObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
1995
+ RestoreObjectRequest.struct_class = Types::RestoreObjectRequest
1996
+ RestoreObjectRequest[:payload] = :restore_request
1997
+ RestoreObjectRequest[:payload_member] = RestoreObjectRequest.member(:restore_request)
1998
+
1999
+ RestoreRequest.add_member(:days, Shapes::ShapeRef.new(shape: Days, location_name: "Days"))
2000
+ RestoreRequest.add_member(:glacier_job_parameters, Shapes::ShapeRef.new(shape: GlacierJobParameters, location_name: "GlacierJobParameters"))
2001
+ RestoreRequest.add_member(:type, Shapes::ShapeRef.new(shape: RestoreRequestType, location_name: "Type"))
2002
+ RestoreRequest.add_member(:tier, Shapes::ShapeRef.new(shape: Tier, location_name: "Tier"))
2003
+ RestoreRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "Description"))
2004
+ RestoreRequest.add_member(:select_parameters, Shapes::ShapeRef.new(shape: SelectParameters, location_name: "SelectParameters"))
2005
+ RestoreRequest.add_member(:output_location, Shapes::ShapeRef.new(shape: OutputLocation, location_name: "OutputLocation"))
2006
+ RestoreRequest.struct_class = Types::RestoreRequest
2007
+
2008
+ RoutingRule.add_member(:condition, Shapes::ShapeRef.new(shape: Condition, location_name: "Condition"))
2009
+ RoutingRule.add_member(:redirect, Shapes::ShapeRef.new(shape: Redirect, required: true, location_name: "Redirect"))
2010
+ RoutingRule.struct_class = Types::RoutingRule
2011
+
2012
+ RoutingRules.member = Shapes::ShapeRef.new(shape: RoutingRule, location_name: "RoutingRule")
2013
+
2014
+ Rule.add_member(:expiration, Shapes::ShapeRef.new(shape: LifecycleExpiration, location_name: "Expiration"))
2015
+ Rule.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
2016
+ Rule.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, required: true, location_name: "Prefix"))
2017
+ Rule.add_member(:status, Shapes::ShapeRef.new(shape: ExpirationStatus, required: true, location_name: "Status"))
2018
+ Rule.add_member(:transition, Shapes::ShapeRef.new(shape: Transition, location_name: "Transition"))
2019
+ Rule.add_member(:noncurrent_version_transition, Shapes::ShapeRef.new(shape: NoncurrentVersionTransition, location_name: "NoncurrentVersionTransition"))
2020
+ Rule.add_member(:noncurrent_version_expiration, Shapes::ShapeRef.new(shape: NoncurrentVersionExpiration, location_name: "NoncurrentVersionExpiration"))
2021
+ Rule.add_member(:abort_incomplete_multipart_upload, Shapes::ShapeRef.new(shape: AbortIncompleteMultipartUpload, location_name: "AbortIncompleteMultipartUpload"))
2022
+ Rule.struct_class = Types::Rule
2023
+
2024
+ Rules.member = Shapes::ShapeRef.new(shape: Rule)
2025
+
2026
+ S3KeyFilter.add_member(:filter_rules, Shapes::ShapeRef.new(shape: FilterRuleList, location_name: "FilterRule"))
2027
+ S3KeyFilter.struct_class = Types::S3KeyFilter
2028
+
2029
+ S3Location.add_member(:bucket_name, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "BucketName"))
2030
+ S3Location.add_member(:prefix, Shapes::ShapeRef.new(shape: LocationPrefix, required: true, location_name: "Prefix"))
2031
+ S3Location.add_member(:encryption, Shapes::ShapeRef.new(shape: Encryption, location_name: "Encryption"))
2032
+ S3Location.add_member(:canned_acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location_name: "CannedACL"))
2033
+ S3Location.add_member(:access_control_list, Shapes::ShapeRef.new(shape: Grants, location_name: "AccessControlList"))
2034
+ S3Location.add_member(:tagging, Shapes::ShapeRef.new(shape: Tagging, location_name: "Tagging"))
2035
+ S3Location.add_member(:user_metadata, Shapes::ShapeRef.new(shape: UserMetadata, location_name: "UserMetadata"))
2036
+ S3Location.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
2037
+ S3Location.struct_class = Types::S3Location
2038
+
2039
+ SSEKMS.add_member(:key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, required: true, location_name: "KeyId"))
2040
+ SSEKMS.struct_class = Types::SSEKMS
2041
+
2042
+ SSES3.struct_class = Types::SSES3
2043
+
2044
+ ScanRange.add_member(:start, Shapes::ShapeRef.new(shape: Start, location_name: "Start"))
2045
+ ScanRange.add_member(:end, Shapes::ShapeRef.new(shape: End, location_name: "End"))
2046
+ ScanRange.struct_class = Types::ScanRange
2047
+
2048
+ SelectObjectContentEventStream.add_member(:records, Shapes::ShapeRef.new(shape: RecordsEvent, event: true, location_name: "Records"))
2049
+ SelectObjectContentEventStream.add_member(:stats, Shapes::ShapeRef.new(shape: StatsEvent, event: true, location_name: "Stats"))
2050
+ SelectObjectContentEventStream.add_member(:progress, Shapes::ShapeRef.new(shape: ProgressEvent, event: true, location_name: "Progress"))
2051
+ SelectObjectContentEventStream.add_member(:cont, Shapes::ShapeRef.new(shape: ContinuationEvent, event: true, location_name: "Cont"))
2052
+ SelectObjectContentEventStream.add_member(:end, Shapes::ShapeRef.new(shape: EndEvent, event: true, location_name: "End"))
2053
+ SelectObjectContentEventStream.struct_class = Types::SelectObjectContentEventStream
2054
+
2055
+ SelectObjectContentOutput.add_member(:payload, Shapes::ShapeRef.new(shape: SelectObjectContentEventStream, eventstream: true, location_name: "Payload"))
2056
+ SelectObjectContentOutput.struct_class = Types::SelectObjectContentOutput
2057
+ SelectObjectContentOutput[:payload] = :payload
2058
+ SelectObjectContentOutput[:payload_member] = SelectObjectContentOutput.member(:payload)
2059
+
2060
+ SelectObjectContentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
2061
+ SelectObjectContentRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
2062
+ SelectObjectContentRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
2063
+ SelectObjectContentRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
2064
+ SelectObjectContentRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
2065
+ SelectObjectContentRequest.add_member(:expression, Shapes::ShapeRef.new(shape: Expression, required: true, location_name: "Expression"))
2066
+ SelectObjectContentRequest.add_member(:expression_type, Shapes::ShapeRef.new(shape: ExpressionType, required: true, location_name: "ExpressionType"))
2067
+ SelectObjectContentRequest.add_member(:request_progress, Shapes::ShapeRef.new(shape: RequestProgress, location_name: "RequestProgress"))
2068
+ SelectObjectContentRequest.add_member(:input_serialization, Shapes::ShapeRef.new(shape: InputSerialization, required: true, location_name: "InputSerialization"))
2069
+ SelectObjectContentRequest.add_member(:output_serialization, Shapes::ShapeRef.new(shape: OutputSerialization, required: true, location_name: "OutputSerialization"))
2070
+ SelectObjectContentRequest.add_member(:scan_range, Shapes::ShapeRef.new(shape: ScanRange, location_name: "ScanRange"))
2071
+ SelectObjectContentRequest.struct_class = Types::SelectObjectContentRequest
2072
+
2073
+ SelectParameters.add_member(:input_serialization, Shapes::ShapeRef.new(shape: InputSerialization, required: true, location_name: "InputSerialization"))
2074
+ SelectParameters.add_member(:expression_type, Shapes::ShapeRef.new(shape: ExpressionType, required: true, location_name: "ExpressionType"))
2075
+ SelectParameters.add_member(:expression, Shapes::ShapeRef.new(shape: Expression, required: true, location_name: "Expression"))
2076
+ SelectParameters.add_member(:output_serialization, Shapes::ShapeRef.new(shape: OutputSerialization, required: true, location_name: "OutputSerialization"))
2077
+ SelectParameters.struct_class = Types::SelectParameters
2078
+
2079
+ ServerSideEncryptionByDefault.add_member(:sse_algorithm, Shapes::ShapeRef.new(shape: ServerSideEncryption, required: true, location_name: "SSEAlgorithm"))
2080
+ ServerSideEncryptionByDefault.add_member(:kms_master_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location_name: "KMSMasterKeyID"))
2081
+ ServerSideEncryptionByDefault.struct_class = Types::ServerSideEncryptionByDefault
2082
+
2083
+ ServerSideEncryptionConfiguration.add_member(:rules, Shapes::ShapeRef.new(shape: ServerSideEncryptionRules, required: true, location_name: "Rule"))
2084
+ ServerSideEncryptionConfiguration.struct_class = Types::ServerSideEncryptionConfiguration
2085
+
2086
+ ServerSideEncryptionRule.add_member(:apply_server_side_encryption_by_default, Shapes::ShapeRef.new(shape: ServerSideEncryptionByDefault, location_name: "ApplyServerSideEncryptionByDefault"))
2087
+ ServerSideEncryptionRule.struct_class = Types::ServerSideEncryptionRule
2088
+
2089
+ ServerSideEncryptionRules.member = Shapes::ShapeRef.new(shape: ServerSideEncryptionRule)
2090
+
2091
+ SourceSelectionCriteria.add_member(:sse_kms_encrypted_objects, Shapes::ShapeRef.new(shape: SseKmsEncryptedObjects, location_name: "SseKmsEncryptedObjects"))
2092
+ SourceSelectionCriteria.struct_class = Types::SourceSelectionCriteria
2093
+
2094
+ SseKmsEncryptedObjects.add_member(:status, Shapes::ShapeRef.new(shape: SseKmsEncryptedObjectsStatus, required: true, location_name: "Status"))
2095
+ SseKmsEncryptedObjects.struct_class = Types::SseKmsEncryptedObjects
2096
+
2097
+ Stats.add_member(:bytes_scanned, Shapes::ShapeRef.new(shape: BytesScanned, location_name: "BytesScanned"))
2098
+ Stats.add_member(:bytes_processed, Shapes::ShapeRef.new(shape: BytesProcessed, location_name: "BytesProcessed"))
2099
+ Stats.add_member(:bytes_returned, Shapes::ShapeRef.new(shape: BytesReturned, location_name: "BytesReturned"))
2100
+ Stats.struct_class = Types::Stats
2101
+
2102
+ StatsEvent.add_member(:details, Shapes::ShapeRef.new(shape: Stats, eventpayload: true, eventpayload_type: 'structure', location_name: "Details", metadata: {"eventpayload"=>true}))
2103
+ StatsEvent.struct_class = Types::StatsEvent
2104
+
2105
+ StorageClassAnalysis.add_member(:data_export, Shapes::ShapeRef.new(shape: StorageClassAnalysisDataExport, location_name: "DataExport"))
2106
+ StorageClassAnalysis.struct_class = Types::StorageClassAnalysis
2107
+
2108
+ StorageClassAnalysisDataExport.add_member(:output_schema_version, Shapes::ShapeRef.new(shape: StorageClassAnalysisSchemaVersion, required: true, location_name: "OutputSchemaVersion"))
2109
+ StorageClassAnalysisDataExport.add_member(:destination, Shapes::ShapeRef.new(shape: AnalyticsExportDestination, required: true, location_name: "Destination"))
2110
+ StorageClassAnalysisDataExport.struct_class = Types::StorageClassAnalysisDataExport
2111
+
2112
+ Tag.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location_name: "Key"))
2113
+ Tag.add_member(:value, Shapes::ShapeRef.new(shape: Value, required: true, location_name: "Value"))
2114
+ Tag.struct_class = Types::Tag
2115
+
2116
+ TagSet.member = Shapes::ShapeRef.new(shape: Tag, location_name: "Tag")
2117
+
2118
+ Tagging.add_member(:tag_set, Shapes::ShapeRef.new(shape: TagSet, required: true, location_name: "TagSet"))
2119
+ Tagging.struct_class = Types::Tagging
2120
+
2121
+ TargetGrant.add_member(:grantee, Shapes::ShapeRef.new(shape: Grantee, location_name: "Grantee"))
2122
+ TargetGrant.add_member(:permission, Shapes::ShapeRef.new(shape: BucketLogsPermission, location_name: "Permission"))
2123
+ TargetGrant.struct_class = Types::TargetGrant
2124
+
2125
+ TargetGrants.member = Shapes::ShapeRef.new(shape: TargetGrant, location_name: "Grant")
2126
+
2127
+ TopicConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
2128
+ TopicConfiguration.add_member(:topic_arn, Shapes::ShapeRef.new(shape: TopicArn, required: true, location_name: "Topic"))
2129
+ TopicConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, required: true, location_name: "Event"))
2130
+ TopicConfiguration.add_member(:filter, Shapes::ShapeRef.new(shape: NotificationConfigurationFilter, location_name: "Filter"))
2131
+ TopicConfiguration.struct_class = Types::TopicConfiguration
2132
+
2133
+ TopicConfigurationDeprecated.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
2134
+ TopicConfigurationDeprecated.add_member(:events, Shapes::ShapeRef.new(shape: EventList, location_name: "Event"))
2135
+ TopicConfigurationDeprecated.add_member(:event, Shapes::ShapeRef.new(shape: Event, deprecated: true, location_name: "Event"))
2136
+ TopicConfigurationDeprecated.add_member(:topic, Shapes::ShapeRef.new(shape: TopicArn, location_name: "Topic"))
2137
+ TopicConfigurationDeprecated.struct_class = Types::TopicConfigurationDeprecated
2138
+
2139
+ TopicConfigurationList.member = Shapes::ShapeRef.new(shape: TopicConfiguration)
2140
+
2141
+ Transition.add_member(:date, Shapes::ShapeRef.new(shape: Date, location_name: "Date"))
2142
+ Transition.add_member(:days, Shapes::ShapeRef.new(shape: Days, location_name: "Days"))
2143
+ Transition.add_member(:storage_class, Shapes::ShapeRef.new(shape: TransitionStorageClass, location_name: "StorageClass"))
2144
+ Transition.struct_class = Types::Transition
2145
+
2146
+ TransitionList.member = Shapes::ShapeRef.new(shape: Transition)
2147
+
2148
+ UploadPartCopyOutput.add_member(:copy_source_version_id, Shapes::ShapeRef.new(shape: CopySourceVersionId, location: "header", location_name: "x-amz-copy-source-version-id"))
2149
+ UploadPartCopyOutput.add_member(:copy_part_result, Shapes::ShapeRef.new(shape: CopyPartResult, location_name: "CopyPartResult"))
2150
+ UploadPartCopyOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
2151
+ UploadPartCopyOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
2152
+ UploadPartCopyOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
2153
+ UploadPartCopyOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
2154
+ UploadPartCopyOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
2155
+ UploadPartCopyOutput.struct_class = Types::UploadPartCopyOutput
2156
+ UploadPartCopyOutput[:payload] = :copy_part_result
2157
+ UploadPartCopyOutput[:payload_member] = UploadPartCopyOutput.member(:copy_part_result)
2158
+
2159
+ UploadPartCopyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
2160
+ UploadPartCopyRequest.add_member(:copy_source, Shapes::ShapeRef.new(shape: CopySource, required: true, location: "header", location_name: "x-amz-copy-source"))
2161
+ UploadPartCopyRequest.add_member(:copy_source_if_match, Shapes::ShapeRef.new(shape: CopySourceIfMatch, location: "header", location_name: "x-amz-copy-source-if-match"))
2162
+ UploadPartCopyRequest.add_member(:copy_source_if_modified_since, Shapes::ShapeRef.new(shape: CopySourceIfModifiedSince, location: "header", location_name: "x-amz-copy-source-if-modified-since"))
2163
+ UploadPartCopyRequest.add_member(:copy_source_if_none_match, Shapes::ShapeRef.new(shape: CopySourceIfNoneMatch, location: "header", location_name: "x-amz-copy-source-if-none-match"))
2164
+ UploadPartCopyRequest.add_member(:copy_source_if_unmodified_since, Shapes::ShapeRef.new(shape: CopySourceIfUnmodifiedSince, location: "header", location_name: "x-amz-copy-source-if-unmodified-since"))
2165
+ UploadPartCopyRequest.add_member(:copy_source_range, Shapes::ShapeRef.new(shape: CopySourceRange, location: "header", location_name: "x-amz-copy-source-range"))
2166
+ UploadPartCopyRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
2167
+ UploadPartCopyRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, required: true, location: "querystring", location_name: "partNumber"))
2168
+ UploadPartCopyRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
2169
+ UploadPartCopyRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
2170
+ UploadPartCopyRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
2171
+ UploadPartCopyRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
2172
+ UploadPartCopyRequest.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"))
2173
+ 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"))
2174
+ 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"))
2175
+ UploadPartCopyRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
2176
+ UploadPartCopyRequest.struct_class = Types::UploadPartCopyRequest
2177
+
2178
+ UploadPartOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
2179
+ UploadPartOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
2180
+ UploadPartOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
2181
+ UploadPartOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
2182
+ UploadPartOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
2183
+ UploadPartOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
2184
+ UploadPartOutput.struct_class = Types::UploadPartOutput
2185
+
2186
+ UploadPartRequest.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
2187
+ UploadPartRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
2188
+ UploadPartRequest.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
2189
+ UploadPartRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
2190
+ UploadPartRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
2191
+ UploadPartRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, required: true, location: "querystring", location_name: "partNumber"))
2192
+ UploadPartRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
2193
+ UploadPartRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
2194
+ UploadPartRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
2195
+ UploadPartRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
2196
+ UploadPartRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
2197
+ UploadPartRequest.struct_class = Types::UploadPartRequest
2198
+ UploadPartRequest[:payload] = :body
2199
+ UploadPartRequest[:payload_member] = UploadPartRequest.member(:body)
2200
+
2201
+ UserMetadata.member = Shapes::ShapeRef.new(shape: MetadataEntry, location_name: "MetadataEntry")
2202
+
2203
+ VersioningConfiguration.add_member(:mfa_delete, Shapes::ShapeRef.new(shape: MFADelete, location_name: "MfaDelete"))
2204
+ VersioningConfiguration.add_member(:status, Shapes::ShapeRef.new(shape: BucketVersioningStatus, location_name: "Status"))
2205
+ VersioningConfiguration.struct_class = Types::VersioningConfiguration
2206
+
2207
+ WebsiteConfiguration.add_member(:error_document, Shapes::ShapeRef.new(shape: ErrorDocument, location_name: "ErrorDocument"))
2208
+ WebsiteConfiguration.add_member(:index_document, Shapes::ShapeRef.new(shape: IndexDocument, location_name: "IndexDocument"))
2209
+ WebsiteConfiguration.add_member(:redirect_all_requests_to, Shapes::ShapeRef.new(shape: RedirectAllRequestsTo, location_name: "RedirectAllRequestsTo"))
2210
+ WebsiteConfiguration.add_member(:routing_rules, Shapes::ShapeRef.new(shape: RoutingRules, location_name: "RoutingRules"))
2211
+ WebsiteConfiguration.struct_class = Types::WebsiteConfiguration
2212
+
2213
+
2214
+ # @api private
2215
+ API = Seahorse::Model::Api.new.tap do |api|
2216
+
2217
+ api.version = "2006-03-01"
2218
+
2219
+ api.metadata = {
2220
+ "apiVersion" => "2006-03-01",
2221
+ "checksumFormat" => "md5",
2222
+ "endpointPrefix" => "s3",
2223
+ "globalEndpoint" => "s3.amazonaws.com",
2224
+ "protocol" => "rest-xml",
2225
+ "serviceAbbreviation" => "Amazon S3",
2226
+ "serviceFullName" => "Amazon Simple Storage Service",
2227
+ "serviceId" => "S3",
2228
+ "uid" => "s3-2006-03-01",
2229
+ }
2230
+
2231
+ api.add_operation(:abort_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
2232
+ o.name = "AbortMultipartUpload"
2233
+ o.http_method = "DELETE"
2234
+ o.http_request_uri = "/{Bucket}/{Key+}"
2235
+ o.input = Shapes::ShapeRef.new(shape: AbortMultipartUploadRequest)
2236
+ o.output = Shapes::ShapeRef.new(shape: AbortMultipartUploadOutput)
2237
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchUpload)
2238
+ end)
2239
+
2240
+ api.add_operation(:complete_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
2241
+ o.name = "CompleteMultipartUpload"
2242
+ o.http_method = "POST"
2243
+ o.http_request_uri = "/{Bucket}/{Key+}"
2244
+ o.input = Shapes::ShapeRef.new(shape: CompleteMultipartUploadRequest)
2245
+ o.output = Shapes::ShapeRef.new(shape: CompleteMultipartUploadOutput)
2246
+ end)
2247
+
2248
+ api.add_operation(:copy_object, Seahorse::Model::Operation.new.tap do |o|
2249
+ o.name = "CopyObject"
2250
+ o.http_method = "PUT"
2251
+ o.http_request_uri = "/{Bucket}/{Key+}"
2252
+ o.input = Shapes::ShapeRef.new(shape: CopyObjectRequest)
2253
+ o.output = Shapes::ShapeRef.new(shape: CopyObjectOutput)
2254
+ o.errors << Shapes::ShapeRef.new(shape: ObjectNotInActiveTierError)
2255
+ end)
2256
+
2257
+ api.add_operation(:create_bucket, Seahorse::Model::Operation.new.tap do |o|
2258
+ o.name = "CreateBucket"
2259
+ o.http_method = "PUT"
2260
+ o.http_request_uri = "/{Bucket}"
2261
+ o.input = Shapes::ShapeRef.new(shape: CreateBucketRequest)
2262
+ o.output = Shapes::ShapeRef.new(shape: CreateBucketOutput)
2263
+ o.errors << Shapes::ShapeRef.new(shape: BucketAlreadyExists)
2264
+ o.errors << Shapes::ShapeRef.new(shape: BucketAlreadyOwnedByYou)
2265
+ end)
2266
+
2267
+ api.add_operation(:create_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
2268
+ o.name = "CreateMultipartUpload"
2269
+ o.http_method = "POST"
2270
+ o.http_request_uri = "/{Bucket}/{Key+}?uploads"
2271
+ o.input = Shapes::ShapeRef.new(shape: CreateMultipartUploadRequest)
2272
+ o.output = Shapes::ShapeRef.new(shape: CreateMultipartUploadOutput)
2273
+ end)
2274
+
2275
+ api.add_operation(:delete_bucket, Seahorse::Model::Operation.new.tap do |o|
2276
+ o.name = "DeleteBucket"
2277
+ o.http_method = "DELETE"
2278
+ o.http_request_uri = "/{Bucket}"
2279
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketRequest)
2280
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2281
+ end)
2282
+
2283
+ api.add_operation(:delete_bucket_analytics_configuration, Seahorse::Model::Operation.new.tap do |o|
2284
+ o.name = "DeleteBucketAnalyticsConfiguration"
2285
+ o.http_method = "DELETE"
2286
+ o.http_request_uri = "/{Bucket}?analytics"
2287
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketAnalyticsConfigurationRequest)
2288
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2289
+ end)
2290
+
2291
+ api.add_operation(:delete_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
2292
+ o.name = "DeleteBucketCors"
2293
+ o.http_method = "DELETE"
2294
+ o.http_request_uri = "/{Bucket}?cors"
2295
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketCorsRequest)
2296
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2297
+ end)
2298
+
2299
+ api.add_operation(:delete_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
2300
+ o.name = "DeleteBucketEncryption"
2301
+ o.http_method = "DELETE"
2302
+ o.http_request_uri = "/{Bucket}?encryption"
2303
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketEncryptionRequest)
2304
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2305
+ end)
2306
+
2307
+ api.add_operation(:delete_bucket_inventory_configuration, Seahorse::Model::Operation.new.tap do |o|
2308
+ o.name = "DeleteBucketInventoryConfiguration"
2309
+ o.http_method = "DELETE"
2310
+ o.http_request_uri = "/{Bucket}?inventory"
2311
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketInventoryConfigurationRequest)
2312
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2313
+ end)
2314
+
2315
+ api.add_operation(:delete_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
2316
+ o.name = "DeleteBucketLifecycle"
2317
+ o.http_method = "DELETE"
2318
+ o.http_request_uri = "/{Bucket}?lifecycle"
2319
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketLifecycleRequest)
2320
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2321
+ end)
2322
+
2323
+ api.add_operation(:delete_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
2324
+ o.name = "DeleteBucketMetricsConfiguration"
2325
+ o.http_method = "DELETE"
2326
+ o.http_request_uri = "/{Bucket}?metrics"
2327
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketMetricsConfigurationRequest)
2328
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2329
+ end)
2330
+
2331
+ api.add_operation(:delete_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
2332
+ o.name = "DeleteBucketPolicy"
2333
+ o.http_method = "DELETE"
2334
+ o.http_request_uri = "/{Bucket}?policy"
2335
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketPolicyRequest)
2336
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2337
+ end)
2338
+
2339
+ api.add_operation(:delete_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
2340
+ o.name = "DeleteBucketReplication"
2341
+ o.http_method = "DELETE"
2342
+ o.http_request_uri = "/{Bucket}?replication"
2343
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketReplicationRequest)
2344
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2345
+ end)
2346
+
2347
+ api.add_operation(:delete_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
2348
+ o.name = "DeleteBucketTagging"
2349
+ o.http_method = "DELETE"
2350
+ o.http_request_uri = "/{Bucket}?tagging"
2351
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketTaggingRequest)
2352
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2353
+ end)
2354
+
2355
+ api.add_operation(:delete_bucket_website, Seahorse::Model::Operation.new.tap do |o|
2356
+ o.name = "DeleteBucketWebsite"
2357
+ o.http_method = "DELETE"
2358
+ o.http_request_uri = "/{Bucket}?website"
2359
+ o.input = Shapes::ShapeRef.new(shape: DeleteBucketWebsiteRequest)
2360
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2361
+ end)
2362
+
2363
+ api.add_operation(:delete_object, Seahorse::Model::Operation.new.tap do |o|
2364
+ o.name = "DeleteObject"
2365
+ o.http_method = "DELETE"
2366
+ o.http_request_uri = "/{Bucket}/{Key+}"
2367
+ o.input = Shapes::ShapeRef.new(shape: DeleteObjectRequest)
2368
+ o.output = Shapes::ShapeRef.new(shape: DeleteObjectOutput)
2369
+ end)
2370
+
2371
+ api.add_operation(:delete_object_tagging, Seahorse::Model::Operation.new.tap do |o|
2372
+ o.name = "DeleteObjectTagging"
2373
+ o.http_method = "DELETE"
2374
+ o.http_request_uri = "/{Bucket}/{Key+}?tagging"
2375
+ o.input = Shapes::ShapeRef.new(shape: DeleteObjectTaggingRequest)
2376
+ o.output = Shapes::ShapeRef.new(shape: DeleteObjectTaggingOutput)
2377
+ end)
2378
+
2379
+ api.add_operation(:delete_objects, Seahorse::Model::Operation.new.tap do |o|
2380
+ o.name = "DeleteObjects"
2381
+ o.http_method = "POST"
2382
+ o.http_request_uri = "/{Bucket}?delete"
2383
+ o.http_checksum_required = true
2384
+ o.input = Shapes::ShapeRef.new(shape: DeleteObjectsRequest)
2385
+ o.output = Shapes::ShapeRef.new(shape: DeleteObjectsOutput)
2386
+ end)
2387
+
2388
+ api.add_operation(:delete_public_access_block, Seahorse::Model::Operation.new.tap do |o|
2389
+ o.name = "DeletePublicAccessBlock"
2390
+ o.http_method = "DELETE"
2391
+ o.http_request_uri = "/{Bucket}?publicAccessBlock"
2392
+ o.input = Shapes::ShapeRef.new(shape: DeletePublicAccessBlockRequest)
2393
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2394
+ end)
2395
+
2396
+ api.add_operation(:get_bucket_accelerate_configuration, Seahorse::Model::Operation.new.tap do |o|
2397
+ o.name = "GetBucketAccelerateConfiguration"
2398
+ o.http_method = "GET"
2399
+ o.http_request_uri = "/{Bucket}?accelerate"
2400
+ o.input = Shapes::ShapeRef.new(shape: GetBucketAccelerateConfigurationRequest)
2401
+ o.output = Shapes::ShapeRef.new(shape: GetBucketAccelerateConfigurationOutput)
2402
+ end)
2403
+
2404
+ api.add_operation(:get_bucket_acl, Seahorse::Model::Operation.new.tap do |o|
2405
+ o.name = "GetBucketAcl"
2406
+ o.http_method = "GET"
2407
+ o.http_request_uri = "/{Bucket}?acl"
2408
+ o.input = Shapes::ShapeRef.new(shape: GetBucketAclRequest)
2409
+ o.output = Shapes::ShapeRef.new(shape: GetBucketAclOutput)
2410
+ end)
2411
+
2412
+ api.add_operation(:get_bucket_analytics_configuration, Seahorse::Model::Operation.new.tap do |o|
2413
+ o.name = "GetBucketAnalyticsConfiguration"
2414
+ o.http_method = "GET"
2415
+ o.http_request_uri = "/{Bucket}?analytics"
2416
+ o.input = Shapes::ShapeRef.new(shape: GetBucketAnalyticsConfigurationRequest)
2417
+ o.output = Shapes::ShapeRef.new(shape: GetBucketAnalyticsConfigurationOutput)
2418
+ end)
2419
+
2420
+ api.add_operation(:get_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
2421
+ o.name = "GetBucketCors"
2422
+ o.http_method = "GET"
2423
+ o.http_request_uri = "/{Bucket}?cors"
2424
+ o.input = Shapes::ShapeRef.new(shape: GetBucketCorsRequest)
2425
+ o.output = Shapes::ShapeRef.new(shape: GetBucketCorsOutput)
2426
+ end)
2427
+
2428
+ api.add_operation(:get_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
2429
+ o.name = "GetBucketEncryption"
2430
+ o.http_method = "GET"
2431
+ o.http_request_uri = "/{Bucket}?encryption"
2432
+ o.input = Shapes::ShapeRef.new(shape: GetBucketEncryptionRequest)
2433
+ o.output = Shapes::ShapeRef.new(shape: GetBucketEncryptionOutput)
2434
+ end)
2435
+
2436
+ api.add_operation(:get_bucket_inventory_configuration, Seahorse::Model::Operation.new.tap do |o|
2437
+ o.name = "GetBucketInventoryConfiguration"
2438
+ o.http_method = "GET"
2439
+ o.http_request_uri = "/{Bucket}?inventory"
2440
+ o.input = Shapes::ShapeRef.new(shape: GetBucketInventoryConfigurationRequest)
2441
+ o.output = Shapes::ShapeRef.new(shape: GetBucketInventoryConfigurationOutput)
2442
+ end)
2443
+
2444
+ api.add_operation(:get_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
2445
+ o.name = "GetBucketLifecycle"
2446
+ o.http_method = "GET"
2447
+ o.http_request_uri = "/{Bucket}?lifecycle"
2448
+ o.deprecated = true
2449
+ o.input = Shapes::ShapeRef.new(shape: GetBucketLifecycleRequest)
2450
+ o.output = Shapes::ShapeRef.new(shape: GetBucketLifecycleOutput)
2451
+ end)
2452
+
2453
+ api.add_operation(:get_bucket_lifecycle_configuration, Seahorse::Model::Operation.new.tap do |o|
2454
+ o.name = "GetBucketLifecycleConfiguration"
2455
+ o.http_method = "GET"
2456
+ o.http_request_uri = "/{Bucket}?lifecycle"
2457
+ o.input = Shapes::ShapeRef.new(shape: GetBucketLifecycleConfigurationRequest)
2458
+ o.output = Shapes::ShapeRef.new(shape: GetBucketLifecycleConfigurationOutput)
2459
+ end)
2460
+
2461
+ api.add_operation(:get_bucket_location, Seahorse::Model::Operation.new.tap do |o|
2462
+ o.name = "GetBucketLocation"
2463
+ o.http_method = "GET"
2464
+ o.http_request_uri = "/{Bucket}?location"
2465
+ o.input = Shapes::ShapeRef.new(shape: GetBucketLocationRequest)
2466
+ o.output = Shapes::ShapeRef.new(shape: GetBucketLocationOutput)
2467
+ end)
2468
+
2469
+ api.add_operation(:get_bucket_logging, Seahorse::Model::Operation.new.tap do |o|
2470
+ o.name = "GetBucketLogging"
2471
+ o.http_method = "GET"
2472
+ o.http_request_uri = "/{Bucket}?logging"
2473
+ o.input = Shapes::ShapeRef.new(shape: GetBucketLoggingRequest)
2474
+ o.output = Shapes::ShapeRef.new(shape: GetBucketLoggingOutput)
2475
+ end)
2476
+
2477
+ api.add_operation(:get_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
2478
+ o.name = "GetBucketMetricsConfiguration"
2479
+ o.http_method = "GET"
2480
+ o.http_request_uri = "/{Bucket}?metrics"
2481
+ o.input = Shapes::ShapeRef.new(shape: GetBucketMetricsConfigurationRequest)
2482
+ o.output = Shapes::ShapeRef.new(shape: GetBucketMetricsConfigurationOutput)
2483
+ end)
2484
+
2485
+ api.add_operation(:get_bucket_notification, Seahorse::Model::Operation.new.tap do |o|
2486
+ o.name = "GetBucketNotification"
2487
+ o.http_method = "GET"
2488
+ o.http_request_uri = "/{Bucket}?notification"
2489
+ o.deprecated = true
2490
+ o.input = Shapes::ShapeRef.new(shape: GetBucketNotificationConfigurationRequest)
2491
+ o.output = Shapes::ShapeRef.new(shape: NotificationConfigurationDeprecated)
2492
+ end)
2493
+
2494
+ api.add_operation(:get_bucket_notification_configuration, Seahorse::Model::Operation.new.tap do |o|
2495
+ o.name = "GetBucketNotificationConfiguration"
2496
+ o.http_method = "GET"
2497
+ o.http_request_uri = "/{Bucket}?notification"
2498
+ o.input = Shapes::ShapeRef.new(shape: GetBucketNotificationConfigurationRequest)
2499
+ o.output = Shapes::ShapeRef.new(shape: NotificationConfiguration)
2500
+ end)
2501
+
2502
+ api.add_operation(:get_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
2503
+ o.name = "GetBucketPolicy"
2504
+ o.http_method = "GET"
2505
+ o.http_request_uri = "/{Bucket}?policy"
2506
+ o.input = Shapes::ShapeRef.new(shape: GetBucketPolicyRequest)
2507
+ o.output = Shapes::ShapeRef.new(shape: GetBucketPolicyOutput)
2508
+ end)
2509
+
2510
+ api.add_operation(:get_bucket_policy_status, Seahorse::Model::Operation.new.tap do |o|
2511
+ o.name = "GetBucketPolicyStatus"
2512
+ o.http_method = "GET"
2513
+ o.http_request_uri = "/{Bucket}?policyStatus"
2514
+ o.input = Shapes::ShapeRef.new(shape: GetBucketPolicyStatusRequest)
2515
+ o.output = Shapes::ShapeRef.new(shape: GetBucketPolicyStatusOutput)
2516
+ end)
2517
+
2518
+ api.add_operation(:get_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
2519
+ o.name = "GetBucketReplication"
2520
+ o.http_method = "GET"
2521
+ o.http_request_uri = "/{Bucket}?replication"
2522
+ o.input = Shapes::ShapeRef.new(shape: GetBucketReplicationRequest)
2523
+ o.output = Shapes::ShapeRef.new(shape: GetBucketReplicationOutput)
2524
+ end)
2525
+
2526
+ api.add_operation(:get_bucket_request_payment, Seahorse::Model::Operation.new.tap do |o|
2527
+ o.name = "GetBucketRequestPayment"
2528
+ o.http_method = "GET"
2529
+ o.http_request_uri = "/{Bucket}?requestPayment"
2530
+ o.input = Shapes::ShapeRef.new(shape: GetBucketRequestPaymentRequest)
2531
+ o.output = Shapes::ShapeRef.new(shape: GetBucketRequestPaymentOutput)
2532
+ end)
2533
+
2534
+ api.add_operation(:get_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
2535
+ o.name = "GetBucketTagging"
2536
+ o.http_method = "GET"
2537
+ o.http_request_uri = "/{Bucket}?tagging"
2538
+ o.input = Shapes::ShapeRef.new(shape: GetBucketTaggingRequest)
2539
+ o.output = Shapes::ShapeRef.new(shape: GetBucketTaggingOutput)
2540
+ end)
2541
+
2542
+ api.add_operation(:get_bucket_versioning, Seahorse::Model::Operation.new.tap do |o|
2543
+ o.name = "GetBucketVersioning"
2544
+ o.http_method = "GET"
2545
+ o.http_request_uri = "/{Bucket}?versioning"
2546
+ o.input = Shapes::ShapeRef.new(shape: GetBucketVersioningRequest)
2547
+ o.output = Shapes::ShapeRef.new(shape: GetBucketVersioningOutput)
2548
+ end)
2549
+
2550
+ api.add_operation(:get_bucket_website, Seahorse::Model::Operation.new.tap do |o|
2551
+ o.name = "GetBucketWebsite"
2552
+ o.http_method = "GET"
2553
+ o.http_request_uri = "/{Bucket}?website"
2554
+ o.input = Shapes::ShapeRef.new(shape: GetBucketWebsiteRequest)
2555
+ o.output = Shapes::ShapeRef.new(shape: GetBucketWebsiteOutput)
2556
+ end)
2557
+
2558
+ api.add_operation(:get_object, Seahorse::Model::Operation.new.tap do |o|
2559
+ o.name = "GetObject"
2560
+ o.http_method = "GET"
2561
+ o.http_request_uri = "/{Bucket}/{Key+}"
2562
+ o.input = Shapes::ShapeRef.new(shape: GetObjectRequest)
2563
+ o.output = Shapes::ShapeRef.new(shape: GetObjectOutput)
2564
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
2565
+ end)
2566
+
2567
+ api.add_operation(:get_object_acl, Seahorse::Model::Operation.new.tap do |o|
2568
+ o.name = "GetObjectAcl"
2569
+ o.http_method = "GET"
2570
+ o.http_request_uri = "/{Bucket}/{Key+}?acl"
2571
+ o.input = Shapes::ShapeRef.new(shape: GetObjectAclRequest)
2572
+ o.output = Shapes::ShapeRef.new(shape: GetObjectAclOutput)
2573
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
2574
+ end)
2575
+
2576
+ api.add_operation(:get_object_legal_hold, Seahorse::Model::Operation.new.tap do |o|
2577
+ o.name = "GetObjectLegalHold"
2578
+ o.http_method = "GET"
2579
+ o.http_request_uri = "/{Bucket}/{Key+}?legal-hold"
2580
+ o.input = Shapes::ShapeRef.new(shape: GetObjectLegalHoldRequest)
2581
+ o.output = Shapes::ShapeRef.new(shape: GetObjectLegalHoldOutput)
2582
+ end)
2583
+
2584
+ api.add_operation(:get_object_lock_configuration, Seahorse::Model::Operation.new.tap do |o|
2585
+ o.name = "GetObjectLockConfiguration"
2586
+ o.http_method = "GET"
2587
+ o.http_request_uri = "/{Bucket}?object-lock"
2588
+ o.input = Shapes::ShapeRef.new(shape: GetObjectLockConfigurationRequest)
2589
+ o.output = Shapes::ShapeRef.new(shape: GetObjectLockConfigurationOutput)
2590
+ end)
2591
+
2592
+ api.add_operation(:get_object_retention, Seahorse::Model::Operation.new.tap do |o|
2593
+ o.name = "GetObjectRetention"
2594
+ o.http_method = "GET"
2595
+ o.http_request_uri = "/{Bucket}/{Key+}?retention"
2596
+ o.input = Shapes::ShapeRef.new(shape: GetObjectRetentionRequest)
2597
+ o.output = Shapes::ShapeRef.new(shape: GetObjectRetentionOutput)
2598
+ end)
2599
+
2600
+ api.add_operation(:get_object_tagging, Seahorse::Model::Operation.new.tap do |o|
2601
+ o.name = "GetObjectTagging"
2602
+ o.http_method = "GET"
2603
+ o.http_request_uri = "/{Bucket}/{Key+}?tagging"
2604
+ o.input = Shapes::ShapeRef.new(shape: GetObjectTaggingRequest)
2605
+ o.output = Shapes::ShapeRef.new(shape: GetObjectTaggingOutput)
2606
+ end)
2607
+
2608
+ api.add_operation(:get_object_torrent, Seahorse::Model::Operation.new.tap do |o|
2609
+ o.name = "GetObjectTorrent"
2610
+ o.http_method = "GET"
2611
+ o.http_request_uri = "/{Bucket}/{Key+}?torrent"
2612
+ o.input = Shapes::ShapeRef.new(shape: GetObjectTorrentRequest)
2613
+ o.output = Shapes::ShapeRef.new(shape: GetObjectTorrentOutput)
2614
+ end)
2615
+
2616
+ api.add_operation(:get_public_access_block, Seahorse::Model::Operation.new.tap do |o|
2617
+ o.name = "GetPublicAccessBlock"
2618
+ o.http_method = "GET"
2619
+ o.http_request_uri = "/{Bucket}?publicAccessBlock"
2620
+ o.input = Shapes::ShapeRef.new(shape: GetPublicAccessBlockRequest)
2621
+ o.output = Shapes::ShapeRef.new(shape: GetPublicAccessBlockOutput)
2622
+ end)
2623
+
2624
+ api.add_operation(:head_bucket, Seahorse::Model::Operation.new.tap do |o|
2625
+ o.name = "HeadBucket"
2626
+ o.http_method = "HEAD"
2627
+ o.http_request_uri = "/{Bucket}"
2628
+ o.input = Shapes::ShapeRef.new(shape: HeadBucketRequest)
2629
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2630
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
2631
+ end)
2632
+
2633
+ api.add_operation(:head_object, Seahorse::Model::Operation.new.tap do |o|
2634
+ o.name = "HeadObject"
2635
+ o.http_method = "HEAD"
2636
+ o.http_request_uri = "/{Bucket}/{Key+}"
2637
+ o.input = Shapes::ShapeRef.new(shape: HeadObjectRequest)
2638
+ o.output = Shapes::ShapeRef.new(shape: HeadObjectOutput)
2639
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
2640
+ end)
2641
+
2642
+ api.add_operation(:list_bucket_analytics_configurations, Seahorse::Model::Operation.new.tap do |o|
2643
+ o.name = "ListBucketAnalyticsConfigurations"
2644
+ o.http_method = "GET"
2645
+ o.http_request_uri = "/{Bucket}?analytics"
2646
+ o.input = Shapes::ShapeRef.new(shape: ListBucketAnalyticsConfigurationsRequest)
2647
+ o.output = Shapes::ShapeRef.new(shape: ListBucketAnalyticsConfigurationsOutput)
2648
+ end)
2649
+
2650
+ api.add_operation(:list_bucket_inventory_configurations, Seahorse::Model::Operation.new.tap do |o|
2651
+ o.name = "ListBucketInventoryConfigurations"
2652
+ o.http_method = "GET"
2653
+ o.http_request_uri = "/{Bucket}?inventory"
2654
+ o.input = Shapes::ShapeRef.new(shape: ListBucketInventoryConfigurationsRequest)
2655
+ o.output = Shapes::ShapeRef.new(shape: ListBucketInventoryConfigurationsOutput)
2656
+ end)
2657
+
2658
+ api.add_operation(:list_bucket_metrics_configurations, Seahorse::Model::Operation.new.tap do |o|
2659
+ o.name = "ListBucketMetricsConfigurations"
2660
+ o.http_method = "GET"
2661
+ o.http_request_uri = "/{Bucket}?metrics"
2662
+ o.input = Shapes::ShapeRef.new(shape: ListBucketMetricsConfigurationsRequest)
2663
+ o.output = Shapes::ShapeRef.new(shape: ListBucketMetricsConfigurationsOutput)
2664
+ end)
2665
+
2666
+ api.add_operation(:list_buckets, Seahorse::Model::Operation.new.tap do |o|
2667
+ o.name = "ListBuckets"
2668
+ o.http_method = "GET"
2669
+ o.http_request_uri = "/"
2670
+ o.input = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2671
+ o.output = Shapes::ShapeRef.new(shape: ListBucketsOutput)
2672
+ end)
2673
+
2674
+ api.add_operation(:list_multipart_uploads, Seahorse::Model::Operation.new.tap do |o|
2675
+ o.name = "ListMultipartUploads"
2676
+ o.http_method = "GET"
2677
+ o.http_request_uri = "/{Bucket}?uploads"
2678
+ o.input = Shapes::ShapeRef.new(shape: ListMultipartUploadsRequest)
2679
+ o.output = Shapes::ShapeRef.new(shape: ListMultipartUploadsOutput)
2680
+ o[:pager] = Aws::Pager.new(
2681
+ more_results: "is_truncated",
2682
+ limit_key: "max_uploads",
2683
+ tokens: {
2684
+ "next_key_marker" => "key_marker",
2685
+ "next_upload_id_marker" => "upload_id_marker"
2686
+ }
2687
+ )
2688
+ end)
2689
+
2690
+ api.add_operation(:list_object_versions, Seahorse::Model::Operation.new.tap do |o|
2691
+ o.name = "ListObjectVersions"
2692
+ o.http_method = "GET"
2693
+ o.http_request_uri = "/{Bucket}?versions"
2694
+ o.input = Shapes::ShapeRef.new(shape: ListObjectVersionsRequest)
2695
+ o.output = Shapes::ShapeRef.new(shape: ListObjectVersionsOutput)
2696
+ o[:pager] = Aws::Pager.new(
2697
+ more_results: "is_truncated",
2698
+ limit_key: "max_keys",
2699
+ tokens: {
2700
+ "next_key_marker" => "key_marker",
2701
+ "next_version_id_marker" => "version_id_marker"
2702
+ }
2703
+ )
2704
+ end)
2705
+
2706
+ api.add_operation(:list_objects, Seahorse::Model::Operation.new.tap do |o|
2707
+ o.name = "ListObjects"
2708
+ o.http_method = "GET"
2709
+ o.http_request_uri = "/{Bucket}"
2710
+ o.input = Shapes::ShapeRef.new(shape: ListObjectsRequest)
2711
+ o.output = Shapes::ShapeRef.new(shape: ListObjectsOutput)
2712
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
2713
+ o[:pager] = Aws::Pager.new(
2714
+ more_results: "is_truncated",
2715
+ limit_key: "max_keys",
2716
+ tokens: {
2717
+ "next_marker || contents[-1].key" => "marker"
2718
+ }
2719
+ )
2720
+ end)
2721
+
2722
+ api.add_operation(:list_objects_v2, Seahorse::Model::Operation.new.tap do |o|
2723
+ o.name = "ListObjectsV2"
2724
+ o.http_method = "GET"
2725
+ o.http_request_uri = "/{Bucket}?list-type=2"
2726
+ o.input = Shapes::ShapeRef.new(shape: ListObjectsV2Request)
2727
+ o.output = Shapes::ShapeRef.new(shape: ListObjectsV2Output)
2728
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
2729
+ o[:pager] = Aws::Pager.new(
2730
+ limit_key: "max_keys",
2731
+ tokens: {
2732
+ "next_continuation_token" => "continuation_token"
2733
+ }
2734
+ )
2735
+ end)
2736
+
2737
+ api.add_operation(:list_parts, Seahorse::Model::Operation.new.tap do |o|
2738
+ o.name = "ListParts"
2739
+ o.http_method = "GET"
2740
+ o.http_request_uri = "/{Bucket}/{Key+}"
2741
+ o.input = Shapes::ShapeRef.new(shape: ListPartsRequest)
2742
+ o.output = Shapes::ShapeRef.new(shape: ListPartsOutput)
2743
+ o[:pager] = Aws::Pager.new(
2744
+ more_results: "is_truncated",
2745
+ limit_key: "max_parts",
2746
+ tokens: {
2747
+ "next_part_number_marker" => "part_number_marker"
2748
+ }
2749
+ )
2750
+ end)
2751
+
2752
+ api.add_operation(:put_bucket_accelerate_configuration, Seahorse::Model::Operation.new.tap do |o|
2753
+ o.name = "PutBucketAccelerateConfiguration"
2754
+ o.http_method = "PUT"
2755
+ o.http_request_uri = "/{Bucket}?accelerate"
2756
+ o.input = Shapes::ShapeRef.new(shape: PutBucketAccelerateConfigurationRequest)
2757
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2758
+ end)
2759
+
2760
+ api.add_operation(:put_bucket_acl, Seahorse::Model::Operation.new.tap do |o|
2761
+ o.name = "PutBucketAcl"
2762
+ o.http_method = "PUT"
2763
+ o.http_request_uri = "/{Bucket}?acl"
2764
+ o.http_checksum_required = true
2765
+ o.input = Shapes::ShapeRef.new(shape: PutBucketAclRequest)
2766
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2767
+ end)
2768
+
2769
+ api.add_operation(:put_bucket_analytics_configuration, Seahorse::Model::Operation.new.tap do |o|
2770
+ o.name = "PutBucketAnalyticsConfiguration"
2771
+ o.http_method = "PUT"
2772
+ o.http_request_uri = "/{Bucket}?analytics"
2773
+ o.input = Shapes::ShapeRef.new(shape: PutBucketAnalyticsConfigurationRequest)
2774
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2775
+ end)
2776
+
2777
+ api.add_operation(:put_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
2778
+ o.name = "PutBucketCors"
2779
+ o.http_method = "PUT"
2780
+ o.http_request_uri = "/{Bucket}?cors"
2781
+ o.http_checksum_required = true
2782
+ o.input = Shapes::ShapeRef.new(shape: PutBucketCorsRequest)
2783
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2784
+ end)
2785
+
2786
+ api.add_operation(:put_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
2787
+ o.name = "PutBucketEncryption"
2788
+ o.http_method = "PUT"
2789
+ o.http_request_uri = "/{Bucket}?encryption"
2790
+ o.http_checksum_required = true
2791
+ o.input = Shapes::ShapeRef.new(shape: PutBucketEncryptionRequest)
2792
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2793
+ end)
2794
+
2795
+ api.add_operation(:put_bucket_inventory_configuration, Seahorse::Model::Operation.new.tap do |o|
2796
+ o.name = "PutBucketInventoryConfiguration"
2797
+ o.http_method = "PUT"
2798
+ o.http_request_uri = "/{Bucket}?inventory"
2799
+ o.input = Shapes::ShapeRef.new(shape: PutBucketInventoryConfigurationRequest)
2800
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2801
+ end)
2802
+
2803
+ api.add_operation(:put_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
2804
+ o.name = "PutBucketLifecycle"
2805
+ o.http_method = "PUT"
2806
+ o.http_request_uri = "/{Bucket}?lifecycle"
2807
+ o.http_checksum_required = true
2808
+ o.deprecated = true
2809
+ o.input = Shapes::ShapeRef.new(shape: PutBucketLifecycleRequest)
2810
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2811
+ end)
2812
+
2813
+ api.add_operation(:put_bucket_lifecycle_configuration, Seahorse::Model::Operation.new.tap do |o|
2814
+ o.name = "PutBucketLifecycleConfiguration"
2815
+ o.http_method = "PUT"
2816
+ o.http_request_uri = "/{Bucket}?lifecycle"
2817
+ o.http_checksum_required = true
2818
+ o.input = Shapes::ShapeRef.new(shape: PutBucketLifecycleConfigurationRequest)
2819
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2820
+ end)
2821
+
2822
+ api.add_operation(:put_bucket_logging, Seahorse::Model::Operation.new.tap do |o|
2823
+ o.name = "PutBucketLogging"
2824
+ o.http_method = "PUT"
2825
+ o.http_request_uri = "/{Bucket}?logging"
2826
+ o.http_checksum_required = true
2827
+ o.input = Shapes::ShapeRef.new(shape: PutBucketLoggingRequest)
2828
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2829
+ end)
2830
+
2831
+ api.add_operation(:put_bucket_metrics_configuration, Seahorse::Model::Operation.new.tap do |o|
2832
+ o.name = "PutBucketMetricsConfiguration"
2833
+ o.http_method = "PUT"
2834
+ o.http_request_uri = "/{Bucket}?metrics"
2835
+ o.input = Shapes::ShapeRef.new(shape: PutBucketMetricsConfigurationRequest)
2836
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2837
+ end)
2838
+
2839
+ api.add_operation(:put_bucket_notification, Seahorse::Model::Operation.new.tap do |o|
2840
+ o.name = "PutBucketNotification"
2841
+ o.http_method = "PUT"
2842
+ o.http_request_uri = "/{Bucket}?notification"
2843
+ o.http_checksum_required = true
2844
+ o.deprecated = true
2845
+ o.input = Shapes::ShapeRef.new(shape: PutBucketNotificationRequest)
2846
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2847
+ end)
2848
+
2849
+ api.add_operation(:put_bucket_notification_configuration, Seahorse::Model::Operation.new.tap do |o|
2850
+ o.name = "PutBucketNotificationConfiguration"
2851
+ o.http_method = "PUT"
2852
+ o.http_request_uri = "/{Bucket}?notification"
2853
+ o.input = Shapes::ShapeRef.new(shape: PutBucketNotificationConfigurationRequest)
2854
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2855
+ end)
2856
+
2857
+ api.add_operation(:put_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
2858
+ o.name = "PutBucketPolicy"
2859
+ o.http_method = "PUT"
2860
+ o.http_request_uri = "/{Bucket}?policy"
2861
+ o.http_checksum_required = true
2862
+ o.input = Shapes::ShapeRef.new(shape: PutBucketPolicyRequest)
2863
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2864
+ end)
2865
+
2866
+ api.add_operation(:put_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
2867
+ o.name = "PutBucketReplication"
2868
+ o.http_method = "PUT"
2869
+ o.http_request_uri = "/{Bucket}?replication"
2870
+ o.http_checksum_required = true
2871
+ o.input = Shapes::ShapeRef.new(shape: PutBucketReplicationRequest)
2872
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2873
+ end)
2874
+
2875
+ api.add_operation(:put_bucket_request_payment, Seahorse::Model::Operation.new.tap do |o|
2876
+ o.name = "PutBucketRequestPayment"
2877
+ o.http_method = "PUT"
2878
+ o.http_request_uri = "/{Bucket}?requestPayment"
2879
+ o.http_checksum_required = true
2880
+ o.input = Shapes::ShapeRef.new(shape: PutBucketRequestPaymentRequest)
2881
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2882
+ end)
2883
+
2884
+ api.add_operation(:put_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
2885
+ o.name = "PutBucketTagging"
2886
+ o.http_method = "PUT"
2887
+ o.http_request_uri = "/{Bucket}?tagging"
2888
+ o.http_checksum_required = true
2889
+ o.input = Shapes::ShapeRef.new(shape: PutBucketTaggingRequest)
2890
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2891
+ end)
2892
+
2893
+ api.add_operation(:put_bucket_versioning, Seahorse::Model::Operation.new.tap do |o|
2894
+ o.name = "PutBucketVersioning"
2895
+ o.http_method = "PUT"
2896
+ o.http_request_uri = "/{Bucket}?versioning"
2897
+ o.http_checksum_required = true
2898
+ o.input = Shapes::ShapeRef.new(shape: PutBucketVersioningRequest)
2899
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2900
+ end)
2901
+
2902
+ api.add_operation(:put_bucket_website, Seahorse::Model::Operation.new.tap do |o|
2903
+ o.name = "PutBucketWebsite"
2904
+ o.http_method = "PUT"
2905
+ o.http_request_uri = "/{Bucket}?website"
2906
+ o.http_checksum_required = true
2907
+ o.input = Shapes::ShapeRef.new(shape: PutBucketWebsiteRequest)
2908
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2909
+ end)
2910
+
2911
+ api.add_operation(:put_object, Seahorse::Model::Operation.new.tap do |o|
2912
+ o.name = "PutObject"
2913
+ o.http_method = "PUT"
2914
+ o.http_request_uri = "/{Bucket}/{Key+}"
2915
+ o.input = Shapes::ShapeRef.new(shape: PutObjectRequest)
2916
+ o.output = Shapes::ShapeRef.new(shape: PutObjectOutput)
2917
+ end)
2918
+
2919
+ api.add_operation(:put_object_acl, Seahorse::Model::Operation.new.tap do |o|
2920
+ o.name = "PutObjectAcl"
2921
+ o.http_method = "PUT"
2922
+ o.http_request_uri = "/{Bucket}/{Key+}?acl"
2923
+ o.http_checksum_required = true
2924
+ o.input = Shapes::ShapeRef.new(shape: PutObjectAclRequest)
2925
+ o.output = Shapes::ShapeRef.new(shape: PutObjectAclOutput)
2926
+ o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
2927
+ end)
2928
+
2929
+ api.add_operation(:put_object_legal_hold, Seahorse::Model::Operation.new.tap do |o|
2930
+ o.name = "PutObjectLegalHold"
2931
+ o.http_method = "PUT"
2932
+ o.http_request_uri = "/{Bucket}/{Key+}?legal-hold"
2933
+ o.http_checksum_required = true
2934
+ o.input = Shapes::ShapeRef.new(shape: PutObjectLegalHoldRequest)
2935
+ o.output = Shapes::ShapeRef.new(shape: PutObjectLegalHoldOutput)
2936
+ end)
2937
+
2938
+ api.add_operation(:put_object_lock_configuration, Seahorse::Model::Operation.new.tap do |o|
2939
+ o.name = "PutObjectLockConfiguration"
2940
+ o.http_method = "PUT"
2941
+ o.http_request_uri = "/{Bucket}?object-lock"
2942
+ o.http_checksum_required = true
2943
+ o.input = Shapes::ShapeRef.new(shape: PutObjectLockConfigurationRequest)
2944
+ o.output = Shapes::ShapeRef.new(shape: PutObjectLockConfigurationOutput)
2945
+ end)
2946
+
2947
+ api.add_operation(:put_object_retention, Seahorse::Model::Operation.new.tap do |o|
2948
+ o.name = "PutObjectRetention"
2949
+ o.http_method = "PUT"
2950
+ o.http_request_uri = "/{Bucket}/{Key+}?retention"
2951
+ o.http_checksum_required = true
2952
+ o.input = Shapes::ShapeRef.new(shape: PutObjectRetentionRequest)
2953
+ o.output = Shapes::ShapeRef.new(shape: PutObjectRetentionOutput)
2954
+ end)
2955
+
2956
+ api.add_operation(:put_object_tagging, Seahorse::Model::Operation.new.tap do |o|
2957
+ o.name = "PutObjectTagging"
2958
+ o.http_method = "PUT"
2959
+ o.http_request_uri = "/{Bucket}/{Key+}?tagging"
2960
+ o.http_checksum_required = true
2961
+ o.input = Shapes::ShapeRef.new(shape: PutObjectTaggingRequest)
2962
+ o.output = Shapes::ShapeRef.new(shape: PutObjectTaggingOutput)
2963
+ end)
2964
+
2965
+ api.add_operation(:put_public_access_block, Seahorse::Model::Operation.new.tap do |o|
2966
+ o.name = "PutPublicAccessBlock"
2967
+ o.http_method = "PUT"
2968
+ o.http_request_uri = "/{Bucket}?publicAccessBlock"
2969
+ o.http_checksum_required = true
2970
+ o.input = Shapes::ShapeRef.new(shape: PutPublicAccessBlockRequest)
2971
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2972
+ end)
2973
+
2974
+ api.add_operation(:restore_object, Seahorse::Model::Operation.new.tap do |o|
2975
+ o.name = "RestoreObject"
2976
+ o.http_method = "POST"
2977
+ o.http_request_uri = "/{Bucket}/{Key+}?restore"
2978
+ o.input = Shapes::ShapeRef.new(shape: RestoreObjectRequest)
2979
+ o.output = Shapes::ShapeRef.new(shape: RestoreObjectOutput)
2980
+ o.errors << Shapes::ShapeRef.new(shape: ObjectAlreadyInActiveTierError)
2981
+ end)
2982
+
2983
+ api.add_operation(:select_object_content, Seahorse::Model::Operation.new.tap do |o|
2984
+ o.name = "SelectObjectContent"
2985
+ o.http_method = "POST"
2986
+ o.http_request_uri = "/{Bucket}/{Key+}?select&select-type=2"
2987
+ o.input = Shapes::ShapeRef.new(shape: SelectObjectContentRequest,
2988
+ location_name: "SelectObjectContentRequest",
2989
+ metadata: {
2990
+ "xmlNamespace" => {"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}
2991
+ }
2992
+ )
2993
+ o.output = Shapes::ShapeRef.new(shape: SelectObjectContentOutput)
2994
+ end)
2995
+
2996
+ api.add_operation(:upload_part, Seahorse::Model::Operation.new.tap do |o|
2997
+ o.name = "UploadPart"
2998
+ o.http_method = "PUT"
2999
+ o.http_request_uri = "/{Bucket}/{Key+}"
3000
+ o.input = Shapes::ShapeRef.new(shape: UploadPartRequest)
3001
+ o.output = Shapes::ShapeRef.new(shape: UploadPartOutput)
3002
+ end)
3003
+
3004
+ api.add_operation(:upload_part_copy, Seahorse::Model::Operation.new.tap do |o|
3005
+ o.name = "UploadPartCopy"
3006
+ o.http_method = "PUT"
3007
+ o.http_request_uri = "/{Bucket}/{Key+}"
3008
+ o.input = Shapes::ShapeRef.new(shape: UploadPartCopyRequest)
3009
+ o.output = Shapes::ShapeRef.new(shape: UploadPartCopyOutput)
3010
+ end)
3011
+ end
3012
+
3013
+ end
3014
+ end