aws-sdk-s3 1.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/lib/aws-sdk-s3.rb +66 -0
- data/lib/aws-sdk-s3/bucket.rb +595 -0
- data/lib/aws-sdk-s3/bucket_acl.rb +168 -0
- data/lib/aws-sdk-s3/bucket_cors.rb +146 -0
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +164 -0
- data/lib/aws-sdk-s3/bucket_logging.rb +142 -0
- data/lib/aws-sdk-s3/bucket_notification.rb +187 -0
- data/lib/aws-sdk-s3/bucket_policy.rb +138 -0
- data/lib/aws-sdk-s3/bucket_region_cache.rb +79 -0
- data/lib/aws-sdk-s3/bucket_request_payment.rb +128 -0
- data/lib/aws-sdk-s3/bucket_tagging.rb +143 -0
- data/lib/aws-sdk-s3/bucket_versioning.rb +188 -0
- data/lib/aws-sdk-s3/bucket_website.rb +177 -0
- data/lib/aws-sdk-s3/client.rb +3171 -0
- data/lib/aws-sdk-s3/client_api.rb +1991 -0
- data/lib/aws-sdk-s3/customizations.rb +29 -0
- data/lib/aws-sdk-s3/customizations/bucket.rb +127 -0
- data/lib/aws-sdk-s3/customizations/multipart_upload.rb +42 -0
- data/lib/aws-sdk-s3/customizations/object.rb +257 -0
- data/lib/aws-sdk-s3/customizations/object_summary.rb +65 -0
- data/lib/aws-sdk-s3/customizations/types/list_object_versions_output.rb +11 -0
- data/lib/aws-sdk-s3/encryption.rb +19 -0
- data/lib/aws-sdk-s3/encryption/client.rb +369 -0
- data/lib/aws-sdk-s3/encryption/decrypt_handler.rb +178 -0
- data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +63 -0
- data/lib/aws-sdk-s3/encryption/default_key_provider.rb +38 -0
- data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +50 -0
- data/lib/aws-sdk-s3/encryption/errors.rb +13 -0
- data/lib/aws-sdk-s3/encryption/io_auth_decrypter.rb +50 -0
- data/lib/aws-sdk-s3/encryption/io_decrypter.rb +29 -0
- data/lib/aws-sdk-s3/encryption/io_encrypter.rb +69 -0
- data/lib/aws-sdk-s3/encryption/key_provider.rb +29 -0
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +71 -0
- data/lib/aws-sdk-s3/encryption/materials.rb +58 -0
- data/lib/aws-sdk-s3/encryption/utils.rb +79 -0
- data/lib/aws-sdk-s3/errors.rb +23 -0
- data/lib/aws-sdk-s3/file_part.rb +75 -0
- data/lib/aws-sdk-s3/file_uploader.rb +58 -0
- data/lib/aws-sdk-s3/legacy_signer.rb +186 -0
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +187 -0
- data/lib/aws-sdk-s3/multipart_upload.rb +287 -0
- data/lib/aws-sdk-s3/multipart_upload_error.rb +16 -0
- data/lib/aws-sdk-s3/multipart_upload_part.rb +314 -0
- data/lib/aws-sdk-s3/object.rb +942 -0
- data/lib/aws-sdk-s3/object_acl.rb +214 -0
- data/lib/aws-sdk-s3/object_copier.rb +99 -0
- data/lib/aws-sdk-s3/object_multipart_copier.rb +179 -0
- data/lib/aws-sdk-s3/object_summary.rb +794 -0
- data/lib/aws-sdk-s3/object_version.rb +406 -0
- data/lib/aws-sdk-s3/plugins/accelerate.rb +92 -0
- data/lib/aws-sdk-s3/plugins/bucket_dns.rb +89 -0
- data/lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb +23 -0
- data/lib/aws-sdk-s3/plugins/dualstack.rb +70 -0
- data/lib/aws-sdk-s3/plugins/expect_100_continue.rb +29 -0
- data/lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb +23 -0
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +47 -0
- data/lib/aws-sdk-s3/plugins/location_constraint.rb +33 -0
- data/lib/aws-sdk-s3/plugins/md5s.rb +79 -0
- data/lib/aws-sdk-s3/plugins/redirects.rb +41 -0
- data/lib/aws-sdk-s3/plugins/s3_signer.rb +208 -0
- data/lib/aws-sdk-s3/plugins/sse_cpk.rb +68 -0
- data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +94 -0
- data/lib/aws-sdk-s3/presigned_post.rb +647 -0
- data/lib/aws-sdk-s3/presigner.rb +160 -0
- data/lib/aws-sdk-s3/resource.rb +96 -0
- data/lib/aws-sdk-s3/types.rb +5750 -0
- data/lib/aws-sdk-s3/waiters.rb +178 -0
- metadata +154 -0
@@ -0,0 +1,1991 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing for info on making contributions:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module S3
|
10
|
+
# @api private
|
11
|
+
module ClientApi
|
12
|
+
|
13
|
+
include Seahorse::Model
|
14
|
+
|
15
|
+
AbortDate = Shapes::TimestampShape.new(name: 'AbortDate')
|
16
|
+
AbortIncompleteMultipartUpload = Shapes::StructureShape.new(name: 'AbortIncompleteMultipartUpload')
|
17
|
+
AbortMultipartUploadOutput = Shapes::StructureShape.new(name: 'AbortMultipartUploadOutput')
|
18
|
+
AbortMultipartUploadRequest = Shapes::StructureShape.new(name: 'AbortMultipartUploadRequest')
|
19
|
+
AbortRuleId = Shapes::StringShape.new(name: 'AbortRuleId')
|
20
|
+
AccelerateConfiguration = Shapes::StructureShape.new(name: 'AccelerateConfiguration')
|
21
|
+
AcceptRanges = Shapes::StringShape.new(name: 'AcceptRanges')
|
22
|
+
AccessControlPolicy = Shapes::StructureShape.new(name: 'AccessControlPolicy')
|
23
|
+
AllowedHeader = Shapes::StringShape.new(name: 'AllowedHeader')
|
24
|
+
AllowedHeaders = Shapes::ListShape.new(name: 'AllowedHeaders', flattened: true)
|
25
|
+
AllowedMethod = Shapes::StringShape.new(name: 'AllowedMethod')
|
26
|
+
AllowedMethods = Shapes::ListShape.new(name: 'AllowedMethods', flattened: true)
|
27
|
+
AllowedOrigin = Shapes::StringShape.new(name: 'AllowedOrigin')
|
28
|
+
AllowedOrigins = Shapes::ListShape.new(name: 'AllowedOrigins', flattened: true)
|
29
|
+
Body = Shapes::BlobShape.new(name: 'Body')
|
30
|
+
Bucket = Shapes::StructureShape.new(name: 'Bucket')
|
31
|
+
BucketAccelerateStatus = Shapes::StringShape.new(name: 'BucketAccelerateStatus')
|
32
|
+
BucketAlreadyExists = Shapes::StructureShape.new(name: 'BucketAlreadyExists')
|
33
|
+
BucketAlreadyOwnedByYou = Shapes::StructureShape.new(name: 'BucketAlreadyOwnedByYou')
|
34
|
+
BucketCannedACL = Shapes::StringShape.new(name: 'BucketCannedACL')
|
35
|
+
BucketLifecycleConfiguration = Shapes::StructureShape.new(name: 'BucketLifecycleConfiguration')
|
36
|
+
BucketLocationConstraint = Shapes::StringShape.new(name: 'BucketLocationConstraint')
|
37
|
+
BucketLoggingStatus = Shapes::StructureShape.new(name: 'BucketLoggingStatus')
|
38
|
+
BucketLogsPermission = Shapes::StringShape.new(name: 'BucketLogsPermission')
|
39
|
+
BucketName = Shapes::StringShape.new(name: 'BucketName')
|
40
|
+
BucketVersioningStatus = Shapes::StringShape.new(name: 'BucketVersioningStatus')
|
41
|
+
Buckets = Shapes::ListShape.new(name: 'Buckets')
|
42
|
+
CORSConfiguration = Shapes::StructureShape.new(name: 'CORSConfiguration')
|
43
|
+
CORSRule = Shapes::StructureShape.new(name: 'CORSRule')
|
44
|
+
CORSRules = Shapes::ListShape.new(name: 'CORSRules', flattened: true)
|
45
|
+
CacheControl = Shapes::StringShape.new(name: 'CacheControl')
|
46
|
+
CloudFunction = Shapes::StringShape.new(name: 'CloudFunction')
|
47
|
+
CloudFunctionConfiguration = Shapes::StructureShape.new(name: 'CloudFunctionConfiguration')
|
48
|
+
CloudFunctionInvocationRole = Shapes::StringShape.new(name: 'CloudFunctionInvocationRole')
|
49
|
+
Code = Shapes::StringShape.new(name: 'Code')
|
50
|
+
CommonPrefix = Shapes::StructureShape.new(name: 'CommonPrefix')
|
51
|
+
CommonPrefixList = Shapes::ListShape.new(name: 'CommonPrefixList', flattened: true)
|
52
|
+
CompleteMultipartUploadOutput = Shapes::StructureShape.new(name: 'CompleteMultipartUploadOutput')
|
53
|
+
CompleteMultipartUploadRequest = Shapes::StructureShape.new(name: 'CompleteMultipartUploadRequest')
|
54
|
+
CompletedMultipartUpload = Shapes::StructureShape.new(name: 'CompletedMultipartUpload')
|
55
|
+
CompletedPart = Shapes::StructureShape.new(name: 'CompletedPart')
|
56
|
+
CompletedPartList = Shapes::ListShape.new(name: 'CompletedPartList', flattened: true)
|
57
|
+
Condition = Shapes::StructureShape.new(name: 'Condition')
|
58
|
+
ContentDisposition = Shapes::StringShape.new(name: 'ContentDisposition')
|
59
|
+
ContentEncoding = Shapes::StringShape.new(name: 'ContentEncoding')
|
60
|
+
ContentLanguage = Shapes::StringShape.new(name: 'ContentLanguage')
|
61
|
+
ContentLength = Shapes::IntegerShape.new(name: 'ContentLength')
|
62
|
+
ContentMD5 = Shapes::StringShape.new(name: 'ContentMD5')
|
63
|
+
ContentRange = Shapes::StringShape.new(name: 'ContentRange')
|
64
|
+
ContentType = Shapes::StringShape.new(name: 'ContentType')
|
65
|
+
CopyObjectOutput = Shapes::StructureShape.new(name: 'CopyObjectOutput')
|
66
|
+
CopyObjectRequest = Shapes::StructureShape.new(name: 'CopyObjectRequest')
|
67
|
+
CopyObjectResult = Shapes::StructureShape.new(name: 'CopyObjectResult')
|
68
|
+
CopyPartResult = Shapes::StructureShape.new(name: 'CopyPartResult')
|
69
|
+
CopySource = Shapes::StringShape.new(name: 'CopySource')
|
70
|
+
CopySourceIfMatch = Shapes::StringShape.new(name: 'CopySourceIfMatch')
|
71
|
+
CopySourceIfModifiedSince = Shapes::TimestampShape.new(name: 'CopySourceIfModifiedSince')
|
72
|
+
CopySourceIfNoneMatch = Shapes::StringShape.new(name: 'CopySourceIfNoneMatch')
|
73
|
+
CopySourceIfUnmodifiedSince = Shapes::TimestampShape.new(name: 'CopySourceIfUnmodifiedSince')
|
74
|
+
CopySourceRange = Shapes::StringShape.new(name: 'CopySourceRange')
|
75
|
+
CopySourceSSECustomerAlgorithm = Shapes::StringShape.new(name: 'CopySourceSSECustomerAlgorithm')
|
76
|
+
CopySourceSSECustomerKey = Shapes::StringShape.new(name: 'CopySourceSSECustomerKey')
|
77
|
+
CopySourceSSECustomerKeyMD5 = Shapes::StringShape.new(name: 'CopySourceSSECustomerKeyMD5')
|
78
|
+
CopySourceVersionId = Shapes::StringShape.new(name: 'CopySourceVersionId')
|
79
|
+
CreateBucketConfiguration = Shapes::StructureShape.new(name: 'CreateBucketConfiguration')
|
80
|
+
CreateBucketOutput = Shapes::StructureShape.new(name: 'CreateBucketOutput')
|
81
|
+
CreateBucketRequest = Shapes::StructureShape.new(name: 'CreateBucketRequest')
|
82
|
+
CreateMultipartUploadOutput = Shapes::StructureShape.new(name: 'CreateMultipartUploadOutput')
|
83
|
+
CreateMultipartUploadRequest = Shapes::StructureShape.new(name: 'CreateMultipartUploadRequest')
|
84
|
+
CreationDate = Shapes::TimestampShape.new(name: 'CreationDate')
|
85
|
+
Date = Shapes::TimestampShape.new(name: 'Date', timestampFormat: "iso8601")
|
86
|
+
Days = Shapes::IntegerShape.new(name: 'Days')
|
87
|
+
DaysAfterInitiation = Shapes::IntegerShape.new(name: 'DaysAfterInitiation')
|
88
|
+
Delete = Shapes::StructureShape.new(name: 'Delete')
|
89
|
+
DeleteBucketCorsRequest = Shapes::StructureShape.new(name: 'DeleteBucketCorsRequest')
|
90
|
+
DeleteBucketLifecycleRequest = Shapes::StructureShape.new(name: 'DeleteBucketLifecycleRequest')
|
91
|
+
DeleteBucketPolicyRequest = Shapes::StructureShape.new(name: 'DeleteBucketPolicyRequest')
|
92
|
+
DeleteBucketReplicationRequest = Shapes::StructureShape.new(name: 'DeleteBucketReplicationRequest')
|
93
|
+
DeleteBucketRequest = Shapes::StructureShape.new(name: 'DeleteBucketRequest')
|
94
|
+
DeleteBucketTaggingRequest = Shapes::StructureShape.new(name: 'DeleteBucketTaggingRequest')
|
95
|
+
DeleteBucketWebsiteRequest = Shapes::StructureShape.new(name: 'DeleteBucketWebsiteRequest')
|
96
|
+
DeleteMarker = Shapes::BooleanShape.new(name: 'DeleteMarker')
|
97
|
+
DeleteMarkerEntry = Shapes::StructureShape.new(name: 'DeleteMarkerEntry')
|
98
|
+
DeleteMarkerVersionId = Shapes::StringShape.new(name: 'DeleteMarkerVersionId')
|
99
|
+
DeleteMarkers = Shapes::ListShape.new(name: 'DeleteMarkers', flattened: true)
|
100
|
+
DeleteObjectOutput = Shapes::StructureShape.new(name: 'DeleteObjectOutput')
|
101
|
+
DeleteObjectRequest = Shapes::StructureShape.new(name: 'DeleteObjectRequest')
|
102
|
+
DeleteObjectsOutput = Shapes::StructureShape.new(name: 'DeleteObjectsOutput')
|
103
|
+
DeleteObjectsRequest = Shapes::StructureShape.new(name: 'DeleteObjectsRequest')
|
104
|
+
DeletedObject = Shapes::StructureShape.new(name: 'DeletedObject')
|
105
|
+
DeletedObjects = Shapes::ListShape.new(name: 'DeletedObjects', flattened: true)
|
106
|
+
Delimiter = Shapes::StringShape.new(name: 'Delimiter')
|
107
|
+
Destination = Shapes::StructureShape.new(name: 'Destination')
|
108
|
+
DisplayName = Shapes::StringShape.new(name: 'DisplayName')
|
109
|
+
ETag = Shapes::StringShape.new(name: 'ETag')
|
110
|
+
EmailAddress = Shapes::StringShape.new(name: 'EmailAddress')
|
111
|
+
EncodingType = Shapes::StringShape.new(name: 'EncodingType')
|
112
|
+
Error = Shapes::StructureShape.new(name: 'Error')
|
113
|
+
ErrorDocument = Shapes::StructureShape.new(name: 'ErrorDocument')
|
114
|
+
Errors = Shapes::ListShape.new(name: 'Errors', flattened: true)
|
115
|
+
Event = Shapes::StringShape.new(name: 'Event')
|
116
|
+
EventList = Shapes::ListShape.new(name: 'EventList', flattened: true)
|
117
|
+
Expiration = Shapes::StringShape.new(name: 'Expiration')
|
118
|
+
ExpirationStatus = Shapes::StringShape.new(name: 'ExpirationStatus')
|
119
|
+
ExpiredObjectDeleteMarker = Shapes::BooleanShape.new(name: 'ExpiredObjectDeleteMarker')
|
120
|
+
Expires = Shapes::TimestampShape.new(name: 'Expires')
|
121
|
+
ExpiresString = Shapes::StringShape.new(name: 'ExpiresString')
|
122
|
+
ExposeHeader = Shapes::StringShape.new(name: 'ExposeHeader')
|
123
|
+
ExposeHeaders = Shapes::ListShape.new(name: 'ExposeHeaders', flattened: true)
|
124
|
+
FetchOwner = Shapes::BooleanShape.new(name: 'FetchOwner')
|
125
|
+
FilterRule = Shapes::StructureShape.new(name: 'FilterRule')
|
126
|
+
FilterRuleList = Shapes::ListShape.new(name: 'FilterRuleList', flattened: true)
|
127
|
+
FilterRuleName = Shapes::StringShape.new(name: 'FilterRuleName')
|
128
|
+
FilterRuleValue = Shapes::StringShape.new(name: 'FilterRuleValue')
|
129
|
+
GetBucketAccelerateConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketAccelerateConfigurationOutput')
|
130
|
+
GetBucketAccelerateConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketAccelerateConfigurationRequest')
|
131
|
+
GetBucketAclOutput = Shapes::StructureShape.new(name: 'GetBucketAclOutput')
|
132
|
+
GetBucketAclRequest = Shapes::StructureShape.new(name: 'GetBucketAclRequest')
|
133
|
+
GetBucketCorsOutput = Shapes::StructureShape.new(name: 'GetBucketCorsOutput')
|
134
|
+
GetBucketCorsRequest = Shapes::StructureShape.new(name: 'GetBucketCorsRequest')
|
135
|
+
GetBucketLifecycleConfigurationOutput = Shapes::StructureShape.new(name: 'GetBucketLifecycleConfigurationOutput')
|
136
|
+
GetBucketLifecycleConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketLifecycleConfigurationRequest')
|
137
|
+
GetBucketLifecycleOutput = Shapes::StructureShape.new(name: 'GetBucketLifecycleOutput')
|
138
|
+
GetBucketLifecycleRequest = Shapes::StructureShape.new(name: 'GetBucketLifecycleRequest')
|
139
|
+
GetBucketLocationOutput = Shapes::StructureShape.new(name: 'GetBucketLocationOutput')
|
140
|
+
GetBucketLocationRequest = Shapes::StructureShape.new(name: 'GetBucketLocationRequest')
|
141
|
+
GetBucketLoggingOutput = Shapes::StructureShape.new(name: 'GetBucketLoggingOutput')
|
142
|
+
GetBucketLoggingRequest = Shapes::StructureShape.new(name: 'GetBucketLoggingRequest')
|
143
|
+
GetBucketNotificationConfigurationRequest = Shapes::StructureShape.new(name: 'GetBucketNotificationConfigurationRequest')
|
144
|
+
GetBucketPolicyOutput = Shapes::StructureShape.new(name: 'GetBucketPolicyOutput')
|
145
|
+
GetBucketPolicyRequest = Shapes::StructureShape.new(name: 'GetBucketPolicyRequest')
|
146
|
+
GetBucketReplicationOutput = Shapes::StructureShape.new(name: 'GetBucketReplicationOutput')
|
147
|
+
GetBucketReplicationRequest = Shapes::StructureShape.new(name: 'GetBucketReplicationRequest')
|
148
|
+
GetBucketRequestPaymentOutput = Shapes::StructureShape.new(name: 'GetBucketRequestPaymentOutput')
|
149
|
+
GetBucketRequestPaymentRequest = Shapes::StructureShape.new(name: 'GetBucketRequestPaymentRequest')
|
150
|
+
GetBucketTaggingOutput = Shapes::StructureShape.new(name: 'GetBucketTaggingOutput')
|
151
|
+
GetBucketTaggingRequest = Shapes::StructureShape.new(name: 'GetBucketTaggingRequest')
|
152
|
+
GetBucketVersioningOutput = Shapes::StructureShape.new(name: 'GetBucketVersioningOutput')
|
153
|
+
GetBucketVersioningRequest = Shapes::StructureShape.new(name: 'GetBucketVersioningRequest')
|
154
|
+
GetBucketWebsiteOutput = Shapes::StructureShape.new(name: 'GetBucketWebsiteOutput')
|
155
|
+
GetBucketWebsiteRequest = Shapes::StructureShape.new(name: 'GetBucketWebsiteRequest')
|
156
|
+
GetObjectAclOutput = Shapes::StructureShape.new(name: 'GetObjectAclOutput')
|
157
|
+
GetObjectAclRequest = Shapes::StructureShape.new(name: 'GetObjectAclRequest')
|
158
|
+
GetObjectOutput = Shapes::StructureShape.new(name: 'GetObjectOutput')
|
159
|
+
GetObjectRequest = Shapes::StructureShape.new(name: 'GetObjectRequest')
|
160
|
+
GetObjectTorrentOutput = Shapes::StructureShape.new(name: 'GetObjectTorrentOutput')
|
161
|
+
GetObjectTorrentRequest = Shapes::StructureShape.new(name: 'GetObjectTorrentRequest')
|
162
|
+
GlacierJobParameters = Shapes::StructureShape.new(name: 'GlacierJobParameters')
|
163
|
+
Grant = Shapes::StructureShape.new(name: 'Grant')
|
164
|
+
GrantFullControl = Shapes::StringShape.new(name: 'GrantFullControl')
|
165
|
+
GrantRead = Shapes::StringShape.new(name: 'GrantRead')
|
166
|
+
GrantReadACP = Shapes::StringShape.new(name: 'GrantReadACP')
|
167
|
+
GrantWrite = Shapes::StringShape.new(name: 'GrantWrite')
|
168
|
+
GrantWriteACP = Shapes::StringShape.new(name: 'GrantWriteACP')
|
169
|
+
Grantee = Shapes::StructureShape.new(name: 'Grantee', xmlNamespace: {"prefix"=>"xsi", "uri"=>"http://www.w3.org/2001/XMLSchema-instance"})
|
170
|
+
Grants = Shapes::ListShape.new(name: 'Grants')
|
171
|
+
HeadBucketRequest = Shapes::StructureShape.new(name: 'HeadBucketRequest')
|
172
|
+
HeadObjectOutput = Shapes::StructureShape.new(name: 'HeadObjectOutput')
|
173
|
+
HeadObjectRequest = Shapes::StructureShape.new(name: 'HeadObjectRequest')
|
174
|
+
HostName = Shapes::StringShape.new(name: 'HostName')
|
175
|
+
HttpErrorCodeReturnedEquals = Shapes::StringShape.new(name: 'HttpErrorCodeReturnedEquals')
|
176
|
+
HttpRedirectCode = Shapes::StringShape.new(name: 'HttpRedirectCode')
|
177
|
+
ID = Shapes::StringShape.new(name: 'ID')
|
178
|
+
IfMatch = Shapes::StringShape.new(name: 'IfMatch')
|
179
|
+
IfModifiedSince = Shapes::TimestampShape.new(name: 'IfModifiedSince')
|
180
|
+
IfNoneMatch = Shapes::StringShape.new(name: 'IfNoneMatch')
|
181
|
+
IfUnmodifiedSince = Shapes::TimestampShape.new(name: 'IfUnmodifiedSince')
|
182
|
+
IndexDocument = Shapes::StructureShape.new(name: 'IndexDocument')
|
183
|
+
Initiated = Shapes::TimestampShape.new(name: 'Initiated')
|
184
|
+
Initiator = Shapes::StructureShape.new(name: 'Initiator')
|
185
|
+
IsLatest = Shapes::BooleanShape.new(name: 'IsLatest')
|
186
|
+
IsTruncated = Shapes::BooleanShape.new(name: 'IsTruncated')
|
187
|
+
KeyCount = Shapes::IntegerShape.new(name: 'KeyCount')
|
188
|
+
KeyMarker = Shapes::StringShape.new(name: 'KeyMarker')
|
189
|
+
KeyPrefixEquals = Shapes::StringShape.new(name: 'KeyPrefixEquals')
|
190
|
+
LambdaFunctionArn = Shapes::StringShape.new(name: 'LambdaFunctionArn')
|
191
|
+
LambdaFunctionConfiguration = Shapes::StructureShape.new(name: 'LambdaFunctionConfiguration')
|
192
|
+
LambdaFunctionConfigurationList = Shapes::ListShape.new(name: 'LambdaFunctionConfigurationList', flattened: true)
|
193
|
+
LastModified = Shapes::TimestampShape.new(name: 'LastModified')
|
194
|
+
LifecycleConfiguration = Shapes::StructureShape.new(name: 'LifecycleConfiguration')
|
195
|
+
LifecycleExpiration = Shapes::StructureShape.new(name: 'LifecycleExpiration')
|
196
|
+
LifecycleRule = Shapes::StructureShape.new(name: 'LifecycleRule')
|
197
|
+
LifecycleRules = Shapes::ListShape.new(name: 'LifecycleRules', flattened: true)
|
198
|
+
ListBucketsOutput = Shapes::StructureShape.new(name: 'ListBucketsOutput')
|
199
|
+
ListMultipartUploadsOutput = Shapes::StructureShape.new(name: 'ListMultipartUploadsOutput')
|
200
|
+
ListMultipartUploadsRequest = Shapes::StructureShape.new(name: 'ListMultipartUploadsRequest')
|
201
|
+
ListObjectVersionsOutput = Shapes::StructureShape.new(name: 'ListObjectVersionsOutput')
|
202
|
+
ListObjectVersionsRequest = Shapes::StructureShape.new(name: 'ListObjectVersionsRequest')
|
203
|
+
ListObjectsOutput = Shapes::StructureShape.new(name: 'ListObjectsOutput')
|
204
|
+
ListObjectsRequest = Shapes::StructureShape.new(name: 'ListObjectsRequest')
|
205
|
+
ListObjectsV2Output = Shapes::StructureShape.new(name: 'ListObjectsV2Output')
|
206
|
+
ListObjectsV2Request = Shapes::StructureShape.new(name: 'ListObjectsV2Request')
|
207
|
+
ListPartsOutput = Shapes::StructureShape.new(name: 'ListPartsOutput')
|
208
|
+
ListPartsRequest = Shapes::StructureShape.new(name: 'ListPartsRequest')
|
209
|
+
Location = Shapes::StringShape.new(name: 'Location')
|
210
|
+
LoggingEnabled = Shapes::StructureShape.new(name: 'LoggingEnabled')
|
211
|
+
MFA = Shapes::StringShape.new(name: 'MFA')
|
212
|
+
MFADelete = Shapes::StringShape.new(name: 'MFADelete')
|
213
|
+
MFADeleteStatus = Shapes::StringShape.new(name: 'MFADeleteStatus')
|
214
|
+
Marker = Shapes::StringShape.new(name: 'Marker')
|
215
|
+
MaxAgeSeconds = Shapes::IntegerShape.new(name: 'MaxAgeSeconds')
|
216
|
+
MaxKeys = Shapes::IntegerShape.new(name: 'MaxKeys')
|
217
|
+
MaxParts = Shapes::IntegerShape.new(name: 'MaxParts')
|
218
|
+
MaxUploads = Shapes::IntegerShape.new(name: 'MaxUploads')
|
219
|
+
Message = Shapes::StringShape.new(name: 'Message')
|
220
|
+
Metadata = Shapes::MapShape.new(name: 'Metadata')
|
221
|
+
MetadataDirective = Shapes::StringShape.new(name: 'MetadataDirective')
|
222
|
+
MetadataKey = Shapes::StringShape.new(name: 'MetadataKey')
|
223
|
+
MetadataValue = Shapes::StringShape.new(name: 'MetadataValue')
|
224
|
+
MissingMeta = Shapes::IntegerShape.new(name: 'MissingMeta')
|
225
|
+
MultipartUpload = Shapes::StructureShape.new(name: 'MultipartUpload')
|
226
|
+
MultipartUploadId = Shapes::StringShape.new(name: 'MultipartUploadId')
|
227
|
+
MultipartUploadList = Shapes::ListShape.new(name: 'MultipartUploadList', flattened: true)
|
228
|
+
NextKeyMarker = Shapes::StringShape.new(name: 'NextKeyMarker')
|
229
|
+
NextMarker = Shapes::StringShape.new(name: 'NextMarker')
|
230
|
+
NextPartNumberMarker = Shapes::IntegerShape.new(name: 'NextPartNumberMarker')
|
231
|
+
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
232
|
+
NextUploadIdMarker = Shapes::StringShape.new(name: 'NextUploadIdMarker')
|
233
|
+
NextVersionIdMarker = Shapes::StringShape.new(name: 'NextVersionIdMarker')
|
234
|
+
NoSuchBucket = Shapes::StructureShape.new(name: 'NoSuchBucket')
|
235
|
+
NoSuchKey = Shapes::StructureShape.new(name: 'NoSuchKey')
|
236
|
+
NoSuchUpload = Shapes::StructureShape.new(name: 'NoSuchUpload')
|
237
|
+
NoncurrentVersionExpiration = Shapes::StructureShape.new(name: 'NoncurrentVersionExpiration')
|
238
|
+
NoncurrentVersionTransition = Shapes::StructureShape.new(name: 'NoncurrentVersionTransition')
|
239
|
+
NoncurrentVersionTransitionList = Shapes::ListShape.new(name: 'NoncurrentVersionTransitionList', flattened: true)
|
240
|
+
NotificationConfiguration = Shapes::StructureShape.new(name: 'NotificationConfiguration')
|
241
|
+
NotificationConfigurationDeprecated = Shapes::StructureShape.new(name: 'NotificationConfigurationDeprecated')
|
242
|
+
NotificationConfigurationFilter = Shapes::StructureShape.new(name: 'NotificationConfigurationFilter')
|
243
|
+
NotificationId = Shapes::StringShape.new(name: 'NotificationId')
|
244
|
+
Object = Shapes::StructureShape.new(name: 'Object')
|
245
|
+
ObjectAlreadyInActiveTierError = Shapes::StructureShape.new(name: 'ObjectAlreadyInActiveTierError')
|
246
|
+
ObjectCannedACL = Shapes::StringShape.new(name: 'ObjectCannedACL')
|
247
|
+
ObjectIdentifier = Shapes::StructureShape.new(name: 'ObjectIdentifier')
|
248
|
+
ObjectIdentifierList = Shapes::ListShape.new(name: 'ObjectIdentifierList', flattened: true)
|
249
|
+
ObjectKey = Shapes::StringShape.new(name: 'ObjectKey')
|
250
|
+
ObjectList = Shapes::ListShape.new(name: 'ObjectList', flattened: true)
|
251
|
+
ObjectNotInActiveTierError = Shapes::StructureShape.new(name: 'ObjectNotInActiveTierError')
|
252
|
+
ObjectStorageClass = Shapes::StringShape.new(name: 'ObjectStorageClass')
|
253
|
+
ObjectVersion = Shapes::StructureShape.new(name: 'ObjectVersion')
|
254
|
+
ObjectVersionId = Shapes::StringShape.new(name: 'ObjectVersionId')
|
255
|
+
ObjectVersionList = Shapes::ListShape.new(name: 'ObjectVersionList', flattened: true)
|
256
|
+
ObjectVersionStorageClass = Shapes::StringShape.new(name: 'ObjectVersionStorageClass')
|
257
|
+
Owner = Shapes::StructureShape.new(name: 'Owner')
|
258
|
+
Part = Shapes::StructureShape.new(name: 'Part')
|
259
|
+
PartNumber = Shapes::IntegerShape.new(name: 'PartNumber')
|
260
|
+
PartNumberMarker = Shapes::IntegerShape.new(name: 'PartNumberMarker')
|
261
|
+
Parts = Shapes::ListShape.new(name: 'Parts', flattened: true)
|
262
|
+
PartsCount = Shapes::IntegerShape.new(name: 'PartsCount')
|
263
|
+
Payer = Shapes::StringShape.new(name: 'Payer')
|
264
|
+
Permission = Shapes::StringShape.new(name: 'Permission')
|
265
|
+
Policy = Shapes::StringShape.new(name: 'Policy')
|
266
|
+
Prefix = Shapes::StringShape.new(name: 'Prefix')
|
267
|
+
Protocol = Shapes::StringShape.new(name: 'Protocol')
|
268
|
+
PutBucketAccelerateConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketAccelerateConfigurationRequest')
|
269
|
+
PutBucketAclRequest = Shapes::StructureShape.new(name: 'PutBucketAclRequest')
|
270
|
+
PutBucketCorsRequest = Shapes::StructureShape.new(name: 'PutBucketCorsRequest')
|
271
|
+
PutBucketLifecycleConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketLifecycleConfigurationRequest')
|
272
|
+
PutBucketLifecycleRequest = Shapes::StructureShape.new(name: 'PutBucketLifecycleRequest')
|
273
|
+
PutBucketLoggingRequest = Shapes::StructureShape.new(name: 'PutBucketLoggingRequest')
|
274
|
+
PutBucketNotificationConfigurationRequest = Shapes::StructureShape.new(name: 'PutBucketNotificationConfigurationRequest')
|
275
|
+
PutBucketNotificationRequest = Shapes::StructureShape.new(name: 'PutBucketNotificationRequest')
|
276
|
+
PutBucketPolicyRequest = Shapes::StructureShape.new(name: 'PutBucketPolicyRequest')
|
277
|
+
PutBucketReplicationRequest = Shapes::StructureShape.new(name: 'PutBucketReplicationRequest')
|
278
|
+
PutBucketRequestPaymentRequest = Shapes::StructureShape.new(name: 'PutBucketRequestPaymentRequest')
|
279
|
+
PutBucketTaggingRequest = Shapes::StructureShape.new(name: 'PutBucketTaggingRequest')
|
280
|
+
PutBucketVersioningRequest = Shapes::StructureShape.new(name: 'PutBucketVersioningRequest')
|
281
|
+
PutBucketWebsiteRequest = Shapes::StructureShape.new(name: 'PutBucketWebsiteRequest')
|
282
|
+
PutObjectAclOutput = Shapes::StructureShape.new(name: 'PutObjectAclOutput')
|
283
|
+
PutObjectAclRequest = Shapes::StructureShape.new(name: 'PutObjectAclRequest')
|
284
|
+
PutObjectOutput = Shapes::StructureShape.new(name: 'PutObjectOutput')
|
285
|
+
PutObjectRequest = Shapes::StructureShape.new(name: 'PutObjectRequest')
|
286
|
+
QueueArn = Shapes::StringShape.new(name: 'QueueArn')
|
287
|
+
QueueConfiguration = Shapes::StructureShape.new(name: 'QueueConfiguration')
|
288
|
+
QueueConfigurationDeprecated = Shapes::StructureShape.new(name: 'QueueConfigurationDeprecated')
|
289
|
+
QueueConfigurationList = Shapes::ListShape.new(name: 'QueueConfigurationList', flattened: true)
|
290
|
+
Quiet = Shapes::BooleanShape.new(name: 'Quiet')
|
291
|
+
Range = Shapes::StringShape.new(name: 'Range')
|
292
|
+
Redirect = Shapes::StructureShape.new(name: 'Redirect')
|
293
|
+
RedirectAllRequestsTo = Shapes::StructureShape.new(name: 'RedirectAllRequestsTo')
|
294
|
+
ReplaceKeyPrefixWith = Shapes::StringShape.new(name: 'ReplaceKeyPrefixWith')
|
295
|
+
ReplaceKeyWith = Shapes::StringShape.new(name: 'ReplaceKeyWith')
|
296
|
+
ReplicationConfiguration = Shapes::StructureShape.new(name: 'ReplicationConfiguration')
|
297
|
+
ReplicationRule = Shapes::StructureShape.new(name: 'ReplicationRule')
|
298
|
+
ReplicationRuleStatus = Shapes::StringShape.new(name: 'ReplicationRuleStatus')
|
299
|
+
ReplicationRules = Shapes::ListShape.new(name: 'ReplicationRules', flattened: true)
|
300
|
+
ReplicationStatus = Shapes::StringShape.new(name: 'ReplicationStatus')
|
301
|
+
RequestCharged = Shapes::StringShape.new(name: 'RequestCharged')
|
302
|
+
RequestPayer = Shapes::StringShape.new(name: 'RequestPayer')
|
303
|
+
RequestPaymentConfiguration = Shapes::StructureShape.new(name: 'RequestPaymentConfiguration')
|
304
|
+
ResponseCacheControl = Shapes::StringShape.new(name: 'ResponseCacheControl')
|
305
|
+
ResponseContentDisposition = Shapes::StringShape.new(name: 'ResponseContentDisposition')
|
306
|
+
ResponseContentEncoding = Shapes::StringShape.new(name: 'ResponseContentEncoding')
|
307
|
+
ResponseContentLanguage = Shapes::StringShape.new(name: 'ResponseContentLanguage')
|
308
|
+
ResponseContentType = Shapes::StringShape.new(name: 'ResponseContentType')
|
309
|
+
ResponseExpires = Shapes::TimestampShape.new(name: 'ResponseExpires')
|
310
|
+
Restore = Shapes::StringShape.new(name: 'Restore')
|
311
|
+
RestoreObjectOutput = Shapes::StructureShape.new(name: 'RestoreObjectOutput')
|
312
|
+
RestoreObjectRequest = Shapes::StructureShape.new(name: 'RestoreObjectRequest')
|
313
|
+
RestoreRequest = Shapes::StructureShape.new(name: 'RestoreRequest')
|
314
|
+
Role = Shapes::StringShape.new(name: 'Role')
|
315
|
+
RoutingRule = Shapes::StructureShape.new(name: 'RoutingRule')
|
316
|
+
RoutingRules = Shapes::ListShape.new(name: 'RoutingRules')
|
317
|
+
Rule = Shapes::StructureShape.new(name: 'Rule')
|
318
|
+
Rules = Shapes::ListShape.new(name: 'Rules', flattened: true)
|
319
|
+
S3KeyFilter = Shapes::StructureShape.new(name: 'S3KeyFilter')
|
320
|
+
SSECustomerAlgorithm = Shapes::StringShape.new(name: 'SSECustomerAlgorithm')
|
321
|
+
SSECustomerKey = Shapes::StringShape.new(name: 'SSECustomerKey')
|
322
|
+
SSECustomerKeyMD5 = Shapes::StringShape.new(name: 'SSECustomerKeyMD5')
|
323
|
+
SSEKMSKeyId = Shapes::StringShape.new(name: 'SSEKMSKeyId')
|
324
|
+
ServerSideEncryption = Shapes::StringShape.new(name: 'ServerSideEncryption')
|
325
|
+
Size = Shapes::IntegerShape.new(name: 'Size')
|
326
|
+
StartAfter = Shapes::StringShape.new(name: 'StartAfter')
|
327
|
+
StorageClass = Shapes::StringShape.new(name: 'StorageClass')
|
328
|
+
Suffix = Shapes::StringShape.new(name: 'Suffix')
|
329
|
+
Tag = Shapes::StructureShape.new(name: 'Tag')
|
330
|
+
TagSet = Shapes::ListShape.new(name: 'TagSet')
|
331
|
+
Tagging = Shapes::StructureShape.new(name: 'Tagging')
|
332
|
+
TargetBucket = Shapes::StringShape.new(name: 'TargetBucket')
|
333
|
+
TargetGrant = Shapes::StructureShape.new(name: 'TargetGrant')
|
334
|
+
TargetGrants = Shapes::ListShape.new(name: 'TargetGrants')
|
335
|
+
TargetPrefix = Shapes::StringShape.new(name: 'TargetPrefix')
|
336
|
+
Tier = Shapes::StringShape.new(name: 'Tier')
|
337
|
+
Token = Shapes::StringShape.new(name: 'Token')
|
338
|
+
TopicArn = Shapes::StringShape.new(name: 'TopicArn')
|
339
|
+
TopicConfiguration = Shapes::StructureShape.new(name: 'TopicConfiguration')
|
340
|
+
TopicConfigurationDeprecated = Shapes::StructureShape.new(name: 'TopicConfigurationDeprecated')
|
341
|
+
TopicConfigurationList = Shapes::ListShape.new(name: 'TopicConfigurationList', flattened: true)
|
342
|
+
Transition = Shapes::StructureShape.new(name: 'Transition')
|
343
|
+
TransitionList = Shapes::ListShape.new(name: 'TransitionList', flattened: true)
|
344
|
+
TransitionStorageClass = Shapes::StringShape.new(name: 'TransitionStorageClass')
|
345
|
+
Type = Shapes::StringShape.new(name: 'Type')
|
346
|
+
URI = Shapes::StringShape.new(name: 'URI')
|
347
|
+
UploadIdMarker = Shapes::StringShape.new(name: 'UploadIdMarker')
|
348
|
+
UploadPartCopyOutput = Shapes::StructureShape.new(name: 'UploadPartCopyOutput')
|
349
|
+
UploadPartCopyRequest = Shapes::StructureShape.new(name: 'UploadPartCopyRequest')
|
350
|
+
UploadPartOutput = Shapes::StructureShape.new(name: 'UploadPartOutput')
|
351
|
+
UploadPartRequest = Shapes::StructureShape.new(name: 'UploadPartRequest')
|
352
|
+
Value = Shapes::StringShape.new(name: 'Value')
|
353
|
+
VersionIdMarker = Shapes::StringShape.new(name: 'VersionIdMarker')
|
354
|
+
VersioningConfiguration = Shapes::StructureShape.new(name: 'VersioningConfiguration')
|
355
|
+
WebsiteConfiguration = Shapes::StructureShape.new(name: 'WebsiteConfiguration')
|
356
|
+
WebsiteRedirectLocation = Shapes::StringShape.new(name: 'WebsiteRedirectLocation')
|
357
|
+
|
358
|
+
AbortIncompleteMultipartUpload.add_member(:days_after_initiation, Shapes::ShapeRef.new(shape: DaysAfterInitiation, location_name: "DaysAfterInitiation"))
|
359
|
+
AbortIncompleteMultipartUpload.struct_class = Types::AbortIncompleteMultipartUpload
|
360
|
+
|
361
|
+
AbortMultipartUploadOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
362
|
+
AbortMultipartUploadOutput.struct_class = Types::AbortMultipartUploadOutput
|
363
|
+
|
364
|
+
AbortMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
365
|
+
AbortMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
366
|
+
AbortMultipartUploadRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
367
|
+
AbortMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
368
|
+
AbortMultipartUploadRequest.struct_class = Types::AbortMultipartUploadRequest
|
369
|
+
|
370
|
+
AccelerateConfiguration.add_member(:status, Shapes::ShapeRef.new(shape: BucketAccelerateStatus, location_name: "Status"))
|
371
|
+
AccelerateConfiguration.struct_class = Types::AccelerateConfiguration
|
372
|
+
|
373
|
+
AccessControlPolicy.add_member(:grants, Shapes::ShapeRef.new(shape: Grants, location_name: "AccessControlList"))
|
374
|
+
AccessControlPolicy.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
375
|
+
AccessControlPolicy.struct_class = Types::AccessControlPolicy
|
376
|
+
|
377
|
+
AllowedHeaders.member = Shapes::ShapeRef.new(shape: AllowedHeader)
|
378
|
+
|
379
|
+
AllowedMethods.member = Shapes::ShapeRef.new(shape: AllowedMethod)
|
380
|
+
|
381
|
+
AllowedOrigins.member = Shapes::ShapeRef.new(shape: AllowedOrigin)
|
382
|
+
|
383
|
+
Bucket.add_member(:name, Shapes::ShapeRef.new(shape: BucketName, location_name: "Name"))
|
384
|
+
Bucket.add_member(:creation_date, Shapes::ShapeRef.new(shape: CreationDate, location_name: "CreationDate"))
|
385
|
+
Bucket.struct_class = Types::Bucket
|
386
|
+
|
387
|
+
BucketLifecycleConfiguration.add_member(:rules, Shapes::ShapeRef.new(shape: LifecycleRules, required: true, location_name: "Rule"))
|
388
|
+
BucketLifecycleConfiguration.struct_class = Types::BucketLifecycleConfiguration
|
389
|
+
|
390
|
+
BucketLoggingStatus.add_member(:logging_enabled, Shapes::ShapeRef.new(shape: LoggingEnabled, location_name: "LoggingEnabled"))
|
391
|
+
BucketLoggingStatus.struct_class = Types::BucketLoggingStatus
|
392
|
+
|
393
|
+
Buckets.member = Shapes::ShapeRef.new(shape: Bucket, location_name: "Bucket")
|
394
|
+
|
395
|
+
CORSConfiguration.add_member(:cors_rules, Shapes::ShapeRef.new(shape: CORSRules, required: true, location_name: "CORSRule"))
|
396
|
+
CORSConfiguration.struct_class = Types::CORSConfiguration
|
397
|
+
|
398
|
+
CORSRule.add_member(:allowed_headers, Shapes::ShapeRef.new(shape: AllowedHeaders, location_name: "AllowedHeader"))
|
399
|
+
CORSRule.add_member(:allowed_methods, Shapes::ShapeRef.new(shape: AllowedMethods, required: true, location_name: "AllowedMethod"))
|
400
|
+
CORSRule.add_member(:allowed_origins, Shapes::ShapeRef.new(shape: AllowedOrigins, required: true, location_name: "AllowedOrigin"))
|
401
|
+
CORSRule.add_member(:expose_headers, Shapes::ShapeRef.new(shape: ExposeHeaders, location_name: "ExposeHeader"))
|
402
|
+
CORSRule.add_member(:max_age_seconds, Shapes::ShapeRef.new(shape: MaxAgeSeconds, location_name: "MaxAgeSeconds"))
|
403
|
+
CORSRule.struct_class = Types::CORSRule
|
404
|
+
|
405
|
+
CORSRules.member = Shapes::ShapeRef.new(shape: CORSRule)
|
406
|
+
|
407
|
+
CloudFunctionConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
|
408
|
+
CloudFunctionConfiguration.add_member(:event, Shapes::ShapeRef.new(shape: Event, deprecated: true, location_name: "Event"))
|
409
|
+
CloudFunctionConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, location_name: "Event"))
|
410
|
+
CloudFunctionConfiguration.add_member(:cloud_function, Shapes::ShapeRef.new(shape: CloudFunction, location_name: "CloudFunction"))
|
411
|
+
CloudFunctionConfiguration.add_member(:invocation_role, Shapes::ShapeRef.new(shape: CloudFunctionInvocationRole, location_name: "InvocationRole"))
|
412
|
+
CloudFunctionConfiguration.struct_class = Types::CloudFunctionConfiguration
|
413
|
+
|
414
|
+
CommonPrefix.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
415
|
+
CommonPrefix.struct_class = Types::CommonPrefix
|
416
|
+
|
417
|
+
CommonPrefixList.member = Shapes::ShapeRef.new(shape: CommonPrefix)
|
418
|
+
|
419
|
+
CompleteMultipartUploadOutput.add_member(:location, Shapes::ShapeRef.new(shape: Location, location_name: "Location"))
|
420
|
+
CompleteMultipartUploadOutput.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
|
421
|
+
CompleteMultipartUploadOutput.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
422
|
+
CompleteMultipartUploadOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
|
423
|
+
CompleteMultipartUploadOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
424
|
+
CompleteMultipartUploadOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
425
|
+
CompleteMultipartUploadOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
426
|
+
CompleteMultipartUploadOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
427
|
+
CompleteMultipartUploadOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
428
|
+
CompleteMultipartUploadOutput.struct_class = Types::CompleteMultipartUploadOutput
|
429
|
+
|
430
|
+
CompleteMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
431
|
+
CompleteMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
432
|
+
CompleteMultipartUploadRequest.add_member(:multipart_upload, Shapes::ShapeRef.new(shape: CompletedMultipartUpload, location_name: "CompleteMultipartUpload", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
433
|
+
CompleteMultipartUploadRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
434
|
+
CompleteMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
435
|
+
CompleteMultipartUploadRequest.struct_class = Types::CompleteMultipartUploadRequest
|
436
|
+
CompleteMultipartUploadRequest[:payload] = :multipart_upload
|
437
|
+
CompleteMultipartUploadRequest[:payload_member] = CompleteMultipartUploadRequest.member(:multipart_upload)
|
438
|
+
|
439
|
+
CompletedMultipartUpload.add_member(:parts, Shapes::ShapeRef.new(shape: CompletedPartList, location_name: "Part"))
|
440
|
+
CompletedMultipartUpload.struct_class = Types::CompletedMultipartUpload
|
441
|
+
|
442
|
+
CompletedPart.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
443
|
+
CompletedPart.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location_name: "PartNumber"))
|
444
|
+
CompletedPart.struct_class = Types::CompletedPart
|
445
|
+
|
446
|
+
CompletedPartList.member = Shapes::ShapeRef.new(shape: CompletedPart)
|
447
|
+
|
448
|
+
Condition.add_member(:http_error_code_returned_equals, Shapes::ShapeRef.new(shape: HttpErrorCodeReturnedEquals, location_name: "HttpErrorCodeReturnedEquals"))
|
449
|
+
Condition.add_member(:key_prefix_equals, Shapes::ShapeRef.new(shape: KeyPrefixEquals, location_name: "KeyPrefixEquals"))
|
450
|
+
Condition.struct_class = Types::Condition
|
451
|
+
|
452
|
+
CopyObjectOutput.add_member(:copy_object_result, Shapes::ShapeRef.new(shape: CopyObjectResult, location_name: "CopyObjectResult"))
|
453
|
+
CopyObjectOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
|
454
|
+
CopyObjectOutput.add_member(:copy_source_version_id, Shapes::ShapeRef.new(shape: CopySourceVersionId, location: "header", location_name: "x-amz-copy-source-version-id"))
|
455
|
+
CopyObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
456
|
+
CopyObjectOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
457
|
+
CopyObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
458
|
+
CopyObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
459
|
+
CopyObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
460
|
+
CopyObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
461
|
+
CopyObjectOutput.struct_class = Types::CopyObjectOutput
|
462
|
+
CopyObjectOutput[:payload] = :copy_object_result
|
463
|
+
CopyObjectOutput[:payload_member] = CopyObjectOutput.member(:copy_object_result)
|
464
|
+
|
465
|
+
CopyObjectRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
466
|
+
CopyObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
467
|
+
CopyObjectRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
468
|
+
CopyObjectRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
|
469
|
+
CopyObjectRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
|
470
|
+
CopyObjectRequest.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
|
471
|
+
CopyObjectRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
|
472
|
+
CopyObjectRequest.add_member(:copy_source, Shapes::ShapeRef.new(shape: CopySource, required: true, location: "header", location_name: "x-amz-copy-source"))
|
473
|
+
CopyObjectRequest.add_member(:copy_source_if_match, Shapes::ShapeRef.new(shape: CopySourceIfMatch, location: "header", location_name: "x-amz-copy-source-if-match"))
|
474
|
+
CopyObjectRequest.add_member(:copy_source_if_modified_since, Shapes::ShapeRef.new(shape: CopySourceIfModifiedSince, location: "header", location_name: "x-amz-copy-source-if-modified-since"))
|
475
|
+
CopyObjectRequest.add_member(:copy_source_if_none_match, Shapes::ShapeRef.new(shape: CopySourceIfNoneMatch, location: "header", location_name: "x-amz-copy-source-if-none-match"))
|
476
|
+
CopyObjectRequest.add_member(:copy_source_if_unmodified_since, Shapes::ShapeRef.new(shape: CopySourceIfUnmodifiedSince, location: "header", location_name: "x-amz-copy-source-if-unmodified-since"))
|
477
|
+
CopyObjectRequest.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
|
478
|
+
CopyObjectRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
479
|
+
CopyObjectRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
480
|
+
CopyObjectRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
481
|
+
CopyObjectRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
482
|
+
CopyObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
483
|
+
CopyObjectRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
|
484
|
+
CopyObjectRequest.add_member(:metadata_directive, Shapes::ShapeRef.new(shape: MetadataDirective, location: "header", location_name: "x-amz-metadata-directive"))
|
485
|
+
CopyObjectRequest.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
486
|
+
CopyObjectRequest.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
|
487
|
+
CopyObjectRequest.add_member(:website_redirect_location, Shapes::ShapeRef.new(shape: WebsiteRedirectLocation, location: "header", location_name: "x-amz-website-redirect-location"))
|
488
|
+
CopyObjectRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
489
|
+
CopyObjectRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
490
|
+
CopyObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
491
|
+
CopyObjectRequest.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
492
|
+
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"))
|
493
|
+
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"))
|
494
|
+
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"))
|
495
|
+
CopyObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
496
|
+
CopyObjectRequest.struct_class = Types::CopyObjectRequest
|
497
|
+
|
498
|
+
CopyObjectResult.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
499
|
+
CopyObjectResult.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
500
|
+
CopyObjectResult.struct_class = Types::CopyObjectResult
|
501
|
+
|
502
|
+
CopyPartResult.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
503
|
+
CopyPartResult.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
504
|
+
CopyPartResult.struct_class = Types::CopyPartResult
|
505
|
+
|
506
|
+
CreateBucketConfiguration.add_member(:location_constraint, Shapes::ShapeRef.new(shape: BucketLocationConstraint, location_name: "LocationConstraint"))
|
507
|
+
CreateBucketConfiguration.struct_class = Types::CreateBucketConfiguration
|
508
|
+
|
509
|
+
CreateBucketOutput.add_member(:location, Shapes::ShapeRef.new(shape: Location, location: "header", location_name: "Location"))
|
510
|
+
CreateBucketOutput.struct_class = Types::CreateBucketOutput
|
511
|
+
|
512
|
+
CreateBucketRequest.add_member(:acl, Shapes::ShapeRef.new(shape: BucketCannedACL, location: "header", location_name: "x-amz-acl"))
|
513
|
+
CreateBucketRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
514
|
+
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/"}}))
|
515
|
+
CreateBucketRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
516
|
+
CreateBucketRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
517
|
+
CreateBucketRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
518
|
+
CreateBucketRequest.add_member(:grant_write, Shapes::ShapeRef.new(shape: GrantWrite, location: "header", location_name: "x-amz-grant-write"))
|
519
|
+
CreateBucketRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
520
|
+
CreateBucketRequest.struct_class = Types::CreateBucketRequest
|
521
|
+
CreateBucketRequest[:payload] = :create_bucket_configuration
|
522
|
+
CreateBucketRequest[:payload_member] = CreateBucketRequest.member(:create_bucket_configuration)
|
523
|
+
|
524
|
+
CreateMultipartUploadOutput.add_member(:abort_date, Shapes::ShapeRef.new(shape: AbortDate, location: "header", location_name: "x-amz-abort-date"))
|
525
|
+
CreateMultipartUploadOutput.add_member(:abort_rule_id, Shapes::ShapeRef.new(shape: AbortRuleId, location: "header", location_name: "x-amz-abort-rule-id"))
|
526
|
+
CreateMultipartUploadOutput.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
|
527
|
+
CreateMultipartUploadOutput.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
528
|
+
CreateMultipartUploadOutput.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, location_name: "UploadId"))
|
529
|
+
CreateMultipartUploadOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
530
|
+
CreateMultipartUploadOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
531
|
+
CreateMultipartUploadOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
532
|
+
CreateMultipartUploadOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
533
|
+
CreateMultipartUploadOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
534
|
+
CreateMultipartUploadOutput.struct_class = Types::CreateMultipartUploadOutput
|
535
|
+
|
536
|
+
CreateMultipartUploadRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
537
|
+
CreateMultipartUploadRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
538
|
+
CreateMultipartUploadRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
539
|
+
CreateMultipartUploadRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
|
540
|
+
CreateMultipartUploadRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
|
541
|
+
CreateMultipartUploadRequest.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
|
542
|
+
CreateMultipartUploadRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
|
543
|
+
CreateMultipartUploadRequest.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
|
544
|
+
CreateMultipartUploadRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
545
|
+
CreateMultipartUploadRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
546
|
+
CreateMultipartUploadRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
547
|
+
CreateMultipartUploadRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
548
|
+
CreateMultipartUploadRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
549
|
+
CreateMultipartUploadRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
|
550
|
+
CreateMultipartUploadRequest.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
551
|
+
CreateMultipartUploadRequest.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
|
552
|
+
CreateMultipartUploadRequest.add_member(:website_redirect_location, Shapes::ShapeRef.new(shape: WebsiteRedirectLocation, location: "header", location_name: "x-amz-website-redirect-location"))
|
553
|
+
CreateMultipartUploadRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
554
|
+
CreateMultipartUploadRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
555
|
+
CreateMultipartUploadRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
556
|
+
CreateMultipartUploadRequest.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
557
|
+
CreateMultipartUploadRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
558
|
+
CreateMultipartUploadRequest.struct_class = Types::CreateMultipartUploadRequest
|
559
|
+
|
560
|
+
Delete.add_member(:objects, Shapes::ShapeRef.new(shape: ObjectIdentifierList, required: true, location_name: "Object"))
|
561
|
+
Delete.add_member(:quiet, Shapes::ShapeRef.new(shape: Quiet, location_name: "Quiet"))
|
562
|
+
Delete.struct_class = Types::Delete
|
563
|
+
|
564
|
+
DeleteBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
565
|
+
DeleteBucketCorsRequest.struct_class = Types::DeleteBucketCorsRequest
|
566
|
+
|
567
|
+
DeleteBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
568
|
+
DeleteBucketLifecycleRequest.struct_class = Types::DeleteBucketLifecycleRequest
|
569
|
+
|
570
|
+
DeleteBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
571
|
+
DeleteBucketPolicyRequest.struct_class = Types::DeleteBucketPolicyRequest
|
572
|
+
|
573
|
+
DeleteBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
574
|
+
DeleteBucketReplicationRequest.struct_class = Types::DeleteBucketReplicationRequest
|
575
|
+
|
576
|
+
DeleteBucketRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
577
|
+
DeleteBucketRequest.struct_class = Types::DeleteBucketRequest
|
578
|
+
|
579
|
+
DeleteBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
580
|
+
DeleteBucketTaggingRequest.struct_class = Types::DeleteBucketTaggingRequest
|
581
|
+
|
582
|
+
DeleteBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
583
|
+
DeleteBucketWebsiteRequest.struct_class = Types::DeleteBucketWebsiteRequest
|
584
|
+
|
585
|
+
DeleteMarkerEntry.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
586
|
+
DeleteMarkerEntry.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
587
|
+
DeleteMarkerEntry.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
|
588
|
+
DeleteMarkerEntry.add_member(:is_latest, Shapes::ShapeRef.new(shape: IsLatest, location_name: "IsLatest"))
|
589
|
+
DeleteMarkerEntry.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
590
|
+
DeleteMarkerEntry.struct_class = Types::DeleteMarkerEntry
|
591
|
+
|
592
|
+
DeleteMarkers.member = Shapes::ShapeRef.new(shape: DeleteMarkerEntry)
|
593
|
+
|
594
|
+
DeleteObjectOutput.add_member(:delete_marker, Shapes::ShapeRef.new(shape: DeleteMarker, location: "header", location_name: "x-amz-delete-marker"))
|
595
|
+
DeleteObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
596
|
+
DeleteObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
597
|
+
DeleteObjectOutput.struct_class = Types::DeleteObjectOutput
|
598
|
+
|
599
|
+
DeleteObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
600
|
+
DeleteObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
601
|
+
DeleteObjectRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
|
602
|
+
DeleteObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
603
|
+
DeleteObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
604
|
+
DeleteObjectRequest.struct_class = Types::DeleteObjectRequest
|
605
|
+
|
606
|
+
DeleteObjectsOutput.add_member(:deleted, Shapes::ShapeRef.new(shape: DeletedObjects, location_name: "Deleted"))
|
607
|
+
DeleteObjectsOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
608
|
+
DeleteObjectsOutput.add_member(:errors, Shapes::ShapeRef.new(shape: Errors, location_name: "Error"))
|
609
|
+
DeleteObjectsOutput.struct_class = Types::DeleteObjectsOutput
|
610
|
+
|
611
|
+
DeleteObjectsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
612
|
+
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/"}}))
|
613
|
+
DeleteObjectsRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
|
614
|
+
DeleteObjectsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
615
|
+
DeleteObjectsRequest.struct_class = Types::DeleteObjectsRequest
|
616
|
+
DeleteObjectsRequest[:payload] = :delete
|
617
|
+
DeleteObjectsRequest[:payload_member] = DeleteObjectsRequest.member(:delete)
|
618
|
+
|
619
|
+
DeletedObject.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
620
|
+
DeletedObject.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
|
621
|
+
DeletedObject.add_member(:delete_marker, Shapes::ShapeRef.new(shape: DeleteMarker, location_name: "DeleteMarker"))
|
622
|
+
DeletedObject.add_member(:delete_marker_version_id, Shapes::ShapeRef.new(shape: DeleteMarkerVersionId, location_name: "DeleteMarkerVersionId"))
|
623
|
+
DeletedObject.struct_class = Types::DeletedObject
|
624
|
+
|
625
|
+
DeletedObjects.member = Shapes::ShapeRef.new(shape: DeletedObject)
|
626
|
+
|
627
|
+
Destination.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "Bucket"))
|
628
|
+
Destination.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
|
629
|
+
Destination.struct_class = Types::Destination
|
630
|
+
|
631
|
+
Error.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
632
|
+
Error.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
|
633
|
+
Error.add_member(:code, Shapes::ShapeRef.new(shape: Code, location_name: "Code"))
|
634
|
+
Error.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
635
|
+
Error.struct_class = Types::Error
|
636
|
+
|
637
|
+
ErrorDocument.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location_name: "Key"))
|
638
|
+
ErrorDocument.struct_class = Types::ErrorDocument
|
639
|
+
|
640
|
+
Errors.member = Shapes::ShapeRef.new(shape: Error)
|
641
|
+
|
642
|
+
EventList.member = Shapes::ShapeRef.new(shape: Event)
|
643
|
+
|
644
|
+
ExposeHeaders.member = Shapes::ShapeRef.new(shape: ExposeHeader)
|
645
|
+
|
646
|
+
FilterRule.add_member(:name, Shapes::ShapeRef.new(shape: FilterRuleName, location_name: "Name"))
|
647
|
+
FilterRule.add_member(:value, Shapes::ShapeRef.new(shape: FilterRuleValue, location_name: "Value"))
|
648
|
+
FilterRule.struct_class = Types::FilterRule
|
649
|
+
|
650
|
+
FilterRuleList.member = Shapes::ShapeRef.new(shape: FilterRule)
|
651
|
+
|
652
|
+
GetBucketAccelerateConfigurationOutput.add_member(:status, Shapes::ShapeRef.new(shape: BucketAccelerateStatus, location_name: "Status"))
|
653
|
+
GetBucketAccelerateConfigurationOutput.struct_class = Types::GetBucketAccelerateConfigurationOutput
|
654
|
+
|
655
|
+
GetBucketAccelerateConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
656
|
+
GetBucketAccelerateConfigurationRequest.struct_class = Types::GetBucketAccelerateConfigurationRequest
|
657
|
+
|
658
|
+
GetBucketAclOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
659
|
+
GetBucketAclOutput.add_member(:grants, Shapes::ShapeRef.new(shape: Grants, location_name: "AccessControlList"))
|
660
|
+
GetBucketAclOutput.struct_class = Types::GetBucketAclOutput
|
661
|
+
|
662
|
+
GetBucketAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
663
|
+
GetBucketAclRequest.struct_class = Types::GetBucketAclRequest
|
664
|
+
|
665
|
+
GetBucketCorsOutput.add_member(:cors_rules, Shapes::ShapeRef.new(shape: CORSRules, location_name: "CORSRule"))
|
666
|
+
GetBucketCorsOutput.struct_class = Types::GetBucketCorsOutput
|
667
|
+
|
668
|
+
GetBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
669
|
+
GetBucketCorsRequest.struct_class = Types::GetBucketCorsRequest
|
670
|
+
|
671
|
+
GetBucketLifecycleConfigurationOutput.add_member(:rules, Shapes::ShapeRef.new(shape: LifecycleRules, location_name: "Rule"))
|
672
|
+
GetBucketLifecycleConfigurationOutput.struct_class = Types::GetBucketLifecycleConfigurationOutput
|
673
|
+
|
674
|
+
GetBucketLifecycleConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
675
|
+
GetBucketLifecycleConfigurationRequest.struct_class = Types::GetBucketLifecycleConfigurationRequest
|
676
|
+
|
677
|
+
GetBucketLifecycleOutput.add_member(:rules, Shapes::ShapeRef.new(shape: Rules, location_name: "Rule"))
|
678
|
+
GetBucketLifecycleOutput.struct_class = Types::GetBucketLifecycleOutput
|
679
|
+
|
680
|
+
GetBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
681
|
+
GetBucketLifecycleRequest.struct_class = Types::GetBucketLifecycleRequest
|
682
|
+
|
683
|
+
GetBucketLocationOutput.add_member(:location_constraint, Shapes::ShapeRef.new(shape: BucketLocationConstraint, location_name: "LocationConstraint"))
|
684
|
+
GetBucketLocationOutput.struct_class = Types::GetBucketLocationOutput
|
685
|
+
|
686
|
+
GetBucketLocationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
687
|
+
GetBucketLocationRequest.struct_class = Types::GetBucketLocationRequest
|
688
|
+
|
689
|
+
GetBucketLoggingOutput.add_member(:logging_enabled, Shapes::ShapeRef.new(shape: LoggingEnabled, location_name: "LoggingEnabled"))
|
690
|
+
GetBucketLoggingOutput.struct_class = Types::GetBucketLoggingOutput
|
691
|
+
|
692
|
+
GetBucketLoggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
693
|
+
GetBucketLoggingRequest.struct_class = Types::GetBucketLoggingRequest
|
694
|
+
|
695
|
+
GetBucketNotificationConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
696
|
+
GetBucketNotificationConfigurationRequest.struct_class = Types::GetBucketNotificationConfigurationRequest
|
697
|
+
|
698
|
+
GetBucketPolicyOutput.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, location_name: "Policy"))
|
699
|
+
GetBucketPolicyOutput.struct_class = Types::GetBucketPolicyOutput
|
700
|
+
GetBucketPolicyOutput[:payload] = :policy
|
701
|
+
GetBucketPolicyOutput[:payload_member] = GetBucketPolicyOutput.member(:policy)
|
702
|
+
|
703
|
+
GetBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
704
|
+
GetBucketPolicyRequest.struct_class = Types::GetBucketPolicyRequest
|
705
|
+
|
706
|
+
GetBucketReplicationOutput.add_member(:replication_configuration, Shapes::ShapeRef.new(shape: ReplicationConfiguration, location_name: "ReplicationConfiguration"))
|
707
|
+
GetBucketReplicationOutput.struct_class = Types::GetBucketReplicationOutput
|
708
|
+
GetBucketReplicationOutput[:payload] = :replication_configuration
|
709
|
+
GetBucketReplicationOutput[:payload_member] = GetBucketReplicationOutput.member(:replication_configuration)
|
710
|
+
|
711
|
+
GetBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
712
|
+
GetBucketReplicationRequest.struct_class = Types::GetBucketReplicationRequest
|
713
|
+
|
714
|
+
GetBucketRequestPaymentOutput.add_member(:payer, Shapes::ShapeRef.new(shape: Payer, location_name: "Payer"))
|
715
|
+
GetBucketRequestPaymentOutput.struct_class = Types::GetBucketRequestPaymentOutput
|
716
|
+
|
717
|
+
GetBucketRequestPaymentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
718
|
+
GetBucketRequestPaymentRequest.struct_class = Types::GetBucketRequestPaymentRequest
|
719
|
+
|
720
|
+
GetBucketTaggingOutput.add_member(:tag_set, Shapes::ShapeRef.new(shape: TagSet, required: true, location_name: "TagSet"))
|
721
|
+
GetBucketTaggingOutput.struct_class = Types::GetBucketTaggingOutput
|
722
|
+
|
723
|
+
GetBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
724
|
+
GetBucketTaggingRequest.struct_class = Types::GetBucketTaggingRequest
|
725
|
+
|
726
|
+
GetBucketVersioningOutput.add_member(:status, Shapes::ShapeRef.new(shape: BucketVersioningStatus, location_name: "Status"))
|
727
|
+
GetBucketVersioningOutput.add_member(:mfa_delete, Shapes::ShapeRef.new(shape: MFADeleteStatus, location_name: "MfaDelete"))
|
728
|
+
GetBucketVersioningOutput.struct_class = Types::GetBucketVersioningOutput
|
729
|
+
|
730
|
+
GetBucketVersioningRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
731
|
+
GetBucketVersioningRequest.struct_class = Types::GetBucketVersioningRequest
|
732
|
+
|
733
|
+
GetBucketWebsiteOutput.add_member(:redirect_all_requests_to, Shapes::ShapeRef.new(shape: RedirectAllRequestsTo, location_name: "RedirectAllRequestsTo"))
|
734
|
+
GetBucketWebsiteOutput.add_member(:index_document, Shapes::ShapeRef.new(shape: IndexDocument, location_name: "IndexDocument"))
|
735
|
+
GetBucketWebsiteOutput.add_member(:error_document, Shapes::ShapeRef.new(shape: ErrorDocument, location_name: "ErrorDocument"))
|
736
|
+
GetBucketWebsiteOutput.add_member(:routing_rules, Shapes::ShapeRef.new(shape: RoutingRules, location_name: "RoutingRules"))
|
737
|
+
GetBucketWebsiteOutput.struct_class = Types::GetBucketWebsiteOutput
|
738
|
+
|
739
|
+
GetBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
740
|
+
GetBucketWebsiteRequest.struct_class = Types::GetBucketWebsiteRequest
|
741
|
+
|
742
|
+
GetObjectAclOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
743
|
+
GetObjectAclOutput.add_member(:grants, Shapes::ShapeRef.new(shape: Grants, location_name: "AccessControlList"))
|
744
|
+
GetObjectAclOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
745
|
+
GetObjectAclOutput.struct_class = Types::GetObjectAclOutput
|
746
|
+
|
747
|
+
GetObjectAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
748
|
+
GetObjectAclRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
749
|
+
GetObjectAclRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
750
|
+
GetObjectAclRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
751
|
+
GetObjectAclRequest.struct_class = Types::GetObjectAclRequest
|
752
|
+
|
753
|
+
GetObjectOutput.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
754
|
+
GetObjectOutput.add_member(:delete_marker, Shapes::ShapeRef.new(shape: DeleteMarker, location: "header", location_name: "x-amz-delete-marker"))
|
755
|
+
GetObjectOutput.add_member(:accept_ranges, Shapes::ShapeRef.new(shape: AcceptRanges, location: "header", location_name: "accept-ranges"))
|
756
|
+
GetObjectOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
|
757
|
+
GetObjectOutput.add_member(:restore, Shapes::ShapeRef.new(shape: Restore, location: "header", location_name: "x-amz-restore"))
|
758
|
+
GetObjectOutput.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location: "header", location_name: "Last-Modified"))
|
759
|
+
GetObjectOutput.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
760
|
+
GetObjectOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
|
761
|
+
GetObjectOutput.add_member(:missing_meta, Shapes::ShapeRef.new(shape: MissingMeta, location: "header", location_name: "x-amz-missing-meta"))
|
762
|
+
GetObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
763
|
+
GetObjectOutput.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
764
|
+
GetObjectOutput.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
|
765
|
+
GetObjectOutput.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
|
766
|
+
GetObjectOutput.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
|
767
|
+
GetObjectOutput.add_member(:content_range, Shapes::ShapeRef.new(shape: ContentRange, location: "header", location_name: "Content-Range"))
|
768
|
+
GetObjectOutput.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
|
769
|
+
GetObjectOutput.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
|
770
|
+
GetObjectOutput.add_member(:expires_string, Shapes::ShapeRef.new(shape: ExpiresString, location: "header", location_name: "Expires"))
|
771
|
+
GetObjectOutput.add_member(:website_redirect_location, Shapes::ShapeRef.new(shape: WebsiteRedirectLocation, location: "header", location_name: "x-amz-website-redirect-location"))
|
772
|
+
GetObjectOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
773
|
+
GetObjectOutput.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
|
774
|
+
GetObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
775
|
+
GetObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
776
|
+
GetObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
777
|
+
GetObjectOutput.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
|
778
|
+
GetObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
779
|
+
GetObjectOutput.add_member(:replication_status, Shapes::ShapeRef.new(shape: ReplicationStatus, location: "header", location_name: "x-amz-replication-status"))
|
780
|
+
GetObjectOutput.add_member(:parts_count, Shapes::ShapeRef.new(shape: PartsCount, location: "header", location_name: "x-amz-mp-parts-count"))
|
781
|
+
GetObjectOutput.struct_class = Types::GetObjectOutput
|
782
|
+
GetObjectOutput[:payload] = :body
|
783
|
+
GetObjectOutput[:payload_member] = GetObjectOutput.member(:body)
|
784
|
+
|
785
|
+
GetObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
786
|
+
GetObjectRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: IfMatch, location: "header", location_name: "If-Match"))
|
787
|
+
GetObjectRequest.add_member(:if_modified_since, Shapes::ShapeRef.new(shape: IfModifiedSince, location: "header", location_name: "If-Modified-Since"))
|
788
|
+
GetObjectRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
|
789
|
+
GetObjectRequest.add_member(:if_unmodified_since, Shapes::ShapeRef.new(shape: IfUnmodifiedSince, location: "header", location_name: "If-Unmodified-Since"))
|
790
|
+
GetObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
791
|
+
GetObjectRequest.add_member(:range, Shapes::ShapeRef.new(shape: Range, location: "header", location_name: "Range"))
|
792
|
+
GetObjectRequest.add_member(:response_cache_control, Shapes::ShapeRef.new(shape: ResponseCacheControl, location: "querystring", location_name: "response-cache-control"))
|
793
|
+
GetObjectRequest.add_member(:response_content_disposition, Shapes::ShapeRef.new(shape: ResponseContentDisposition, location: "querystring", location_name: "response-content-disposition"))
|
794
|
+
GetObjectRequest.add_member(:response_content_encoding, Shapes::ShapeRef.new(shape: ResponseContentEncoding, location: "querystring", location_name: "response-content-encoding"))
|
795
|
+
GetObjectRequest.add_member(:response_content_language, Shapes::ShapeRef.new(shape: ResponseContentLanguage, location: "querystring", location_name: "response-content-language"))
|
796
|
+
GetObjectRequest.add_member(:response_content_type, Shapes::ShapeRef.new(shape: ResponseContentType, location: "querystring", location_name: "response-content-type"))
|
797
|
+
GetObjectRequest.add_member(:response_expires, Shapes::ShapeRef.new(shape: ResponseExpires, location: "querystring", location_name: "response-expires"))
|
798
|
+
GetObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
799
|
+
GetObjectRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
800
|
+
GetObjectRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
801
|
+
GetObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
802
|
+
GetObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
803
|
+
GetObjectRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location: "querystring", location_name: "partNumber"))
|
804
|
+
GetObjectRequest.struct_class = Types::GetObjectRequest
|
805
|
+
|
806
|
+
GetObjectTorrentOutput.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
807
|
+
GetObjectTorrentOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
808
|
+
GetObjectTorrentOutput.struct_class = Types::GetObjectTorrentOutput
|
809
|
+
GetObjectTorrentOutput[:payload] = :body
|
810
|
+
GetObjectTorrentOutput[:payload_member] = GetObjectTorrentOutput.member(:body)
|
811
|
+
|
812
|
+
GetObjectTorrentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
813
|
+
GetObjectTorrentRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
814
|
+
GetObjectTorrentRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
815
|
+
GetObjectTorrentRequest.struct_class = Types::GetObjectTorrentRequest
|
816
|
+
|
817
|
+
GlacierJobParameters.add_member(:tier, Shapes::ShapeRef.new(shape: Tier, required: true, location_name: "Tier"))
|
818
|
+
GlacierJobParameters.struct_class = Types::GlacierJobParameters
|
819
|
+
|
820
|
+
Grant.add_member(:grantee, Shapes::ShapeRef.new(shape: Grantee, location_name: "Grantee"))
|
821
|
+
Grant.add_member(:permission, Shapes::ShapeRef.new(shape: Permission, location_name: "Permission"))
|
822
|
+
Grant.struct_class = Types::Grant
|
823
|
+
|
824
|
+
Grantee.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
825
|
+
Grantee.add_member(:email_address, Shapes::ShapeRef.new(shape: EmailAddress, location_name: "EmailAddress"))
|
826
|
+
Grantee.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
|
827
|
+
Grantee.add_member(:type, Shapes::ShapeRef.new(shape: Type, required: true, location_name: "xsi:type", metadata: {"xmlAttribute"=>true}))
|
828
|
+
Grantee.add_member(:uri, Shapes::ShapeRef.new(shape: URI, location_name: "URI"))
|
829
|
+
Grantee.struct_class = Types::Grantee
|
830
|
+
|
831
|
+
Grants.member = Shapes::ShapeRef.new(shape: Grant, location_name: "Grant")
|
832
|
+
|
833
|
+
HeadBucketRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
834
|
+
HeadBucketRequest.struct_class = Types::HeadBucketRequest
|
835
|
+
|
836
|
+
HeadObjectOutput.add_member(:delete_marker, Shapes::ShapeRef.new(shape: DeleteMarker, location: "header", location_name: "x-amz-delete-marker"))
|
837
|
+
HeadObjectOutput.add_member(:accept_ranges, Shapes::ShapeRef.new(shape: AcceptRanges, location: "header", location_name: "accept-ranges"))
|
838
|
+
HeadObjectOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
|
839
|
+
HeadObjectOutput.add_member(:restore, Shapes::ShapeRef.new(shape: Restore, location: "header", location_name: "x-amz-restore"))
|
840
|
+
HeadObjectOutput.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location: "header", location_name: "Last-Modified"))
|
841
|
+
HeadObjectOutput.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
842
|
+
HeadObjectOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
|
843
|
+
HeadObjectOutput.add_member(:missing_meta, Shapes::ShapeRef.new(shape: MissingMeta, location: "header", location_name: "x-amz-missing-meta"))
|
844
|
+
HeadObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
845
|
+
HeadObjectOutput.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
846
|
+
HeadObjectOutput.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
|
847
|
+
HeadObjectOutput.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
|
848
|
+
HeadObjectOutput.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
|
849
|
+
HeadObjectOutput.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
|
850
|
+
HeadObjectOutput.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
|
851
|
+
HeadObjectOutput.add_member(:expires_string, Shapes::ShapeRef.new(shape: ExpiresString, location: "header", location_name: "Expires"))
|
852
|
+
HeadObjectOutput.add_member(:website_redirect_location, Shapes::ShapeRef.new(shape: WebsiteRedirectLocation, location: "header", location_name: "x-amz-website-redirect-location"))
|
853
|
+
HeadObjectOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
854
|
+
HeadObjectOutput.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
|
855
|
+
HeadObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
856
|
+
HeadObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
857
|
+
HeadObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
858
|
+
HeadObjectOutput.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
|
859
|
+
HeadObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
860
|
+
HeadObjectOutput.add_member(:replication_status, Shapes::ShapeRef.new(shape: ReplicationStatus, location: "header", location_name: "x-amz-replication-status"))
|
861
|
+
HeadObjectOutput.add_member(:parts_count, Shapes::ShapeRef.new(shape: PartsCount, location: "header", location_name: "x-amz-mp-parts-count"))
|
862
|
+
HeadObjectOutput.struct_class = Types::HeadObjectOutput
|
863
|
+
|
864
|
+
HeadObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
865
|
+
HeadObjectRequest.add_member(:if_match, Shapes::ShapeRef.new(shape: IfMatch, location: "header", location_name: "If-Match"))
|
866
|
+
HeadObjectRequest.add_member(:if_modified_since, Shapes::ShapeRef.new(shape: IfModifiedSince, location: "header", location_name: "If-Modified-Since"))
|
867
|
+
HeadObjectRequest.add_member(:if_none_match, Shapes::ShapeRef.new(shape: IfNoneMatch, location: "header", location_name: "If-None-Match"))
|
868
|
+
HeadObjectRequest.add_member(:if_unmodified_since, Shapes::ShapeRef.new(shape: IfUnmodifiedSince, location: "header", location_name: "If-Unmodified-Since"))
|
869
|
+
HeadObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
870
|
+
HeadObjectRequest.add_member(:range, Shapes::ShapeRef.new(shape: Range, location: "header", location_name: "Range"))
|
871
|
+
HeadObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
872
|
+
HeadObjectRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
873
|
+
HeadObjectRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
874
|
+
HeadObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
875
|
+
HeadObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
876
|
+
HeadObjectRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location: "querystring", location_name: "partNumber"))
|
877
|
+
HeadObjectRequest.struct_class = Types::HeadObjectRequest
|
878
|
+
|
879
|
+
IndexDocument.add_member(:suffix, Shapes::ShapeRef.new(shape: Suffix, required: true, location_name: "Suffix"))
|
880
|
+
IndexDocument.struct_class = Types::IndexDocument
|
881
|
+
|
882
|
+
Initiator.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
|
883
|
+
Initiator.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
884
|
+
Initiator.struct_class = Types::Initiator
|
885
|
+
|
886
|
+
LambdaFunctionConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
|
887
|
+
LambdaFunctionConfiguration.add_member(:lambda_function_arn, Shapes::ShapeRef.new(shape: LambdaFunctionArn, required: true, location_name: "CloudFunction"))
|
888
|
+
LambdaFunctionConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, required: true, location_name: "Event"))
|
889
|
+
LambdaFunctionConfiguration.add_member(:filter, Shapes::ShapeRef.new(shape: NotificationConfigurationFilter, location_name: "Filter"))
|
890
|
+
LambdaFunctionConfiguration.struct_class = Types::LambdaFunctionConfiguration
|
891
|
+
|
892
|
+
LambdaFunctionConfigurationList.member = Shapes::ShapeRef.new(shape: LambdaFunctionConfiguration)
|
893
|
+
|
894
|
+
LifecycleConfiguration.add_member(:rules, Shapes::ShapeRef.new(shape: Rules, required: true, location_name: "Rule"))
|
895
|
+
LifecycleConfiguration.struct_class = Types::LifecycleConfiguration
|
896
|
+
|
897
|
+
LifecycleExpiration.add_member(:date, Shapes::ShapeRef.new(shape: Date, location_name: "Date"))
|
898
|
+
LifecycleExpiration.add_member(:days, Shapes::ShapeRef.new(shape: Days, location_name: "Days"))
|
899
|
+
LifecycleExpiration.add_member(:expired_object_delete_marker, Shapes::ShapeRef.new(shape: ExpiredObjectDeleteMarker, location_name: "ExpiredObjectDeleteMarker"))
|
900
|
+
LifecycleExpiration.struct_class = Types::LifecycleExpiration
|
901
|
+
|
902
|
+
LifecycleRule.add_member(:expiration, Shapes::ShapeRef.new(shape: LifecycleExpiration, location_name: "Expiration"))
|
903
|
+
LifecycleRule.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
|
904
|
+
LifecycleRule.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, required: true, location_name: "Prefix"))
|
905
|
+
LifecycleRule.add_member(:status, Shapes::ShapeRef.new(shape: ExpirationStatus, required: true, location_name: "Status"))
|
906
|
+
LifecycleRule.add_member(:transitions, Shapes::ShapeRef.new(shape: TransitionList, location_name: "Transition"))
|
907
|
+
LifecycleRule.add_member(:noncurrent_version_transitions, Shapes::ShapeRef.new(shape: NoncurrentVersionTransitionList, location_name: "NoncurrentVersionTransition"))
|
908
|
+
LifecycleRule.add_member(:noncurrent_version_expiration, Shapes::ShapeRef.new(shape: NoncurrentVersionExpiration, location_name: "NoncurrentVersionExpiration"))
|
909
|
+
LifecycleRule.add_member(:abort_incomplete_multipart_upload, Shapes::ShapeRef.new(shape: AbortIncompleteMultipartUpload, location_name: "AbortIncompleteMultipartUpload"))
|
910
|
+
LifecycleRule.struct_class = Types::LifecycleRule
|
911
|
+
|
912
|
+
LifecycleRules.member = Shapes::ShapeRef.new(shape: LifecycleRule)
|
913
|
+
|
914
|
+
ListBucketsOutput.add_member(:buckets, Shapes::ShapeRef.new(shape: Buckets, location_name: "Buckets"))
|
915
|
+
ListBucketsOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
916
|
+
ListBucketsOutput.struct_class = Types::ListBucketsOutput
|
917
|
+
|
918
|
+
ListMultipartUploadsOutput.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
|
919
|
+
ListMultipartUploadsOutput.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location_name: "KeyMarker"))
|
920
|
+
ListMultipartUploadsOutput.add_member(:upload_id_marker, Shapes::ShapeRef.new(shape: UploadIdMarker, location_name: "UploadIdMarker"))
|
921
|
+
ListMultipartUploadsOutput.add_member(:next_key_marker, Shapes::ShapeRef.new(shape: NextKeyMarker, location_name: "NextKeyMarker"))
|
922
|
+
ListMultipartUploadsOutput.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
923
|
+
ListMultipartUploadsOutput.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location_name: "Delimiter"))
|
924
|
+
ListMultipartUploadsOutput.add_member(:next_upload_id_marker, Shapes::ShapeRef.new(shape: NextUploadIdMarker, location_name: "NextUploadIdMarker"))
|
925
|
+
ListMultipartUploadsOutput.add_member(:max_uploads, Shapes::ShapeRef.new(shape: MaxUploads, location_name: "MaxUploads"))
|
926
|
+
ListMultipartUploadsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
927
|
+
ListMultipartUploadsOutput.add_member(:uploads, Shapes::ShapeRef.new(shape: MultipartUploadList, location_name: "Upload"))
|
928
|
+
ListMultipartUploadsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
|
929
|
+
ListMultipartUploadsOutput.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location_name: "EncodingType"))
|
930
|
+
ListMultipartUploadsOutput.struct_class = Types::ListMultipartUploadsOutput
|
931
|
+
|
932
|
+
ListMultipartUploadsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
933
|
+
ListMultipartUploadsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
934
|
+
ListMultipartUploadsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
935
|
+
ListMultipartUploadsRequest.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location: "querystring", location_name: "key-marker"))
|
936
|
+
ListMultipartUploadsRequest.add_member(:max_uploads, Shapes::ShapeRef.new(shape: MaxUploads, location: "querystring", location_name: "max-uploads"))
|
937
|
+
ListMultipartUploadsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
|
938
|
+
ListMultipartUploadsRequest.add_member(:upload_id_marker, Shapes::ShapeRef.new(shape: UploadIdMarker, location: "querystring", location_name: "upload-id-marker"))
|
939
|
+
ListMultipartUploadsRequest.struct_class = Types::ListMultipartUploadsRequest
|
940
|
+
|
941
|
+
ListObjectVersionsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
942
|
+
ListObjectVersionsOutput.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location_name: "KeyMarker"))
|
943
|
+
ListObjectVersionsOutput.add_member(:version_id_marker, Shapes::ShapeRef.new(shape: VersionIdMarker, location_name: "VersionIdMarker"))
|
944
|
+
ListObjectVersionsOutput.add_member(:next_key_marker, Shapes::ShapeRef.new(shape: NextKeyMarker, location_name: "NextKeyMarker"))
|
945
|
+
ListObjectVersionsOutput.add_member(:next_version_id_marker, Shapes::ShapeRef.new(shape: NextVersionIdMarker, location_name: "NextVersionIdMarker"))
|
946
|
+
ListObjectVersionsOutput.add_member(:versions, Shapes::ShapeRef.new(shape: ObjectVersionList, location_name: "Version"))
|
947
|
+
ListObjectVersionsOutput.add_member(:delete_markers, Shapes::ShapeRef.new(shape: DeleteMarkers, location_name: "DeleteMarker"))
|
948
|
+
ListObjectVersionsOutput.add_member(:name, Shapes::ShapeRef.new(shape: BucketName, location_name: "Name"))
|
949
|
+
ListObjectVersionsOutput.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
950
|
+
ListObjectVersionsOutput.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location_name: "Delimiter"))
|
951
|
+
ListObjectVersionsOutput.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location_name: "MaxKeys"))
|
952
|
+
ListObjectVersionsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
|
953
|
+
ListObjectVersionsOutput.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location_name: "EncodingType"))
|
954
|
+
ListObjectVersionsOutput.struct_class = Types::ListObjectVersionsOutput
|
955
|
+
|
956
|
+
ListObjectVersionsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
957
|
+
ListObjectVersionsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
958
|
+
ListObjectVersionsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
959
|
+
ListObjectVersionsRequest.add_member(:key_marker, Shapes::ShapeRef.new(shape: KeyMarker, location: "querystring", location_name: "key-marker"))
|
960
|
+
ListObjectVersionsRequest.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
|
961
|
+
ListObjectVersionsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
|
962
|
+
ListObjectVersionsRequest.add_member(:version_id_marker, Shapes::ShapeRef.new(shape: VersionIdMarker, location: "querystring", location_name: "version-id-marker"))
|
963
|
+
ListObjectVersionsRequest.struct_class = Types::ListObjectVersionsRequest
|
964
|
+
|
965
|
+
ListObjectsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
966
|
+
ListObjectsOutput.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location_name: "Marker"))
|
967
|
+
ListObjectsOutput.add_member(:next_marker, Shapes::ShapeRef.new(shape: NextMarker, location_name: "NextMarker"))
|
968
|
+
ListObjectsOutput.add_member(:contents, Shapes::ShapeRef.new(shape: ObjectList, location_name: "Contents"))
|
969
|
+
ListObjectsOutput.add_member(:name, Shapes::ShapeRef.new(shape: BucketName, location_name: "Name"))
|
970
|
+
ListObjectsOutput.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
971
|
+
ListObjectsOutput.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location_name: "Delimiter"))
|
972
|
+
ListObjectsOutput.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location_name: "MaxKeys"))
|
973
|
+
ListObjectsOutput.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
|
974
|
+
ListObjectsOutput.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location_name: "EncodingType"))
|
975
|
+
ListObjectsOutput.struct_class = Types::ListObjectsOutput
|
976
|
+
|
977
|
+
ListObjectsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
978
|
+
ListObjectsRequest.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
979
|
+
ListObjectsRequest.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
980
|
+
ListObjectsRequest.add_member(:marker, Shapes::ShapeRef.new(shape: Marker, location: "querystring", location_name: "marker"))
|
981
|
+
ListObjectsRequest.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
|
982
|
+
ListObjectsRequest.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
|
983
|
+
ListObjectsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
984
|
+
ListObjectsRequest.struct_class = Types::ListObjectsRequest
|
985
|
+
|
986
|
+
ListObjectsV2Output.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
987
|
+
ListObjectsV2Output.add_member(:contents, Shapes::ShapeRef.new(shape: ObjectList, location_name: "Contents"))
|
988
|
+
ListObjectsV2Output.add_member(:name, Shapes::ShapeRef.new(shape: BucketName, location_name: "Name"))
|
989
|
+
ListObjectsV2Output.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location_name: "Prefix"))
|
990
|
+
ListObjectsV2Output.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location_name: "Delimiter"))
|
991
|
+
ListObjectsV2Output.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location_name: "MaxKeys"))
|
992
|
+
ListObjectsV2Output.add_member(:common_prefixes, Shapes::ShapeRef.new(shape: CommonPrefixList, location_name: "CommonPrefixes"))
|
993
|
+
ListObjectsV2Output.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location_name: "EncodingType"))
|
994
|
+
ListObjectsV2Output.add_member(:key_count, Shapes::ShapeRef.new(shape: KeyCount, location_name: "KeyCount"))
|
995
|
+
ListObjectsV2Output.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location_name: "ContinuationToken"))
|
996
|
+
ListObjectsV2Output.add_member(:next_continuation_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextContinuationToken"))
|
997
|
+
ListObjectsV2Output.add_member(:start_after, Shapes::ShapeRef.new(shape: StartAfter, location_name: "StartAfter"))
|
998
|
+
ListObjectsV2Output.struct_class = Types::ListObjectsV2Output
|
999
|
+
|
1000
|
+
ListObjectsV2Request.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1001
|
+
ListObjectsV2Request.add_member(:delimiter, Shapes::ShapeRef.new(shape: Delimiter, location: "querystring", location_name: "delimiter"))
|
1002
|
+
ListObjectsV2Request.add_member(:encoding_type, Shapes::ShapeRef.new(shape: EncodingType, location: "querystring", location_name: "encoding-type"))
|
1003
|
+
ListObjectsV2Request.add_member(:max_keys, Shapes::ShapeRef.new(shape: MaxKeys, location: "querystring", location_name: "max-keys"))
|
1004
|
+
ListObjectsV2Request.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, location: "querystring", location_name: "prefix"))
|
1005
|
+
ListObjectsV2Request.add_member(:continuation_token, Shapes::ShapeRef.new(shape: Token, location: "querystring", location_name: "continuation-token"))
|
1006
|
+
ListObjectsV2Request.add_member(:fetch_owner, Shapes::ShapeRef.new(shape: FetchOwner, location: "querystring", location_name: "fetch-owner"))
|
1007
|
+
ListObjectsV2Request.add_member(:start_after, Shapes::ShapeRef.new(shape: StartAfter, location: "querystring", location_name: "start-after"))
|
1008
|
+
ListObjectsV2Request.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1009
|
+
ListObjectsV2Request.struct_class = Types::ListObjectsV2Request
|
1010
|
+
|
1011
|
+
ListPartsOutput.add_member(:abort_date, Shapes::ShapeRef.new(shape: AbortDate, location: "header", location_name: "x-amz-abort-date"))
|
1012
|
+
ListPartsOutput.add_member(:abort_rule_id, Shapes::ShapeRef.new(shape: AbortRuleId, location: "header", location_name: "x-amz-abort-rule-id"))
|
1013
|
+
ListPartsOutput.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, location_name: "Bucket"))
|
1014
|
+
ListPartsOutput.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
1015
|
+
ListPartsOutput.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, location_name: "UploadId"))
|
1016
|
+
ListPartsOutput.add_member(:part_number_marker, Shapes::ShapeRef.new(shape: PartNumberMarker, location_name: "PartNumberMarker"))
|
1017
|
+
ListPartsOutput.add_member(:next_part_number_marker, Shapes::ShapeRef.new(shape: NextPartNumberMarker, location_name: "NextPartNumberMarker"))
|
1018
|
+
ListPartsOutput.add_member(:max_parts, Shapes::ShapeRef.new(shape: MaxParts, location_name: "MaxParts"))
|
1019
|
+
ListPartsOutput.add_member(:is_truncated, Shapes::ShapeRef.new(shape: IsTruncated, location_name: "IsTruncated"))
|
1020
|
+
ListPartsOutput.add_member(:parts, Shapes::ShapeRef.new(shape: Parts, location_name: "Part"))
|
1021
|
+
ListPartsOutput.add_member(:initiator, Shapes::ShapeRef.new(shape: Initiator, location_name: "Initiator"))
|
1022
|
+
ListPartsOutput.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1023
|
+
ListPartsOutput.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
|
1024
|
+
ListPartsOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1025
|
+
ListPartsOutput.struct_class = Types::ListPartsOutput
|
1026
|
+
|
1027
|
+
ListPartsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1028
|
+
ListPartsRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1029
|
+
ListPartsRequest.add_member(:max_parts, Shapes::ShapeRef.new(shape: MaxParts, location: "querystring", location_name: "max-parts"))
|
1030
|
+
ListPartsRequest.add_member(:part_number_marker, Shapes::ShapeRef.new(shape: PartNumberMarker, location: "querystring", location_name: "part-number-marker"))
|
1031
|
+
ListPartsRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
1032
|
+
ListPartsRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1033
|
+
ListPartsRequest.struct_class = Types::ListPartsRequest
|
1034
|
+
|
1035
|
+
LoggingEnabled.add_member(:target_bucket, Shapes::ShapeRef.new(shape: TargetBucket, location_name: "TargetBucket"))
|
1036
|
+
LoggingEnabled.add_member(:target_grants, Shapes::ShapeRef.new(shape: TargetGrants, location_name: "TargetGrants"))
|
1037
|
+
LoggingEnabled.add_member(:target_prefix, Shapes::ShapeRef.new(shape: TargetPrefix, location_name: "TargetPrefix"))
|
1038
|
+
LoggingEnabled.struct_class = Types::LoggingEnabled
|
1039
|
+
|
1040
|
+
Metadata.key = Shapes::ShapeRef.new(shape: MetadataKey)
|
1041
|
+
Metadata.value = Shapes::ShapeRef.new(shape: MetadataValue)
|
1042
|
+
|
1043
|
+
MultipartUpload.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, location_name: "UploadId"))
|
1044
|
+
MultipartUpload.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
1045
|
+
MultipartUpload.add_member(:initiated, Shapes::ShapeRef.new(shape: Initiated, location_name: "Initiated"))
|
1046
|
+
MultipartUpload.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location_name: "StorageClass"))
|
1047
|
+
MultipartUpload.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1048
|
+
MultipartUpload.add_member(:initiator, Shapes::ShapeRef.new(shape: Initiator, location_name: "Initiator"))
|
1049
|
+
MultipartUpload.struct_class = Types::MultipartUpload
|
1050
|
+
|
1051
|
+
MultipartUploadList.member = Shapes::ShapeRef.new(shape: MultipartUpload)
|
1052
|
+
|
1053
|
+
NoncurrentVersionExpiration.add_member(:noncurrent_days, Shapes::ShapeRef.new(shape: Days, location_name: "NoncurrentDays"))
|
1054
|
+
NoncurrentVersionExpiration.struct_class = Types::NoncurrentVersionExpiration
|
1055
|
+
|
1056
|
+
NoncurrentVersionTransition.add_member(:noncurrent_days, Shapes::ShapeRef.new(shape: Days, location_name: "NoncurrentDays"))
|
1057
|
+
NoncurrentVersionTransition.add_member(:storage_class, Shapes::ShapeRef.new(shape: TransitionStorageClass, location_name: "StorageClass"))
|
1058
|
+
NoncurrentVersionTransition.struct_class = Types::NoncurrentVersionTransition
|
1059
|
+
|
1060
|
+
NoncurrentVersionTransitionList.member = Shapes::ShapeRef.new(shape: NoncurrentVersionTransition)
|
1061
|
+
|
1062
|
+
NotificationConfiguration.add_member(:topic_configurations, Shapes::ShapeRef.new(shape: TopicConfigurationList, location_name: "TopicConfiguration"))
|
1063
|
+
NotificationConfiguration.add_member(:queue_configurations, Shapes::ShapeRef.new(shape: QueueConfigurationList, location_name: "QueueConfiguration"))
|
1064
|
+
NotificationConfiguration.add_member(:lambda_function_configurations, Shapes::ShapeRef.new(shape: LambdaFunctionConfigurationList, location_name: "CloudFunctionConfiguration"))
|
1065
|
+
NotificationConfiguration.struct_class = Types::NotificationConfiguration
|
1066
|
+
|
1067
|
+
NotificationConfigurationDeprecated.add_member(:topic_configuration, Shapes::ShapeRef.new(shape: TopicConfigurationDeprecated, location_name: "TopicConfiguration"))
|
1068
|
+
NotificationConfigurationDeprecated.add_member(:queue_configuration, Shapes::ShapeRef.new(shape: QueueConfigurationDeprecated, location_name: "QueueConfiguration"))
|
1069
|
+
NotificationConfigurationDeprecated.add_member(:cloud_function_configuration, Shapes::ShapeRef.new(shape: CloudFunctionConfiguration, location_name: "CloudFunctionConfiguration"))
|
1070
|
+
NotificationConfigurationDeprecated.struct_class = Types::NotificationConfigurationDeprecated
|
1071
|
+
|
1072
|
+
NotificationConfigurationFilter.add_member(:key, Shapes::ShapeRef.new(shape: S3KeyFilter, location_name: "S3Key"))
|
1073
|
+
NotificationConfigurationFilter.struct_class = Types::NotificationConfigurationFilter
|
1074
|
+
|
1075
|
+
Object.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
1076
|
+
Object.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
1077
|
+
Object.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
1078
|
+
Object.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
|
1079
|
+
Object.add_member(:storage_class, Shapes::ShapeRef.new(shape: ObjectStorageClass, location_name: "StorageClass"))
|
1080
|
+
Object.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1081
|
+
Object.struct_class = Types::Object
|
1082
|
+
|
1083
|
+
ObjectIdentifier.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location_name: "Key"))
|
1084
|
+
ObjectIdentifier.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
|
1085
|
+
ObjectIdentifier.struct_class = Types::ObjectIdentifier
|
1086
|
+
|
1087
|
+
ObjectIdentifierList.member = Shapes::ShapeRef.new(shape: ObjectIdentifier)
|
1088
|
+
|
1089
|
+
ObjectList.member = Shapes::ShapeRef.new(shape: Object)
|
1090
|
+
|
1091
|
+
ObjectVersion.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
1092
|
+
ObjectVersion.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
|
1093
|
+
ObjectVersion.add_member(:storage_class, Shapes::ShapeRef.new(shape: ObjectVersionStorageClass, location_name: "StorageClass"))
|
1094
|
+
ObjectVersion.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, location_name: "Key"))
|
1095
|
+
ObjectVersion.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location_name: "VersionId"))
|
1096
|
+
ObjectVersion.add_member(:is_latest, Shapes::ShapeRef.new(shape: IsLatest, location_name: "IsLatest"))
|
1097
|
+
ObjectVersion.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
1098
|
+
ObjectVersion.add_member(:owner, Shapes::ShapeRef.new(shape: Owner, location_name: "Owner"))
|
1099
|
+
ObjectVersion.struct_class = Types::ObjectVersion
|
1100
|
+
|
1101
|
+
ObjectVersionList.member = Shapes::ShapeRef.new(shape: ObjectVersion)
|
1102
|
+
|
1103
|
+
Owner.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, location_name: "DisplayName"))
|
1104
|
+
Owner.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
|
1105
|
+
Owner.struct_class = Types::Owner
|
1106
|
+
|
1107
|
+
Part.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, location_name: "PartNumber"))
|
1108
|
+
Part.add_member(:last_modified, Shapes::ShapeRef.new(shape: LastModified, location_name: "LastModified"))
|
1109
|
+
Part.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "ETag"))
|
1110
|
+
Part.add_member(:size, Shapes::ShapeRef.new(shape: Size, location_name: "Size"))
|
1111
|
+
Part.struct_class = Types::Part
|
1112
|
+
|
1113
|
+
Parts.member = Shapes::ShapeRef.new(shape: Part)
|
1114
|
+
|
1115
|
+
PutBucketAccelerateConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1116
|
+
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/"}}))
|
1117
|
+
PutBucketAccelerateConfigurationRequest.struct_class = Types::PutBucketAccelerateConfigurationRequest
|
1118
|
+
PutBucketAccelerateConfigurationRequest[:payload] = :accelerate_configuration
|
1119
|
+
PutBucketAccelerateConfigurationRequest[:payload_member] = PutBucketAccelerateConfigurationRequest.member(:accelerate_configuration)
|
1120
|
+
|
1121
|
+
PutBucketAclRequest.add_member(:acl, Shapes::ShapeRef.new(shape: BucketCannedACL, location: "header", location_name: "x-amz-acl"))
|
1122
|
+
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/"}}))
|
1123
|
+
PutBucketAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1124
|
+
PutBucketAclRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1125
|
+
PutBucketAclRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
1126
|
+
PutBucketAclRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
1127
|
+
PutBucketAclRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
1128
|
+
PutBucketAclRequest.add_member(:grant_write, Shapes::ShapeRef.new(shape: GrantWrite, location: "header", location_name: "x-amz-grant-write"))
|
1129
|
+
PutBucketAclRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
1130
|
+
PutBucketAclRequest.struct_class = Types::PutBucketAclRequest
|
1131
|
+
PutBucketAclRequest[:payload] = :access_control_policy
|
1132
|
+
PutBucketAclRequest[:payload_member] = PutBucketAclRequest.member(:access_control_policy)
|
1133
|
+
|
1134
|
+
PutBucketCorsRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1135
|
+
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/"}}))
|
1136
|
+
PutBucketCorsRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1137
|
+
PutBucketCorsRequest.struct_class = Types::PutBucketCorsRequest
|
1138
|
+
PutBucketCorsRequest[:payload] = :cors_configuration
|
1139
|
+
PutBucketCorsRequest[:payload_member] = PutBucketCorsRequest.member(:cors_configuration)
|
1140
|
+
|
1141
|
+
PutBucketLifecycleConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1142
|
+
PutBucketLifecycleConfigurationRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: BucketLifecycleConfiguration, location_name: "LifecycleConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1143
|
+
PutBucketLifecycleConfigurationRequest.struct_class = Types::PutBucketLifecycleConfigurationRequest
|
1144
|
+
PutBucketLifecycleConfigurationRequest[:payload] = :lifecycle_configuration
|
1145
|
+
PutBucketLifecycleConfigurationRequest[:payload_member] = PutBucketLifecycleConfigurationRequest.member(:lifecycle_configuration)
|
1146
|
+
|
1147
|
+
PutBucketLifecycleRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1148
|
+
PutBucketLifecycleRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1149
|
+
PutBucketLifecycleRequest.add_member(:lifecycle_configuration, Shapes::ShapeRef.new(shape: LifecycleConfiguration, location_name: "LifecycleConfiguration", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1150
|
+
PutBucketLifecycleRequest.struct_class = Types::PutBucketLifecycleRequest
|
1151
|
+
PutBucketLifecycleRequest[:payload] = :lifecycle_configuration
|
1152
|
+
PutBucketLifecycleRequest[:payload_member] = PutBucketLifecycleRequest.member(:lifecycle_configuration)
|
1153
|
+
|
1154
|
+
PutBucketLoggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1155
|
+
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/"}}))
|
1156
|
+
PutBucketLoggingRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1157
|
+
PutBucketLoggingRequest.struct_class = Types::PutBucketLoggingRequest
|
1158
|
+
PutBucketLoggingRequest[:payload] = :bucket_logging_status
|
1159
|
+
PutBucketLoggingRequest[:payload_member] = PutBucketLoggingRequest.member(:bucket_logging_status)
|
1160
|
+
|
1161
|
+
PutBucketNotificationConfigurationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1162
|
+
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/"}}))
|
1163
|
+
PutBucketNotificationConfigurationRequest.struct_class = Types::PutBucketNotificationConfigurationRequest
|
1164
|
+
PutBucketNotificationConfigurationRequest[:payload] = :notification_configuration
|
1165
|
+
PutBucketNotificationConfigurationRequest[:payload_member] = PutBucketNotificationConfigurationRequest.member(:notification_configuration)
|
1166
|
+
|
1167
|
+
PutBucketNotificationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1168
|
+
PutBucketNotificationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1169
|
+
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/"}}))
|
1170
|
+
PutBucketNotificationRequest.struct_class = Types::PutBucketNotificationRequest
|
1171
|
+
PutBucketNotificationRequest[:payload] = :notification_configuration
|
1172
|
+
PutBucketNotificationRequest[:payload_member] = PutBucketNotificationRequest.member(:notification_configuration)
|
1173
|
+
|
1174
|
+
PutBucketPolicyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1175
|
+
PutBucketPolicyRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1176
|
+
PutBucketPolicyRequest.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, required: true, location_name: "Policy"))
|
1177
|
+
PutBucketPolicyRequest.struct_class = Types::PutBucketPolicyRequest
|
1178
|
+
PutBucketPolicyRequest[:payload] = :policy
|
1179
|
+
PutBucketPolicyRequest[:payload_member] = PutBucketPolicyRequest.member(:policy)
|
1180
|
+
|
1181
|
+
PutBucketReplicationRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1182
|
+
PutBucketReplicationRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1183
|
+
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/"}}))
|
1184
|
+
PutBucketReplicationRequest.struct_class = Types::PutBucketReplicationRequest
|
1185
|
+
PutBucketReplicationRequest[:payload] = :replication_configuration
|
1186
|
+
PutBucketReplicationRequest[:payload_member] = PutBucketReplicationRequest.member(:replication_configuration)
|
1187
|
+
|
1188
|
+
PutBucketRequestPaymentRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1189
|
+
PutBucketRequestPaymentRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1190
|
+
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/"}}))
|
1191
|
+
PutBucketRequestPaymentRequest.struct_class = Types::PutBucketRequestPaymentRequest
|
1192
|
+
PutBucketRequestPaymentRequest[:payload] = :request_payment_configuration
|
1193
|
+
PutBucketRequestPaymentRequest[:payload_member] = PutBucketRequestPaymentRequest.member(:request_payment_configuration)
|
1194
|
+
|
1195
|
+
PutBucketTaggingRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1196
|
+
PutBucketTaggingRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1197
|
+
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/"}}))
|
1198
|
+
PutBucketTaggingRequest.struct_class = Types::PutBucketTaggingRequest
|
1199
|
+
PutBucketTaggingRequest[:payload] = :tagging
|
1200
|
+
PutBucketTaggingRequest[:payload_member] = PutBucketTaggingRequest.member(:tagging)
|
1201
|
+
|
1202
|
+
PutBucketVersioningRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1203
|
+
PutBucketVersioningRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1204
|
+
PutBucketVersioningRequest.add_member(:mfa, Shapes::ShapeRef.new(shape: MFA, location: "header", location_name: "x-amz-mfa"))
|
1205
|
+
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/"}}))
|
1206
|
+
PutBucketVersioningRequest.struct_class = Types::PutBucketVersioningRequest
|
1207
|
+
PutBucketVersioningRequest[:payload] = :versioning_configuration
|
1208
|
+
PutBucketVersioningRequest[:payload_member] = PutBucketVersioningRequest.member(:versioning_configuration)
|
1209
|
+
|
1210
|
+
PutBucketWebsiteRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1211
|
+
PutBucketWebsiteRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1212
|
+
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/"}}))
|
1213
|
+
PutBucketWebsiteRequest.struct_class = Types::PutBucketWebsiteRequest
|
1214
|
+
PutBucketWebsiteRequest[:payload] = :website_configuration
|
1215
|
+
PutBucketWebsiteRequest[:payload_member] = PutBucketWebsiteRequest.member(:website_configuration)
|
1216
|
+
|
1217
|
+
PutObjectAclOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1218
|
+
PutObjectAclOutput.struct_class = Types::PutObjectAclOutput
|
1219
|
+
|
1220
|
+
PutObjectAclRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
1221
|
+
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/"}}))
|
1222
|
+
PutObjectAclRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1223
|
+
PutObjectAclRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1224
|
+
PutObjectAclRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
1225
|
+
PutObjectAclRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
1226
|
+
PutObjectAclRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
1227
|
+
PutObjectAclRequest.add_member(:grant_write, Shapes::ShapeRef.new(shape: GrantWrite, location: "header", location_name: "x-amz-grant-write"))
|
1228
|
+
PutObjectAclRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
1229
|
+
PutObjectAclRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1230
|
+
PutObjectAclRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1231
|
+
PutObjectAclRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1232
|
+
PutObjectAclRequest.struct_class = Types::PutObjectAclRequest
|
1233
|
+
PutObjectAclRequest[:payload] = :access_control_policy
|
1234
|
+
PutObjectAclRequest[:payload_member] = PutObjectAclRequest.member(:access_control_policy)
|
1235
|
+
|
1236
|
+
PutObjectOutput.add_member(:expiration, Shapes::ShapeRef.new(shape: Expiration, location: "header", location_name: "x-amz-expiration"))
|
1237
|
+
PutObjectOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
|
1238
|
+
PutObjectOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
1239
|
+
PutObjectOutput.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "header", location_name: "x-amz-version-id"))
|
1240
|
+
PutObjectOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
1241
|
+
PutObjectOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1242
|
+
PutObjectOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
1243
|
+
PutObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1244
|
+
PutObjectOutput.struct_class = Types::PutObjectOutput
|
1245
|
+
|
1246
|
+
PutObjectRequest.add_member(:acl, Shapes::ShapeRef.new(shape: ObjectCannedACL, location: "header", location_name: "x-amz-acl"))
|
1247
|
+
PutObjectRequest.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
1248
|
+
PutObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1249
|
+
PutObjectRequest.add_member(:cache_control, Shapes::ShapeRef.new(shape: CacheControl, location: "header", location_name: "Cache-Control"))
|
1250
|
+
PutObjectRequest.add_member(:content_disposition, Shapes::ShapeRef.new(shape: ContentDisposition, location: "header", location_name: "Content-Disposition"))
|
1251
|
+
PutObjectRequest.add_member(:content_encoding, Shapes::ShapeRef.new(shape: ContentEncoding, location: "header", location_name: "Content-Encoding"))
|
1252
|
+
PutObjectRequest.add_member(:content_language, Shapes::ShapeRef.new(shape: ContentLanguage, location: "header", location_name: "Content-Language"))
|
1253
|
+
PutObjectRequest.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
1254
|
+
PutObjectRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1255
|
+
PutObjectRequest.add_member(:content_type, Shapes::ShapeRef.new(shape: ContentType, location: "header", location_name: "Content-Type"))
|
1256
|
+
PutObjectRequest.add_member(:expires, Shapes::ShapeRef.new(shape: Expires, location: "header", location_name: "Expires"))
|
1257
|
+
PutObjectRequest.add_member(:grant_full_control, Shapes::ShapeRef.new(shape: GrantFullControl, location: "header", location_name: "x-amz-grant-full-control"))
|
1258
|
+
PutObjectRequest.add_member(:grant_read, Shapes::ShapeRef.new(shape: GrantRead, location: "header", location_name: "x-amz-grant-read"))
|
1259
|
+
PutObjectRequest.add_member(:grant_read_acp, Shapes::ShapeRef.new(shape: GrantReadACP, location: "header", location_name: "x-amz-grant-read-acp"))
|
1260
|
+
PutObjectRequest.add_member(:grant_write_acp, Shapes::ShapeRef.new(shape: GrantWriteACP, location: "header", location_name: "x-amz-grant-write-acp"))
|
1261
|
+
PutObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1262
|
+
PutObjectRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: Metadata, location: "headers", location_name: "x-amz-meta-"))
|
1263
|
+
PutObjectRequest.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
1264
|
+
PutObjectRequest.add_member(:storage_class, Shapes::ShapeRef.new(shape: StorageClass, location: "header", location_name: "x-amz-storage-class"))
|
1265
|
+
PutObjectRequest.add_member(:website_redirect_location, Shapes::ShapeRef.new(shape: WebsiteRedirectLocation, location: "header", location_name: "x-amz-website-redirect-location"))
|
1266
|
+
PutObjectRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
1267
|
+
PutObjectRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
1268
|
+
PutObjectRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1269
|
+
PutObjectRequest.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
1270
|
+
PutObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1271
|
+
PutObjectRequest.struct_class = Types::PutObjectRequest
|
1272
|
+
PutObjectRequest[:payload] = :body
|
1273
|
+
PutObjectRequest[:payload_member] = PutObjectRequest.member(:body)
|
1274
|
+
|
1275
|
+
QueueConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
|
1276
|
+
QueueConfiguration.add_member(:queue_arn, Shapes::ShapeRef.new(shape: QueueArn, required: true, location_name: "Queue"))
|
1277
|
+
QueueConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, required: true, location_name: "Event"))
|
1278
|
+
QueueConfiguration.add_member(:filter, Shapes::ShapeRef.new(shape: NotificationConfigurationFilter, location_name: "Filter"))
|
1279
|
+
QueueConfiguration.struct_class = Types::QueueConfiguration
|
1280
|
+
|
1281
|
+
QueueConfigurationDeprecated.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
|
1282
|
+
QueueConfigurationDeprecated.add_member(:event, Shapes::ShapeRef.new(shape: Event, deprecated: true, location_name: "Event"))
|
1283
|
+
QueueConfigurationDeprecated.add_member(:events, Shapes::ShapeRef.new(shape: EventList, location_name: "Event"))
|
1284
|
+
QueueConfigurationDeprecated.add_member(:queue, Shapes::ShapeRef.new(shape: QueueArn, location_name: "Queue"))
|
1285
|
+
QueueConfigurationDeprecated.struct_class = Types::QueueConfigurationDeprecated
|
1286
|
+
|
1287
|
+
QueueConfigurationList.member = Shapes::ShapeRef.new(shape: QueueConfiguration)
|
1288
|
+
|
1289
|
+
Redirect.add_member(:host_name, Shapes::ShapeRef.new(shape: HostName, location_name: "HostName"))
|
1290
|
+
Redirect.add_member(:http_redirect_code, Shapes::ShapeRef.new(shape: HttpRedirectCode, location_name: "HttpRedirectCode"))
|
1291
|
+
Redirect.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "Protocol"))
|
1292
|
+
Redirect.add_member(:replace_key_prefix_with, Shapes::ShapeRef.new(shape: ReplaceKeyPrefixWith, location_name: "ReplaceKeyPrefixWith"))
|
1293
|
+
Redirect.add_member(:replace_key_with, Shapes::ShapeRef.new(shape: ReplaceKeyWith, location_name: "ReplaceKeyWith"))
|
1294
|
+
Redirect.struct_class = Types::Redirect
|
1295
|
+
|
1296
|
+
RedirectAllRequestsTo.add_member(:host_name, Shapes::ShapeRef.new(shape: HostName, required: true, location_name: "HostName"))
|
1297
|
+
RedirectAllRequestsTo.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "Protocol"))
|
1298
|
+
RedirectAllRequestsTo.struct_class = Types::RedirectAllRequestsTo
|
1299
|
+
|
1300
|
+
ReplicationConfiguration.add_member(:role, Shapes::ShapeRef.new(shape: Role, required: true, location_name: "Role"))
|
1301
|
+
ReplicationConfiguration.add_member(:rules, Shapes::ShapeRef.new(shape: ReplicationRules, required: true, location_name: "Rule"))
|
1302
|
+
ReplicationConfiguration.struct_class = Types::ReplicationConfiguration
|
1303
|
+
|
1304
|
+
ReplicationRule.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
|
1305
|
+
ReplicationRule.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, required: true, location_name: "Prefix"))
|
1306
|
+
ReplicationRule.add_member(:status, Shapes::ShapeRef.new(shape: ReplicationRuleStatus, required: true, location_name: "Status"))
|
1307
|
+
ReplicationRule.add_member(:destination, Shapes::ShapeRef.new(shape: Destination, required: true, location_name: "Destination"))
|
1308
|
+
ReplicationRule.struct_class = Types::ReplicationRule
|
1309
|
+
|
1310
|
+
ReplicationRules.member = Shapes::ShapeRef.new(shape: ReplicationRule)
|
1311
|
+
|
1312
|
+
RequestPaymentConfiguration.add_member(:payer, Shapes::ShapeRef.new(shape: Payer, required: true, location_name: "Payer"))
|
1313
|
+
RequestPaymentConfiguration.struct_class = Types::RequestPaymentConfiguration
|
1314
|
+
|
1315
|
+
RestoreObjectOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1316
|
+
RestoreObjectOutput.struct_class = Types::RestoreObjectOutput
|
1317
|
+
|
1318
|
+
RestoreObjectRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1319
|
+
RestoreObjectRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1320
|
+
RestoreObjectRequest.add_member(:version_id, Shapes::ShapeRef.new(shape: ObjectVersionId, location: "querystring", location_name: "versionId"))
|
1321
|
+
RestoreObjectRequest.add_member(:restore_request, Shapes::ShapeRef.new(shape: RestoreRequest, location_name: "RestoreRequest", metadata: {"xmlNamespace"=>{"uri"=>"http://s3.amazonaws.com/doc/2006-03-01/"}}))
|
1322
|
+
RestoreObjectRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1323
|
+
RestoreObjectRequest.struct_class = Types::RestoreObjectRequest
|
1324
|
+
RestoreObjectRequest[:payload] = :restore_request
|
1325
|
+
RestoreObjectRequest[:payload_member] = RestoreObjectRequest.member(:restore_request)
|
1326
|
+
|
1327
|
+
RestoreRequest.add_member(:days, Shapes::ShapeRef.new(shape: Days, required: true, location_name: "Days"))
|
1328
|
+
RestoreRequest.add_member(:glacier_job_parameters, Shapes::ShapeRef.new(shape: GlacierJobParameters, location_name: "GlacierJobParameters"))
|
1329
|
+
RestoreRequest.struct_class = Types::RestoreRequest
|
1330
|
+
|
1331
|
+
RoutingRule.add_member(:condition, Shapes::ShapeRef.new(shape: Condition, location_name: "Condition"))
|
1332
|
+
RoutingRule.add_member(:redirect, Shapes::ShapeRef.new(shape: Redirect, required: true, location_name: "Redirect"))
|
1333
|
+
RoutingRule.struct_class = Types::RoutingRule
|
1334
|
+
|
1335
|
+
RoutingRules.member = Shapes::ShapeRef.new(shape: RoutingRule, location_name: "RoutingRule")
|
1336
|
+
|
1337
|
+
Rule.add_member(:expiration, Shapes::ShapeRef.new(shape: LifecycleExpiration, location_name: "Expiration"))
|
1338
|
+
Rule.add_member(:id, Shapes::ShapeRef.new(shape: ID, location_name: "ID"))
|
1339
|
+
Rule.add_member(:prefix, Shapes::ShapeRef.new(shape: Prefix, required: true, location_name: "Prefix"))
|
1340
|
+
Rule.add_member(:status, Shapes::ShapeRef.new(shape: ExpirationStatus, required: true, location_name: "Status"))
|
1341
|
+
Rule.add_member(:transition, Shapes::ShapeRef.new(shape: Transition, location_name: "Transition"))
|
1342
|
+
Rule.add_member(:noncurrent_version_transition, Shapes::ShapeRef.new(shape: NoncurrentVersionTransition, location_name: "NoncurrentVersionTransition"))
|
1343
|
+
Rule.add_member(:noncurrent_version_expiration, Shapes::ShapeRef.new(shape: NoncurrentVersionExpiration, location_name: "NoncurrentVersionExpiration"))
|
1344
|
+
Rule.add_member(:abort_incomplete_multipart_upload, Shapes::ShapeRef.new(shape: AbortIncompleteMultipartUpload, location_name: "AbortIncompleteMultipartUpload"))
|
1345
|
+
Rule.struct_class = Types::Rule
|
1346
|
+
|
1347
|
+
Rules.member = Shapes::ShapeRef.new(shape: Rule)
|
1348
|
+
|
1349
|
+
S3KeyFilter.add_member(:filter_rules, Shapes::ShapeRef.new(shape: FilterRuleList, location_name: "FilterRule"))
|
1350
|
+
S3KeyFilter.struct_class = Types::S3KeyFilter
|
1351
|
+
|
1352
|
+
Tag.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location_name: "Key"))
|
1353
|
+
Tag.add_member(:value, Shapes::ShapeRef.new(shape: Value, required: true, location_name: "Value"))
|
1354
|
+
Tag.struct_class = Types::Tag
|
1355
|
+
|
1356
|
+
TagSet.member = Shapes::ShapeRef.new(shape: Tag, location_name: "Tag")
|
1357
|
+
|
1358
|
+
Tagging.add_member(:tag_set, Shapes::ShapeRef.new(shape: TagSet, required: true, location_name: "TagSet"))
|
1359
|
+
Tagging.struct_class = Types::Tagging
|
1360
|
+
|
1361
|
+
TargetGrant.add_member(:grantee, Shapes::ShapeRef.new(shape: Grantee, location_name: "Grantee"))
|
1362
|
+
TargetGrant.add_member(:permission, Shapes::ShapeRef.new(shape: BucketLogsPermission, location_name: "Permission"))
|
1363
|
+
TargetGrant.struct_class = Types::TargetGrant
|
1364
|
+
|
1365
|
+
TargetGrants.member = Shapes::ShapeRef.new(shape: TargetGrant, location_name: "Grant")
|
1366
|
+
|
1367
|
+
TopicConfiguration.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
|
1368
|
+
TopicConfiguration.add_member(:topic_arn, Shapes::ShapeRef.new(shape: TopicArn, required: true, location_name: "Topic"))
|
1369
|
+
TopicConfiguration.add_member(:events, Shapes::ShapeRef.new(shape: EventList, required: true, location_name: "Event"))
|
1370
|
+
TopicConfiguration.add_member(:filter, Shapes::ShapeRef.new(shape: NotificationConfigurationFilter, location_name: "Filter"))
|
1371
|
+
TopicConfiguration.struct_class = Types::TopicConfiguration
|
1372
|
+
|
1373
|
+
TopicConfigurationDeprecated.add_member(:id, Shapes::ShapeRef.new(shape: NotificationId, location_name: "Id"))
|
1374
|
+
TopicConfigurationDeprecated.add_member(:events, Shapes::ShapeRef.new(shape: EventList, location_name: "Event"))
|
1375
|
+
TopicConfigurationDeprecated.add_member(:event, Shapes::ShapeRef.new(shape: Event, deprecated: true, location_name: "Event"))
|
1376
|
+
TopicConfigurationDeprecated.add_member(:topic, Shapes::ShapeRef.new(shape: TopicArn, location_name: "Topic"))
|
1377
|
+
TopicConfigurationDeprecated.struct_class = Types::TopicConfigurationDeprecated
|
1378
|
+
|
1379
|
+
TopicConfigurationList.member = Shapes::ShapeRef.new(shape: TopicConfiguration)
|
1380
|
+
|
1381
|
+
Transition.add_member(:date, Shapes::ShapeRef.new(shape: Date, location_name: "Date"))
|
1382
|
+
Transition.add_member(:days, Shapes::ShapeRef.new(shape: Days, location_name: "Days"))
|
1383
|
+
Transition.add_member(:storage_class, Shapes::ShapeRef.new(shape: TransitionStorageClass, location_name: "StorageClass"))
|
1384
|
+
Transition.struct_class = Types::Transition
|
1385
|
+
|
1386
|
+
TransitionList.member = Shapes::ShapeRef.new(shape: Transition)
|
1387
|
+
|
1388
|
+
UploadPartCopyOutput.add_member(:copy_source_version_id, Shapes::ShapeRef.new(shape: CopySourceVersionId, location: "header", location_name: "x-amz-copy-source-version-id"))
|
1389
|
+
UploadPartCopyOutput.add_member(:copy_part_result, Shapes::ShapeRef.new(shape: CopyPartResult, location_name: "CopyPartResult"))
|
1390
|
+
UploadPartCopyOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
1391
|
+
UploadPartCopyOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
1392
|
+
UploadPartCopyOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1393
|
+
UploadPartCopyOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
1394
|
+
UploadPartCopyOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1395
|
+
UploadPartCopyOutput.struct_class = Types::UploadPartCopyOutput
|
1396
|
+
UploadPartCopyOutput[:payload] = :copy_part_result
|
1397
|
+
UploadPartCopyOutput[:payload_member] = UploadPartCopyOutput.member(:copy_part_result)
|
1398
|
+
|
1399
|
+
UploadPartCopyRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1400
|
+
UploadPartCopyRequest.add_member(:copy_source, Shapes::ShapeRef.new(shape: CopySource, required: true, location: "header", location_name: "x-amz-copy-source"))
|
1401
|
+
UploadPartCopyRequest.add_member(:copy_source_if_match, Shapes::ShapeRef.new(shape: CopySourceIfMatch, location: "header", location_name: "x-amz-copy-source-if-match"))
|
1402
|
+
UploadPartCopyRequest.add_member(:copy_source_if_modified_since, Shapes::ShapeRef.new(shape: CopySourceIfModifiedSince, location: "header", location_name: "x-amz-copy-source-if-modified-since"))
|
1403
|
+
UploadPartCopyRequest.add_member(:copy_source_if_none_match, Shapes::ShapeRef.new(shape: CopySourceIfNoneMatch, location: "header", location_name: "x-amz-copy-source-if-none-match"))
|
1404
|
+
UploadPartCopyRequest.add_member(:copy_source_if_unmodified_since, Shapes::ShapeRef.new(shape: CopySourceIfUnmodifiedSince, location: "header", location_name: "x-amz-copy-source-if-unmodified-since"))
|
1405
|
+
UploadPartCopyRequest.add_member(:copy_source_range, Shapes::ShapeRef.new(shape: CopySourceRange, location: "header", location_name: "x-amz-copy-source-range"))
|
1406
|
+
UploadPartCopyRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1407
|
+
UploadPartCopyRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, required: true, location: "querystring", location_name: "partNumber"))
|
1408
|
+
UploadPartCopyRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
1409
|
+
UploadPartCopyRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
1410
|
+
UploadPartCopyRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
1411
|
+
UploadPartCopyRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1412
|
+
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"))
|
1413
|
+
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"))
|
1414
|
+
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"))
|
1415
|
+
UploadPartCopyRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1416
|
+
UploadPartCopyRequest.struct_class = Types::UploadPartCopyRequest
|
1417
|
+
|
1418
|
+
UploadPartOutput.add_member(:server_side_encryption, Shapes::ShapeRef.new(shape: ServerSideEncryption, location: "header", location_name: "x-amz-server-side-encryption"))
|
1419
|
+
UploadPartOutput.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location: "header", location_name: "ETag"))
|
1420
|
+
UploadPartOutput.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
1421
|
+
UploadPartOutput.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1422
|
+
UploadPartOutput.add_member(:ssekms_key_id, Shapes::ShapeRef.new(shape: SSEKMSKeyId, location: "header", location_name: "x-amz-server-side-encryption-aws-kms-key-id"))
|
1423
|
+
UploadPartOutput.add_member(:request_charged, Shapes::ShapeRef.new(shape: RequestCharged, location: "header", location_name: "x-amz-request-charged"))
|
1424
|
+
UploadPartOutput.struct_class = Types::UploadPartOutput
|
1425
|
+
|
1426
|
+
UploadPartRequest.add_member(:body, Shapes::ShapeRef.new(shape: Body, location_name: "Body", metadata: {"streaming"=>true}))
|
1427
|
+
UploadPartRequest.add_member(:bucket, Shapes::ShapeRef.new(shape: BucketName, required: true, location: "uri", location_name: "Bucket"))
|
1428
|
+
UploadPartRequest.add_member(:content_length, Shapes::ShapeRef.new(shape: ContentLength, location: "header", location_name: "Content-Length"))
|
1429
|
+
UploadPartRequest.add_member(:content_md5, Shapes::ShapeRef.new(shape: ContentMD5, location: "header", location_name: "Content-MD5"))
|
1430
|
+
UploadPartRequest.add_member(:key, Shapes::ShapeRef.new(shape: ObjectKey, required: true, location: "uri", location_name: "Key"))
|
1431
|
+
UploadPartRequest.add_member(:part_number, Shapes::ShapeRef.new(shape: PartNumber, required: true, location: "querystring", location_name: "partNumber"))
|
1432
|
+
UploadPartRequest.add_member(:upload_id, Shapes::ShapeRef.new(shape: MultipartUploadId, required: true, location: "querystring", location_name: "uploadId"))
|
1433
|
+
UploadPartRequest.add_member(:sse_customer_algorithm, Shapes::ShapeRef.new(shape: SSECustomerAlgorithm, location: "header", location_name: "x-amz-server-side-encryption-customer-algorithm"))
|
1434
|
+
UploadPartRequest.add_member(:sse_customer_key, Shapes::ShapeRef.new(shape: SSECustomerKey, location: "header", location_name: "x-amz-server-side-encryption-customer-key"))
|
1435
|
+
UploadPartRequest.add_member(:sse_customer_key_md5, Shapes::ShapeRef.new(shape: SSECustomerKeyMD5, location: "header", location_name: "x-amz-server-side-encryption-customer-key-MD5"))
|
1436
|
+
UploadPartRequest.add_member(:request_payer, Shapes::ShapeRef.new(shape: RequestPayer, location: "header", location_name: "x-amz-request-payer"))
|
1437
|
+
UploadPartRequest.struct_class = Types::UploadPartRequest
|
1438
|
+
UploadPartRequest[:payload] = :body
|
1439
|
+
UploadPartRequest[:payload_member] = UploadPartRequest.member(:body)
|
1440
|
+
|
1441
|
+
VersioningConfiguration.add_member(:mfa_delete, Shapes::ShapeRef.new(shape: MFADelete, location_name: "MfaDelete"))
|
1442
|
+
VersioningConfiguration.add_member(:status, Shapes::ShapeRef.new(shape: BucketVersioningStatus, location_name: "Status"))
|
1443
|
+
VersioningConfiguration.struct_class = Types::VersioningConfiguration
|
1444
|
+
|
1445
|
+
WebsiteConfiguration.add_member(:error_document, Shapes::ShapeRef.new(shape: ErrorDocument, location_name: "ErrorDocument"))
|
1446
|
+
WebsiteConfiguration.add_member(:index_document, Shapes::ShapeRef.new(shape: IndexDocument, location_name: "IndexDocument"))
|
1447
|
+
WebsiteConfiguration.add_member(:redirect_all_requests_to, Shapes::ShapeRef.new(shape: RedirectAllRequestsTo, location_name: "RedirectAllRequestsTo"))
|
1448
|
+
WebsiteConfiguration.add_member(:routing_rules, Shapes::ShapeRef.new(shape: RoutingRules, location_name: "RoutingRules"))
|
1449
|
+
WebsiteConfiguration.struct_class = Types::WebsiteConfiguration
|
1450
|
+
|
1451
|
+
|
1452
|
+
# @api private
|
1453
|
+
API = Seahorse::Model::Api.new.tap do |api|
|
1454
|
+
|
1455
|
+
api.version = "2006-03-01"
|
1456
|
+
|
1457
|
+
api.metadata = {
|
1458
|
+
"endpointPrefix" => "s3",
|
1459
|
+
"protocol" => "rest-xml",
|
1460
|
+
"serviceFullName" => "Amazon Simple Storage Service",
|
1461
|
+
"timestampFormat" => "rfc822",
|
1462
|
+
}
|
1463
|
+
|
1464
|
+
api.add_operation(:abort_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
|
1465
|
+
o.name = "AbortMultipartUpload"
|
1466
|
+
o.http_method = "DELETE"
|
1467
|
+
o.http_request_uri = "/{Bucket}/{Key+}"
|
1468
|
+
o.input = Shapes::ShapeRef.new(shape: AbortMultipartUploadRequest)
|
1469
|
+
o.output = Shapes::ShapeRef.new(shape: AbortMultipartUploadOutput)
|
1470
|
+
o.errors << Shapes::ShapeRef.new(shape: NoSuchUpload)
|
1471
|
+
end)
|
1472
|
+
|
1473
|
+
api.add_operation(:complete_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
|
1474
|
+
o.name = "CompleteMultipartUpload"
|
1475
|
+
o.http_method = "POST"
|
1476
|
+
o.http_request_uri = "/{Bucket}/{Key+}"
|
1477
|
+
o.input = Shapes::ShapeRef.new(shape: CompleteMultipartUploadRequest)
|
1478
|
+
o.output = Shapes::ShapeRef.new(shape: CompleteMultipartUploadOutput)
|
1479
|
+
end)
|
1480
|
+
|
1481
|
+
api.add_operation(:copy_object, Seahorse::Model::Operation.new.tap do |o|
|
1482
|
+
o.name = "CopyObject"
|
1483
|
+
o.http_method = "PUT"
|
1484
|
+
o.http_request_uri = "/{Bucket}/{Key+}"
|
1485
|
+
o.input = Shapes::ShapeRef.new(shape: CopyObjectRequest)
|
1486
|
+
o.output = Shapes::ShapeRef.new(shape: CopyObjectOutput)
|
1487
|
+
o.errors << Shapes::ShapeRef.new(shape: ObjectNotInActiveTierError)
|
1488
|
+
end)
|
1489
|
+
|
1490
|
+
api.add_operation(:create_bucket, Seahorse::Model::Operation.new.tap do |o|
|
1491
|
+
o.name = "CreateBucket"
|
1492
|
+
o.http_method = "PUT"
|
1493
|
+
o.http_request_uri = "/{Bucket}"
|
1494
|
+
o.input = Shapes::ShapeRef.new(shape: CreateBucketRequest)
|
1495
|
+
o.output = Shapes::ShapeRef.new(shape: CreateBucketOutput)
|
1496
|
+
o.errors << Shapes::ShapeRef.new(shape: BucketAlreadyExists)
|
1497
|
+
o.errors << Shapes::ShapeRef.new(shape: BucketAlreadyOwnedByYou)
|
1498
|
+
end)
|
1499
|
+
|
1500
|
+
api.add_operation(:create_multipart_upload, Seahorse::Model::Operation.new.tap do |o|
|
1501
|
+
o.name = "CreateMultipartUpload"
|
1502
|
+
o.http_method = "POST"
|
1503
|
+
o.http_request_uri = "/{Bucket}/{Key+}?uploads"
|
1504
|
+
o.input = Shapes::ShapeRef.new(shape: CreateMultipartUploadRequest)
|
1505
|
+
o.output = Shapes::ShapeRef.new(shape: CreateMultipartUploadOutput)
|
1506
|
+
end)
|
1507
|
+
|
1508
|
+
api.add_operation(:delete_bucket, Seahorse::Model::Operation.new.tap do |o|
|
1509
|
+
o.name = "DeleteBucket"
|
1510
|
+
o.http_method = "DELETE"
|
1511
|
+
o.http_request_uri = "/{Bucket}"
|
1512
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteBucketRequest)
|
1513
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1514
|
+
end)
|
1515
|
+
|
1516
|
+
api.add_operation(:delete_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
|
1517
|
+
o.name = "DeleteBucketCors"
|
1518
|
+
o.http_method = "DELETE"
|
1519
|
+
o.http_request_uri = "/{Bucket}?cors"
|
1520
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteBucketCorsRequest)
|
1521
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1522
|
+
end)
|
1523
|
+
|
1524
|
+
api.add_operation(:delete_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
|
1525
|
+
o.name = "DeleteBucketLifecycle"
|
1526
|
+
o.http_method = "DELETE"
|
1527
|
+
o.http_request_uri = "/{Bucket}?lifecycle"
|
1528
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteBucketLifecycleRequest)
|
1529
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1530
|
+
end)
|
1531
|
+
|
1532
|
+
api.add_operation(:delete_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
1533
|
+
o.name = "DeleteBucketPolicy"
|
1534
|
+
o.http_method = "DELETE"
|
1535
|
+
o.http_request_uri = "/{Bucket}?policy"
|
1536
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteBucketPolicyRequest)
|
1537
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1538
|
+
end)
|
1539
|
+
|
1540
|
+
api.add_operation(:delete_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
|
1541
|
+
o.name = "DeleteBucketReplication"
|
1542
|
+
o.http_method = "DELETE"
|
1543
|
+
o.http_request_uri = "/{Bucket}?replication"
|
1544
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteBucketReplicationRequest)
|
1545
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1546
|
+
end)
|
1547
|
+
|
1548
|
+
api.add_operation(:delete_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
|
1549
|
+
o.name = "DeleteBucketTagging"
|
1550
|
+
o.http_method = "DELETE"
|
1551
|
+
o.http_request_uri = "/{Bucket}?tagging"
|
1552
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteBucketTaggingRequest)
|
1553
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1554
|
+
end)
|
1555
|
+
|
1556
|
+
api.add_operation(:delete_bucket_website, Seahorse::Model::Operation.new.tap do |o|
|
1557
|
+
o.name = "DeleteBucketWebsite"
|
1558
|
+
o.http_method = "DELETE"
|
1559
|
+
o.http_request_uri = "/{Bucket}?website"
|
1560
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteBucketWebsiteRequest)
|
1561
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1562
|
+
end)
|
1563
|
+
|
1564
|
+
api.add_operation(:delete_object, Seahorse::Model::Operation.new.tap do |o|
|
1565
|
+
o.name = "DeleteObject"
|
1566
|
+
o.http_method = "DELETE"
|
1567
|
+
o.http_request_uri = "/{Bucket}/{Key+}"
|
1568
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteObjectRequest)
|
1569
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteObjectOutput)
|
1570
|
+
end)
|
1571
|
+
|
1572
|
+
api.add_operation(:delete_objects, Seahorse::Model::Operation.new.tap do |o|
|
1573
|
+
o.name = "DeleteObjects"
|
1574
|
+
o.http_method = "POST"
|
1575
|
+
o.http_request_uri = "/{Bucket}?delete"
|
1576
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteObjectsRequest)
|
1577
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteObjectsOutput)
|
1578
|
+
end)
|
1579
|
+
|
1580
|
+
api.add_operation(:get_bucket_accelerate_configuration, Seahorse::Model::Operation.new.tap do |o|
|
1581
|
+
o.name = "GetBucketAccelerateConfiguration"
|
1582
|
+
o.http_method = "GET"
|
1583
|
+
o.http_request_uri = "/{Bucket}?accelerate"
|
1584
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketAccelerateConfigurationRequest)
|
1585
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketAccelerateConfigurationOutput)
|
1586
|
+
end)
|
1587
|
+
|
1588
|
+
api.add_operation(:get_bucket_acl, Seahorse::Model::Operation.new.tap do |o|
|
1589
|
+
o.name = "GetBucketAcl"
|
1590
|
+
o.http_method = "GET"
|
1591
|
+
o.http_request_uri = "/{Bucket}?acl"
|
1592
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketAclRequest)
|
1593
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketAclOutput)
|
1594
|
+
end)
|
1595
|
+
|
1596
|
+
api.add_operation(:get_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
|
1597
|
+
o.name = "GetBucketCors"
|
1598
|
+
o.http_method = "GET"
|
1599
|
+
o.http_request_uri = "/{Bucket}?cors"
|
1600
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketCorsRequest)
|
1601
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketCorsOutput)
|
1602
|
+
end)
|
1603
|
+
|
1604
|
+
api.add_operation(:get_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
|
1605
|
+
o.name = "GetBucketLifecycle"
|
1606
|
+
o.http_method = "GET"
|
1607
|
+
o.http_request_uri = "/{Bucket}?lifecycle"
|
1608
|
+
o.deprecated = true
|
1609
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketLifecycleRequest)
|
1610
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketLifecycleOutput)
|
1611
|
+
end)
|
1612
|
+
|
1613
|
+
api.add_operation(:get_bucket_lifecycle_configuration, Seahorse::Model::Operation.new.tap do |o|
|
1614
|
+
o.name = "GetBucketLifecycleConfiguration"
|
1615
|
+
o.http_method = "GET"
|
1616
|
+
o.http_request_uri = "/{Bucket}?lifecycle"
|
1617
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketLifecycleConfigurationRequest)
|
1618
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketLifecycleConfigurationOutput)
|
1619
|
+
end)
|
1620
|
+
|
1621
|
+
api.add_operation(:get_bucket_location, Seahorse::Model::Operation.new.tap do |o|
|
1622
|
+
o.name = "GetBucketLocation"
|
1623
|
+
o.http_method = "GET"
|
1624
|
+
o.http_request_uri = "/{Bucket}?location"
|
1625
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketLocationRequest)
|
1626
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketLocationOutput)
|
1627
|
+
end)
|
1628
|
+
|
1629
|
+
api.add_operation(:get_bucket_logging, Seahorse::Model::Operation.new.tap do |o|
|
1630
|
+
o.name = "GetBucketLogging"
|
1631
|
+
o.http_method = "GET"
|
1632
|
+
o.http_request_uri = "/{Bucket}?logging"
|
1633
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketLoggingRequest)
|
1634
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketLoggingOutput)
|
1635
|
+
end)
|
1636
|
+
|
1637
|
+
api.add_operation(:get_bucket_notification, Seahorse::Model::Operation.new.tap do |o|
|
1638
|
+
o.name = "GetBucketNotification"
|
1639
|
+
o.http_method = "GET"
|
1640
|
+
o.http_request_uri = "/{Bucket}?notification"
|
1641
|
+
o.deprecated = true
|
1642
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketNotificationConfigurationRequest)
|
1643
|
+
o.output = Shapes::ShapeRef.new(shape: NotificationConfigurationDeprecated)
|
1644
|
+
end)
|
1645
|
+
|
1646
|
+
api.add_operation(:get_bucket_notification_configuration, Seahorse::Model::Operation.new.tap do |o|
|
1647
|
+
o.name = "GetBucketNotificationConfiguration"
|
1648
|
+
o.http_method = "GET"
|
1649
|
+
o.http_request_uri = "/{Bucket}?notification"
|
1650
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketNotificationConfigurationRequest)
|
1651
|
+
o.output = Shapes::ShapeRef.new(shape: NotificationConfiguration)
|
1652
|
+
end)
|
1653
|
+
|
1654
|
+
api.add_operation(:get_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
1655
|
+
o.name = "GetBucketPolicy"
|
1656
|
+
o.http_method = "GET"
|
1657
|
+
o.http_request_uri = "/{Bucket}?policy"
|
1658
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketPolicyRequest)
|
1659
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketPolicyOutput)
|
1660
|
+
end)
|
1661
|
+
|
1662
|
+
api.add_operation(:get_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
|
1663
|
+
o.name = "GetBucketReplication"
|
1664
|
+
o.http_method = "GET"
|
1665
|
+
o.http_request_uri = "/{Bucket}?replication"
|
1666
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketReplicationRequest)
|
1667
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketReplicationOutput)
|
1668
|
+
end)
|
1669
|
+
|
1670
|
+
api.add_operation(:get_bucket_request_payment, Seahorse::Model::Operation.new.tap do |o|
|
1671
|
+
o.name = "GetBucketRequestPayment"
|
1672
|
+
o.http_method = "GET"
|
1673
|
+
o.http_request_uri = "/{Bucket}?requestPayment"
|
1674
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketRequestPaymentRequest)
|
1675
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketRequestPaymentOutput)
|
1676
|
+
end)
|
1677
|
+
|
1678
|
+
api.add_operation(:get_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
|
1679
|
+
o.name = "GetBucketTagging"
|
1680
|
+
o.http_method = "GET"
|
1681
|
+
o.http_request_uri = "/{Bucket}?tagging"
|
1682
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketTaggingRequest)
|
1683
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketTaggingOutput)
|
1684
|
+
end)
|
1685
|
+
|
1686
|
+
api.add_operation(:get_bucket_versioning, Seahorse::Model::Operation.new.tap do |o|
|
1687
|
+
o.name = "GetBucketVersioning"
|
1688
|
+
o.http_method = "GET"
|
1689
|
+
o.http_request_uri = "/{Bucket}?versioning"
|
1690
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketVersioningRequest)
|
1691
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketVersioningOutput)
|
1692
|
+
end)
|
1693
|
+
|
1694
|
+
api.add_operation(:get_bucket_website, Seahorse::Model::Operation.new.tap do |o|
|
1695
|
+
o.name = "GetBucketWebsite"
|
1696
|
+
o.http_method = "GET"
|
1697
|
+
o.http_request_uri = "/{Bucket}?website"
|
1698
|
+
o.input = Shapes::ShapeRef.new(shape: GetBucketWebsiteRequest)
|
1699
|
+
o.output = Shapes::ShapeRef.new(shape: GetBucketWebsiteOutput)
|
1700
|
+
end)
|
1701
|
+
|
1702
|
+
api.add_operation(:get_object, Seahorse::Model::Operation.new.tap do |o|
|
1703
|
+
o.name = "GetObject"
|
1704
|
+
o.http_method = "GET"
|
1705
|
+
o.http_request_uri = "/{Bucket}/{Key+}"
|
1706
|
+
o.input = Shapes::ShapeRef.new(shape: GetObjectRequest)
|
1707
|
+
o.output = Shapes::ShapeRef.new(shape: GetObjectOutput)
|
1708
|
+
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
1709
|
+
end)
|
1710
|
+
|
1711
|
+
api.add_operation(:get_object_acl, Seahorse::Model::Operation.new.tap do |o|
|
1712
|
+
o.name = "GetObjectAcl"
|
1713
|
+
o.http_method = "GET"
|
1714
|
+
o.http_request_uri = "/{Bucket}/{Key+}?acl"
|
1715
|
+
o.input = Shapes::ShapeRef.new(shape: GetObjectAclRequest)
|
1716
|
+
o.output = Shapes::ShapeRef.new(shape: GetObjectAclOutput)
|
1717
|
+
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
1718
|
+
end)
|
1719
|
+
|
1720
|
+
api.add_operation(:get_object_torrent, Seahorse::Model::Operation.new.tap do |o|
|
1721
|
+
o.name = "GetObjectTorrent"
|
1722
|
+
o.http_method = "GET"
|
1723
|
+
o.http_request_uri = "/{Bucket}/{Key+}?torrent"
|
1724
|
+
o.input = Shapes::ShapeRef.new(shape: GetObjectTorrentRequest)
|
1725
|
+
o.output = Shapes::ShapeRef.new(shape: GetObjectTorrentOutput)
|
1726
|
+
end)
|
1727
|
+
|
1728
|
+
api.add_operation(:head_bucket, Seahorse::Model::Operation.new.tap do |o|
|
1729
|
+
o.name = "HeadBucket"
|
1730
|
+
o.http_method = "HEAD"
|
1731
|
+
o.http_request_uri = "/{Bucket}"
|
1732
|
+
o.input = Shapes::ShapeRef.new(shape: HeadBucketRequest)
|
1733
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1734
|
+
o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
|
1735
|
+
end)
|
1736
|
+
|
1737
|
+
api.add_operation(:head_object, Seahorse::Model::Operation.new.tap do |o|
|
1738
|
+
o.name = "HeadObject"
|
1739
|
+
o.http_method = "HEAD"
|
1740
|
+
o.http_request_uri = "/{Bucket}/{Key+}"
|
1741
|
+
o.input = Shapes::ShapeRef.new(shape: HeadObjectRequest)
|
1742
|
+
o.output = Shapes::ShapeRef.new(shape: HeadObjectOutput)
|
1743
|
+
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
1744
|
+
end)
|
1745
|
+
|
1746
|
+
api.add_operation(:list_buckets, Seahorse::Model::Operation.new.tap do |o|
|
1747
|
+
o.name = "ListBuckets"
|
1748
|
+
o.http_method = "GET"
|
1749
|
+
o.http_request_uri = "/"
|
1750
|
+
o.input = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1751
|
+
o.output = Shapes::ShapeRef.new(shape: ListBucketsOutput)
|
1752
|
+
end)
|
1753
|
+
|
1754
|
+
api.add_operation(:list_multipart_uploads, Seahorse::Model::Operation.new.tap do |o|
|
1755
|
+
o.name = "ListMultipartUploads"
|
1756
|
+
o.http_method = "GET"
|
1757
|
+
o.http_request_uri = "/{Bucket}?uploads"
|
1758
|
+
o.input = Shapes::ShapeRef.new(shape: ListMultipartUploadsRequest)
|
1759
|
+
o.output = Shapes::ShapeRef.new(shape: ListMultipartUploadsOutput)
|
1760
|
+
o[:pager] = Aws::Pager.new(
|
1761
|
+
more_results: "is_truncated",
|
1762
|
+
limit_key: "max_uploads",
|
1763
|
+
tokens: {
|
1764
|
+
"next_key_marker" => "key_marker",
|
1765
|
+
"next_upload_id_marker" => "upload_id_marker"
|
1766
|
+
}
|
1767
|
+
)
|
1768
|
+
end)
|
1769
|
+
|
1770
|
+
api.add_operation(:list_object_versions, Seahorse::Model::Operation.new.tap do |o|
|
1771
|
+
o.name = "ListObjectVersions"
|
1772
|
+
o.http_method = "GET"
|
1773
|
+
o.http_request_uri = "/{Bucket}?versions"
|
1774
|
+
o.input = Shapes::ShapeRef.new(shape: ListObjectVersionsRequest)
|
1775
|
+
o.output = Shapes::ShapeRef.new(shape: ListObjectVersionsOutput)
|
1776
|
+
o[:pager] = Aws::Pager.new(
|
1777
|
+
more_results: "is_truncated",
|
1778
|
+
limit_key: "max_keys",
|
1779
|
+
tokens: {
|
1780
|
+
"next_key_marker" => "key_marker",
|
1781
|
+
"next_version_id_marker" => "version_id_marker"
|
1782
|
+
}
|
1783
|
+
)
|
1784
|
+
end)
|
1785
|
+
|
1786
|
+
api.add_operation(:list_objects, Seahorse::Model::Operation.new.tap do |o|
|
1787
|
+
o.name = "ListObjects"
|
1788
|
+
o.http_method = "GET"
|
1789
|
+
o.http_request_uri = "/{Bucket}"
|
1790
|
+
o.input = Shapes::ShapeRef.new(shape: ListObjectsRequest)
|
1791
|
+
o.output = Shapes::ShapeRef.new(shape: ListObjectsOutput)
|
1792
|
+
o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
|
1793
|
+
o[:pager] = Aws::Pager.new(
|
1794
|
+
more_results: "is_truncated",
|
1795
|
+
limit_key: "max_keys",
|
1796
|
+
tokens: {
|
1797
|
+
"next_marker || contents[-1].key" => "marker"
|
1798
|
+
}
|
1799
|
+
)
|
1800
|
+
end)
|
1801
|
+
|
1802
|
+
api.add_operation(:list_objects_v2, Seahorse::Model::Operation.new.tap do |o|
|
1803
|
+
o.name = "ListObjectsV2"
|
1804
|
+
o.http_method = "GET"
|
1805
|
+
o.http_request_uri = "/{Bucket}?list-type=2"
|
1806
|
+
o.input = Shapes::ShapeRef.new(shape: ListObjectsV2Request)
|
1807
|
+
o.output = Shapes::ShapeRef.new(shape: ListObjectsV2Output)
|
1808
|
+
o.errors << Shapes::ShapeRef.new(shape: NoSuchBucket)
|
1809
|
+
o[:pager] = Aws::Pager.new(
|
1810
|
+
limit_key: "max_keys",
|
1811
|
+
tokens: {
|
1812
|
+
"next_continuation_token" => "continuation_token"
|
1813
|
+
}
|
1814
|
+
)
|
1815
|
+
end)
|
1816
|
+
|
1817
|
+
api.add_operation(:list_parts, Seahorse::Model::Operation.new.tap do |o|
|
1818
|
+
o.name = "ListParts"
|
1819
|
+
o.http_method = "GET"
|
1820
|
+
o.http_request_uri = "/{Bucket}/{Key+}"
|
1821
|
+
o.input = Shapes::ShapeRef.new(shape: ListPartsRequest)
|
1822
|
+
o.output = Shapes::ShapeRef.new(shape: ListPartsOutput)
|
1823
|
+
o[:pager] = Aws::Pager.new(
|
1824
|
+
more_results: "is_truncated",
|
1825
|
+
limit_key: "max_parts",
|
1826
|
+
tokens: {
|
1827
|
+
"next_part_number_marker" => "part_number_marker"
|
1828
|
+
}
|
1829
|
+
)
|
1830
|
+
end)
|
1831
|
+
|
1832
|
+
api.add_operation(:put_bucket_accelerate_configuration, Seahorse::Model::Operation.new.tap do |o|
|
1833
|
+
o.name = "PutBucketAccelerateConfiguration"
|
1834
|
+
o.http_method = "PUT"
|
1835
|
+
o.http_request_uri = "/{Bucket}?accelerate"
|
1836
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketAccelerateConfigurationRequest)
|
1837
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1838
|
+
end)
|
1839
|
+
|
1840
|
+
api.add_operation(:put_bucket_acl, Seahorse::Model::Operation.new.tap do |o|
|
1841
|
+
o.name = "PutBucketAcl"
|
1842
|
+
o.http_method = "PUT"
|
1843
|
+
o.http_request_uri = "/{Bucket}?acl"
|
1844
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketAclRequest)
|
1845
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1846
|
+
end)
|
1847
|
+
|
1848
|
+
api.add_operation(:put_bucket_cors, Seahorse::Model::Operation.new.tap do |o|
|
1849
|
+
o.name = "PutBucketCors"
|
1850
|
+
o.http_method = "PUT"
|
1851
|
+
o.http_request_uri = "/{Bucket}?cors"
|
1852
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketCorsRequest)
|
1853
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1854
|
+
end)
|
1855
|
+
|
1856
|
+
api.add_operation(:put_bucket_lifecycle, Seahorse::Model::Operation.new.tap do |o|
|
1857
|
+
o.name = "PutBucketLifecycle"
|
1858
|
+
o.http_method = "PUT"
|
1859
|
+
o.http_request_uri = "/{Bucket}?lifecycle"
|
1860
|
+
o.deprecated = true
|
1861
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketLifecycleRequest)
|
1862
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1863
|
+
end)
|
1864
|
+
|
1865
|
+
api.add_operation(:put_bucket_lifecycle_configuration, Seahorse::Model::Operation.new.tap do |o|
|
1866
|
+
o.name = "PutBucketLifecycleConfiguration"
|
1867
|
+
o.http_method = "PUT"
|
1868
|
+
o.http_request_uri = "/{Bucket}?lifecycle"
|
1869
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketLifecycleConfigurationRequest)
|
1870
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1871
|
+
end)
|
1872
|
+
|
1873
|
+
api.add_operation(:put_bucket_logging, Seahorse::Model::Operation.new.tap do |o|
|
1874
|
+
o.name = "PutBucketLogging"
|
1875
|
+
o.http_method = "PUT"
|
1876
|
+
o.http_request_uri = "/{Bucket}?logging"
|
1877
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketLoggingRequest)
|
1878
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1879
|
+
end)
|
1880
|
+
|
1881
|
+
api.add_operation(:put_bucket_notification, Seahorse::Model::Operation.new.tap do |o|
|
1882
|
+
o.name = "PutBucketNotification"
|
1883
|
+
o.http_method = "PUT"
|
1884
|
+
o.http_request_uri = "/{Bucket}?notification"
|
1885
|
+
o.deprecated = true
|
1886
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketNotificationRequest)
|
1887
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1888
|
+
end)
|
1889
|
+
|
1890
|
+
api.add_operation(:put_bucket_notification_configuration, Seahorse::Model::Operation.new.tap do |o|
|
1891
|
+
o.name = "PutBucketNotificationConfiguration"
|
1892
|
+
o.http_method = "PUT"
|
1893
|
+
o.http_request_uri = "/{Bucket}?notification"
|
1894
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketNotificationConfigurationRequest)
|
1895
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1896
|
+
end)
|
1897
|
+
|
1898
|
+
api.add_operation(:put_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
|
1899
|
+
o.name = "PutBucketPolicy"
|
1900
|
+
o.http_method = "PUT"
|
1901
|
+
o.http_request_uri = "/{Bucket}?policy"
|
1902
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketPolicyRequest)
|
1903
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1904
|
+
end)
|
1905
|
+
|
1906
|
+
api.add_operation(:put_bucket_replication, Seahorse::Model::Operation.new.tap do |o|
|
1907
|
+
o.name = "PutBucketReplication"
|
1908
|
+
o.http_method = "PUT"
|
1909
|
+
o.http_request_uri = "/{Bucket}?replication"
|
1910
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketReplicationRequest)
|
1911
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1912
|
+
end)
|
1913
|
+
|
1914
|
+
api.add_operation(:put_bucket_request_payment, Seahorse::Model::Operation.new.tap do |o|
|
1915
|
+
o.name = "PutBucketRequestPayment"
|
1916
|
+
o.http_method = "PUT"
|
1917
|
+
o.http_request_uri = "/{Bucket}?requestPayment"
|
1918
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketRequestPaymentRequest)
|
1919
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1920
|
+
end)
|
1921
|
+
|
1922
|
+
api.add_operation(:put_bucket_tagging, Seahorse::Model::Operation.new.tap do |o|
|
1923
|
+
o.name = "PutBucketTagging"
|
1924
|
+
o.http_method = "PUT"
|
1925
|
+
o.http_request_uri = "/{Bucket}?tagging"
|
1926
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketTaggingRequest)
|
1927
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1928
|
+
end)
|
1929
|
+
|
1930
|
+
api.add_operation(:put_bucket_versioning, Seahorse::Model::Operation.new.tap do |o|
|
1931
|
+
o.name = "PutBucketVersioning"
|
1932
|
+
o.http_method = "PUT"
|
1933
|
+
o.http_request_uri = "/{Bucket}?versioning"
|
1934
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketVersioningRequest)
|
1935
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1936
|
+
end)
|
1937
|
+
|
1938
|
+
api.add_operation(:put_bucket_website, Seahorse::Model::Operation.new.tap do |o|
|
1939
|
+
o.name = "PutBucketWebsite"
|
1940
|
+
o.http_method = "PUT"
|
1941
|
+
o.http_request_uri = "/{Bucket}?website"
|
1942
|
+
o.input = Shapes::ShapeRef.new(shape: PutBucketWebsiteRequest)
|
1943
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1944
|
+
end)
|
1945
|
+
|
1946
|
+
api.add_operation(:put_object, Seahorse::Model::Operation.new.tap do |o|
|
1947
|
+
o.name = "PutObject"
|
1948
|
+
o.http_method = "PUT"
|
1949
|
+
o.http_request_uri = "/{Bucket}/{Key+}"
|
1950
|
+
o.input = Shapes::ShapeRef.new(shape: PutObjectRequest)
|
1951
|
+
o.output = Shapes::ShapeRef.new(shape: PutObjectOutput)
|
1952
|
+
end)
|
1953
|
+
|
1954
|
+
api.add_operation(:put_object_acl, Seahorse::Model::Operation.new.tap do |o|
|
1955
|
+
o.name = "PutObjectAcl"
|
1956
|
+
o.http_method = "PUT"
|
1957
|
+
o.http_request_uri = "/{Bucket}/{Key+}?acl"
|
1958
|
+
o.input = Shapes::ShapeRef.new(shape: PutObjectAclRequest)
|
1959
|
+
o.output = Shapes::ShapeRef.new(shape: PutObjectAclOutput)
|
1960
|
+
o.errors << Shapes::ShapeRef.new(shape: NoSuchKey)
|
1961
|
+
end)
|
1962
|
+
|
1963
|
+
api.add_operation(:restore_object, Seahorse::Model::Operation.new.tap do |o|
|
1964
|
+
o.name = "RestoreObject"
|
1965
|
+
o.http_method = "POST"
|
1966
|
+
o.http_request_uri = "/{Bucket}/{Key+}?restore"
|
1967
|
+
o.input = Shapes::ShapeRef.new(shape: RestoreObjectRequest)
|
1968
|
+
o.output = Shapes::ShapeRef.new(shape: RestoreObjectOutput)
|
1969
|
+
o.errors << Shapes::ShapeRef.new(shape: ObjectAlreadyInActiveTierError)
|
1970
|
+
end)
|
1971
|
+
|
1972
|
+
api.add_operation(:upload_part, Seahorse::Model::Operation.new.tap do |o|
|
1973
|
+
o.name = "UploadPart"
|
1974
|
+
o.http_method = "PUT"
|
1975
|
+
o.http_request_uri = "/{Bucket}/{Key+}"
|
1976
|
+
o.input = Shapes::ShapeRef.new(shape: UploadPartRequest)
|
1977
|
+
o.output = Shapes::ShapeRef.new(shape: UploadPartOutput)
|
1978
|
+
end)
|
1979
|
+
|
1980
|
+
api.add_operation(:upload_part_copy, Seahorse::Model::Operation.new.tap do |o|
|
1981
|
+
o.name = "UploadPartCopy"
|
1982
|
+
o.http_method = "PUT"
|
1983
|
+
o.http_request_uri = "/{Bucket}/{Key+}"
|
1984
|
+
o.input = Shapes::ShapeRef.new(shape: UploadPartCopyRequest)
|
1985
|
+
o.output = Shapes::ShapeRef.new(shape: UploadPartCopyOutput)
|
1986
|
+
end)
|
1987
|
+
end
|
1988
|
+
|
1989
|
+
end
|
1990
|
+
end
|
1991
|
+
end
|