aws-sdk-s3 1.48.0 → 1.183.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGELOG.md +1352 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-s3/access_grants_credentials.rb +57 -0
- data/lib/aws-sdk-s3/access_grants_credentials_provider.rb +250 -0
- data/lib/aws-sdk-s3/bucket.rb +1005 -106
- data/lib/aws-sdk-s3/bucket_acl.rb +65 -18
- data/lib/aws-sdk-s3/bucket_cors.rb +80 -18
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +71 -20
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +126 -21
- data/lib/aws-sdk-s3/bucket_logging.rb +68 -16
- data/lib/aws-sdk-s3/bucket_notification.rb +52 -20
- data/lib/aws-sdk-s3/bucket_policy.rb +108 -17
- data/lib/aws-sdk-s3/bucket_region_cache.rb +11 -5
- data/lib/aws-sdk-s3/bucket_request_payment.rb +60 -15
- data/lib/aws-sdk-s3/bucket_tagging.rb +71 -18
- data/lib/aws-sdk-s3/bucket_versioning.rb +133 -17
- data/lib/aws-sdk-s3/bucket_website.rb +78 -21
- data/lib/aws-sdk-s3/client.rb +14517 -941
- data/lib/aws-sdk-s3/client_api.rb +1296 -197
- data/lib/aws-sdk-s3/customizations/bucket.rb +56 -37
- data/lib/aws-sdk-s3/customizations/errors.rb +40 -0
- data/lib/aws-sdk-s3/customizations/multipart_upload.rb +2 -0
- data/lib/aws-sdk-s3/customizations/object.rb +288 -68
- data/lib/aws-sdk-s3/customizations/object_summary.rb +10 -0
- data/lib/aws-sdk-s3/customizations/object_version.rb +13 -0
- data/lib/aws-sdk-s3/customizations/types/list_object_versions_output.rb +2 -0
- data/lib/aws-sdk-s3/customizations/types/permanent_redirect.rb +26 -0
- data/lib/aws-sdk-s3/customizations.rb +27 -28
- data/lib/aws-sdk-s3/encryption/client.rb +28 -7
- data/lib/aws-sdk-s3/encryption/decrypt_handler.rb +71 -29
- data/lib/aws-sdk-s3/encryption/default_cipher_provider.rb +43 -5
- data/lib/aws-sdk-s3/encryption/default_key_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/encrypt_handler.rb +13 -2
- data/lib/aws-sdk-s3/encryption/errors.rb +2 -0
- data/lib/aws-sdk-s3/encryption/io_auth_decrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryption/io_decrypter.rb +11 -3
- data/lib/aws-sdk-s3/encryption/io_encrypter.rb +2 -0
- data/lib/aws-sdk-s3/encryption/key_provider.rb +2 -0
- data/lib/aws-sdk-s3/encryption/kms_cipher_provider.rb +46 -11
- data/lib/aws-sdk-s3/encryption/materials.rb +8 -6
- data/lib/aws-sdk-s3/encryption/utils.rb +25 -0
- data/lib/aws-sdk-s3/encryption.rb +4 -0
- data/lib/aws-sdk-s3/encryptionV2/client.rb +570 -0
- data/lib/aws-sdk-s3/encryptionV2/decrypt_handler.rb +223 -0
- data/lib/aws-sdk-s3/encryptionV2/default_cipher_provider.rb +170 -0
- data/lib/aws-sdk-s3/encryptionV2/default_key_provider.rb +40 -0
- data/lib/aws-sdk-s3/encryptionV2/encrypt_handler.rb +65 -0
- data/lib/aws-sdk-s3/encryptionV2/errors.rb +37 -0
- data/lib/aws-sdk-s3/encryptionV2/io_auth_decrypter.rb +58 -0
- data/lib/aws-sdk-s3/encryptionV2/io_decrypter.rb +37 -0
- data/lib/aws-sdk-s3/encryptionV2/io_encrypter.rb +73 -0
- data/lib/aws-sdk-s3/encryptionV2/key_provider.rb +31 -0
- data/lib/aws-sdk-s3/encryptionV2/kms_cipher_provider.rb +173 -0
- data/lib/aws-sdk-s3/encryptionV2/materials.rb +60 -0
- data/lib/aws-sdk-s3/encryptionV2/utils.rb +103 -0
- data/lib/aws-sdk-s3/encryption_v2.rb +23 -0
- data/lib/aws-sdk-s3/endpoint_parameters.rb +181 -0
- data/lib/aws-sdk-s3/endpoint_provider.rb +716 -0
- data/lib/aws-sdk-s3/endpoints.rb +1434 -0
- data/lib/aws-sdk-s3/errors.rb +170 -1
- data/lib/aws-sdk-s3/event_streams.rb +8 -1
- data/lib/aws-sdk-s3/express_credentials.rb +55 -0
- data/lib/aws-sdk-s3/express_credentials_provider.rb +59 -0
- data/lib/aws-sdk-s3/file_downloader.rb +161 -46
- data/lib/aws-sdk-s3/file_part.rb +11 -6
- data/lib/aws-sdk-s3/file_uploader.rb +39 -18
- data/lib/aws-sdk-s3/legacy_signer.rb +17 -25
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +104 -27
- data/lib/aws-sdk-s3/multipart_stream_uploader.rb +61 -21
- data/lib/aws-sdk-s3/multipart_upload.rb +342 -32
- data/lib/aws-sdk-s3/multipart_upload_error.rb +2 -0
- data/lib/aws-sdk-s3/multipart_upload_part.rb +384 -46
- data/lib/aws-sdk-s3/object.rb +2600 -231
- data/lib/aws-sdk-s3/object_acl.rb +103 -25
- data/lib/aws-sdk-s3/object_copier.rb +9 -5
- data/lib/aws-sdk-s3/object_multipart_copier.rb +48 -22
- data/lib/aws-sdk-s3/object_summary.rb +2174 -204
- data/lib/aws-sdk-s3/object_version.rb +539 -80
- data/lib/aws-sdk-s3/plugins/accelerate.rb +17 -64
- data/lib/aws-sdk-s3/plugins/access_grants.rb +178 -0
- data/lib/aws-sdk-s3/plugins/arn.rb +70 -0
- data/lib/aws-sdk-s3/plugins/bucket_dns.rb +7 -43
- data/lib/aws-sdk-s3/plugins/bucket_name_restrictions.rb +20 -3
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/dualstack.rb +7 -50
- data/lib/aws-sdk-s3/plugins/endpoints.rb +86 -0
- data/lib/aws-sdk-s3/plugins/expect_100_continue.rb +5 -4
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +88 -0
- data/lib/aws-sdk-s3/plugins/get_bucket_location_fix.rb +3 -1
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +62 -17
- data/lib/aws-sdk-s3/plugins/iad_regional_endpoint.rb +44 -0
- data/lib/aws-sdk-s3/plugins/location_constraint.rb +5 -1
- data/lib/aws-sdk-s3/plugins/md5s.rb +14 -70
- data/lib/aws-sdk-s3/plugins/redirects.rb +2 -0
- data/lib/aws-sdk-s3/plugins/s3_host_id.rb +2 -0
- data/lib/aws-sdk-s3/plugins/s3_signer.rb +63 -94
- data/lib/aws-sdk-s3/plugins/sse_cpk.rb +3 -1
- data/lib/aws-sdk-s3/plugins/streaming_retry.rb +139 -0
- data/lib/aws-sdk-s3/plugins/url_encoded_keys.rb +2 -0
- data/lib/aws-sdk-s3/presigned_post.rb +160 -99
- data/lib/aws-sdk-s3/presigner.rb +141 -62
- data/lib/aws-sdk-s3/resource.rb +156 -17
- data/lib/aws-sdk-s3/types.rb +13021 -4106
- data/lib/aws-sdk-s3/waiters.rb +67 -1
- data/lib/aws-sdk-s3.rb +46 -32
- data/sig/bucket.rbs +222 -0
- data/sig/bucket_acl.rbs +78 -0
- data/sig/bucket_cors.rbs +69 -0
- data/sig/bucket_lifecycle.rbs +88 -0
- data/sig/bucket_lifecycle_configuration.rbs +115 -0
- data/sig/bucket_logging.rbs +76 -0
- data/sig/bucket_notification.rbs +114 -0
- data/sig/bucket_policy.rbs +59 -0
- data/sig/bucket_request_payment.rbs +54 -0
- data/sig/bucket_tagging.rbs +65 -0
- data/sig/bucket_versioning.rbs +77 -0
- data/sig/bucket_website.rbs +93 -0
- data/sig/client.rbs +2472 -0
- data/sig/customizations/bucket.rbs +19 -0
- data/sig/customizations/object.rbs +38 -0
- data/sig/customizations/object_summary.rbs +35 -0
- data/sig/errors.rbs +42 -0
- data/sig/multipart_upload.rbs +120 -0
- data/sig/multipart_upload_part.rbs +109 -0
- data/sig/object.rbs +459 -0
- data/sig/object_acl.rbs +86 -0
- data/sig/object_summary.rbs +345 -0
- data/sig/object_version.rbs +143 -0
- data/sig/resource.rbs +134 -0
- data/sig/types.rbs +2712 -0
- data/sig/waiters.rbs +95 -0
- metadata +74 -15
data/sig/types.rbs
ADDED
@@ -0,0 +1,2712 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::S3
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AbortIncompleteMultipartUpload
|
12
|
+
attr_accessor days_after_initiation: ::Integer
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AbortMultipartUploadOutput
|
17
|
+
attr_accessor request_charged: ("requester")
|
18
|
+
SENSITIVE: []
|
19
|
+
end
|
20
|
+
|
21
|
+
class AbortMultipartUploadRequest
|
22
|
+
attr_accessor bucket: ::String
|
23
|
+
attr_accessor key: ::String
|
24
|
+
attr_accessor upload_id: ::String
|
25
|
+
attr_accessor request_payer: ("requester")
|
26
|
+
attr_accessor expected_bucket_owner: ::String
|
27
|
+
attr_accessor if_match_initiated_time: ::Time
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class AccelerateConfiguration
|
32
|
+
attr_accessor status: ("Enabled" | "Suspended")
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class AccessControlPolicy
|
37
|
+
attr_accessor grants: ::Array[Types::Grant]
|
38
|
+
attr_accessor owner: Types::Owner
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class AccessControlTranslation
|
43
|
+
attr_accessor owner: ("Destination")
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class AnalyticsAndOperator
|
48
|
+
attr_accessor prefix: ::String
|
49
|
+
attr_accessor tags: ::Array[Types::Tag]
|
50
|
+
SENSITIVE: []
|
51
|
+
end
|
52
|
+
|
53
|
+
class AnalyticsConfiguration
|
54
|
+
attr_accessor id: ::String
|
55
|
+
attr_accessor filter: Types::AnalyticsFilter
|
56
|
+
attr_accessor storage_class_analysis: Types::StorageClassAnalysis
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class AnalyticsExportDestination
|
61
|
+
attr_accessor s3_bucket_destination: Types::AnalyticsS3BucketDestination
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class AnalyticsFilter
|
66
|
+
attr_accessor prefix: ::String
|
67
|
+
attr_accessor tag: Types::Tag
|
68
|
+
attr_accessor and: Types::AnalyticsAndOperator
|
69
|
+
SENSITIVE: []
|
70
|
+
end
|
71
|
+
|
72
|
+
class AnalyticsS3BucketDestination
|
73
|
+
attr_accessor format: ("CSV")
|
74
|
+
attr_accessor bucket_account_id: ::String
|
75
|
+
attr_accessor bucket: ::String
|
76
|
+
attr_accessor prefix: ::String
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class Bucket
|
81
|
+
attr_accessor name: ::String
|
82
|
+
attr_accessor creation_date: ::Time
|
83
|
+
attr_accessor bucket_region: ::String
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class BucketAlreadyExists < Aws::EmptyStructure
|
88
|
+
end
|
89
|
+
|
90
|
+
class BucketAlreadyOwnedByYou < Aws::EmptyStructure
|
91
|
+
end
|
92
|
+
|
93
|
+
class BucketInfo
|
94
|
+
attr_accessor data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")
|
95
|
+
attr_accessor type: ("Directory")
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class BucketLifecycleConfiguration
|
100
|
+
attr_accessor rules: ::Array[Types::LifecycleRule]
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class BucketLoggingStatus
|
105
|
+
attr_accessor logging_enabled: Types::LoggingEnabled
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class CORSConfiguration
|
110
|
+
attr_accessor cors_rules: ::Array[Types::CORSRule]
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class CORSRule
|
115
|
+
attr_accessor id: ::String
|
116
|
+
attr_accessor allowed_headers: ::Array[::String]
|
117
|
+
attr_accessor allowed_methods: ::Array[::String]
|
118
|
+
attr_accessor allowed_origins: ::Array[::String]
|
119
|
+
attr_accessor expose_headers: ::Array[::String]
|
120
|
+
attr_accessor max_age_seconds: ::Integer
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class CSVInput
|
125
|
+
attr_accessor file_header_info: ("USE" | "IGNORE" | "NONE")
|
126
|
+
attr_accessor comments: ::String
|
127
|
+
attr_accessor quote_escape_character: ::String
|
128
|
+
attr_accessor record_delimiter: ::String
|
129
|
+
attr_accessor field_delimiter: ::String
|
130
|
+
attr_accessor quote_character: ::String
|
131
|
+
attr_accessor allow_quoted_record_delimiter: bool
|
132
|
+
SENSITIVE: []
|
133
|
+
end
|
134
|
+
|
135
|
+
class CSVOutput
|
136
|
+
attr_accessor quote_fields: ("ALWAYS" | "ASNEEDED")
|
137
|
+
attr_accessor quote_escape_character: ::String
|
138
|
+
attr_accessor record_delimiter: ::String
|
139
|
+
attr_accessor field_delimiter: ::String
|
140
|
+
attr_accessor quote_character: ::String
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class Checksum
|
145
|
+
attr_accessor checksum_crc32: ::String
|
146
|
+
attr_accessor checksum_crc32c: ::String
|
147
|
+
attr_accessor checksum_crc64nvme: ::String
|
148
|
+
attr_accessor checksum_sha1: ::String
|
149
|
+
attr_accessor checksum_sha256: ::String
|
150
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class CloudFunctionConfiguration
|
155
|
+
attr_accessor id: ::String
|
156
|
+
attr_accessor event: ("s3:ReducedRedundancyLostObject" | "s3:ObjectCreated:*" | "s3:ObjectCreated:Put" | "s3:ObjectCreated:Post" | "s3:ObjectCreated:Copy" | "s3:ObjectCreated:CompleteMultipartUpload" | "s3:ObjectRemoved:*" | "s3:ObjectRemoved:Delete" | "s3:ObjectRemoved:DeleteMarkerCreated" | "s3:ObjectRestore:*" | "s3:ObjectRestore:Post" | "s3:ObjectRestore:Completed" | "s3:Replication:*" | "s3:Replication:OperationFailedReplication" | "s3:Replication:OperationNotTracked" | "s3:Replication:OperationMissedThreshold" | "s3:Replication:OperationReplicatedAfterThreshold" | "s3:ObjectRestore:Delete" | "s3:LifecycleTransition" | "s3:IntelligentTiering" | "s3:ObjectAcl:Put" | "s3:LifecycleExpiration:*" | "s3:LifecycleExpiration:Delete" | "s3:LifecycleExpiration:DeleteMarkerCreated" | "s3:ObjectTagging:*" | "s3:ObjectTagging:Put" | "s3:ObjectTagging:Delete")
|
157
|
+
attr_accessor events: ::Array[("s3:ReducedRedundancyLostObject" | "s3:ObjectCreated:*" | "s3:ObjectCreated:Put" | "s3:ObjectCreated:Post" | "s3:ObjectCreated:Copy" | "s3:ObjectCreated:CompleteMultipartUpload" | "s3:ObjectRemoved:*" | "s3:ObjectRemoved:Delete" | "s3:ObjectRemoved:DeleteMarkerCreated" | "s3:ObjectRestore:*" | "s3:ObjectRestore:Post" | "s3:ObjectRestore:Completed" | "s3:Replication:*" | "s3:Replication:OperationFailedReplication" | "s3:Replication:OperationNotTracked" | "s3:Replication:OperationMissedThreshold" | "s3:Replication:OperationReplicatedAfterThreshold" | "s3:ObjectRestore:Delete" | "s3:LifecycleTransition" | "s3:IntelligentTiering" | "s3:ObjectAcl:Put" | "s3:LifecycleExpiration:*" | "s3:LifecycleExpiration:Delete" | "s3:LifecycleExpiration:DeleteMarkerCreated" | "s3:ObjectTagging:*" | "s3:ObjectTagging:Put" | "s3:ObjectTagging:Delete")]
|
158
|
+
attr_accessor cloud_function: ::String
|
159
|
+
attr_accessor invocation_role: ::String
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class CommonPrefix
|
164
|
+
attr_accessor prefix: ::String
|
165
|
+
SENSITIVE: []
|
166
|
+
end
|
167
|
+
|
168
|
+
class CompleteMultipartUploadOutput
|
169
|
+
attr_accessor location: ::String
|
170
|
+
attr_accessor bucket: ::String
|
171
|
+
attr_accessor key: ::String
|
172
|
+
attr_accessor expiration: ::String
|
173
|
+
attr_accessor etag: ::String
|
174
|
+
attr_accessor checksum_crc32: ::String
|
175
|
+
attr_accessor checksum_crc32c: ::String
|
176
|
+
attr_accessor checksum_crc64nvme: ::String
|
177
|
+
attr_accessor checksum_sha1: ::String
|
178
|
+
attr_accessor checksum_sha256: ::String
|
179
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
180
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
181
|
+
attr_accessor version_id: ::String
|
182
|
+
attr_accessor ssekms_key_id: ::String
|
183
|
+
attr_accessor bucket_key_enabled: bool
|
184
|
+
attr_accessor request_charged: ("requester")
|
185
|
+
SENSITIVE: [:ssekms_key_id]
|
186
|
+
end
|
187
|
+
|
188
|
+
class CompleteMultipartUploadRequest
|
189
|
+
attr_accessor bucket: ::String
|
190
|
+
attr_accessor key: ::String
|
191
|
+
attr_accessor multipart_upload: Types::CompletedMultipartUpload
|
192
|
+
attr_accessor upload_id: ::String
|
193
|
+
attr_accessor checksum_crc32: ::String
|
194
|
+
attr_accessor checksum_crc32c: ::String
|
195
|
+
attr_accessor checksum_crc64nvme: ::String
|
196
|
+
attr_accessor checksum_sha1: ::String
|
197
|
+
attr_accessor checksum_sha256: ::String
|
198
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
199
|
+
attr_accessor mpu_object_size: ::Integer
|
200
|
+
attr_accessor request_payer: ("requester")
|
201
|
+
attr_accessor expected_bucket_owner: ::String
|
202
|
+
attr_accessor if_match: ::String
|
203
|
+
attr_accessor if_none_match: ::String
|
204
|
+
attr_accessor sse_customer_algorithm: ::String
|
205
|
+
attr_accessor sse_customer_key: ::String
|
206
|
+
attr_accessor sse_customer_key_md5: ::String
|
207
|
+
SENSITIVE: [:sse_customer_key]
|
208
|
+
end
|
209
|
+
|
210
|
+
class CompletedMultipartUpload
|
211
|
+
attr_accessor parts: ::Array[Types::CompletedPart]
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class CompletedPart
|
216
|
+
attr_accessor etag: ::String
|
217
|
+
attr_accessor checksum_crc32: ::String
|
218
|
+
attr_accessor checksum_crc32c: ::String
|
219
|
+
attr_accessor checksum_crc64nvme: ::String
|
220
|
+
attr_accessor checksum_sha1: ::String
|
221
|
+
attr_accessor checksum_sha256: ::String
|
222
|
+
attr_accessor part_number: ::Integer
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class Condition
|
227
|
+
attr_accessor http_error_code_returned_equals: ::String
|
228
|
+
attr_accessor key_prefix_equals: ::String
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
232
|
+
class ContinuationEvent
|
233
|
+
attr_accessor event_type: untyped
|
234
|
+
SENSITIVE: []
|
235
|
+
end
|
236
|
+
|
237
|
+
class CopyObjectOutput
|
238
|
+
attr_accessor copy_object_result: Types::CopyObjectResult
|
239
|
+
attr_accessor expiration: ::String
|
240
|
+
attr_accessor copy_source_version_id: ::String
|
241
|
+
attr_accessor version_id: ::String
|
242
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
243
|
+
attr_accessor sse_customer_algorithm: ::String
|
244
|
+
attr_accessor sse_customer_key_md5: ::String
|
245
|
+
attr_accessor ssekms_key_id: ::String
|
246
|
+
attr_accessor ssekms_encryption_context: ::String
|
247
|
+
attr_accessor bucket_key_enabled: bool
|
248
|
+
attr_accessor request_charged: ("requester")
|
249
|
+
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
250
|
+
end
|
251
|
+
|
252
|
+
class CopyObjectRequest
|
253
|
+
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
254
|
+
attr_accessor bucket: ::String
|
255
|
+
attr_accessor cache_control: ::String
|
256
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
257
|
+
attr_accessor content_disposition: ::String
|
258
|
+
attr_accessor content_encoding: ::String
|
259
|
+
attr_accessor content_language: ::String
|
260
|
+
attr_accessor content_type: ::String
|
261
|
+
attr_accessor copy_source: ::String
|
262
|
+
attr_accessor copy_source_if_match: ::String
|
263
|
+
attr_accessor copy_source_if_modified_since: ::Time
|
264
|
+
attr_accessor copy_source_if_none_match: ::String
|
265
|
+
attr_accessor copy_source_if_unmodified_since: ::Time
|
266
|
+
attr_accessor expires: ::Time
|
267
|
+
attr_accessor grant_full_control: ::String
|
268
|
+
attr_accessor grant_read: ::String
|
269
|
+
attr_accessor grant_read_acp: ::String
|
270
|
+
attr_accessor grant_write_acp: ::String
|
271
|
+
attr_accessor key: ::String
|
272
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
273
|
+
attr_accessor metadata_directive: ("COPY" | "REPLACE")
|
274
|
+
attr_accessor tagging_directive: ("COPY" | "REPLACE")
|
275
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
276
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
277
|
+
attr_accessor website_redirect_location: ::String
|
278
|
+
attr_accessor sse_customer_algorithm: ::String
|
279
|
+
attr_accessor sse_customer_key: ::String
|
280
|
+
attr_accessor sse_customer_key_md5: ::String
|
281
|
+
attr_accessor ssekms_key_id: ::String
|
282
|
+
attr_accessor ssekms_encryption_context: ::String
|
283
|
+
attr_accessor bucket_key_enabled: bool
|
284
|
+
attr_accessor copy_source_sse_customer_algorithm: ::String
|
285
|
+
attr_accessor copy_source_sse_customer_key: ::String
|
286
|
+
attr_accessor copy_source_sse_customer_key_md5: ::String
|
287
|
+
attr_accessor request_payer: ("requester")
|
288
|
+
attr_accessor tagging: ::String
|
289
|
+
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
290
|
+
attr_accessor object_lock_retain_until_date: ::Time
|
291
|
+
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
292
|
+
attr_accessor expected_bucket_owner: ::String
|
293
|
+
attr_accessor expected_source_bucket_owner: ::String
|
294
|
+
SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context, :copy_source_sse_customer_key]
|
295
|
+
end
|
296
|
+
|
297
|
+
class CopyObjectResult
|
298
|
+
attr_accessor etag: ::String
|
299
|
+
attr_accessor last_modified: ::Time
|
300
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
301
|
+
attr_accessor checksum_crc32: ::String
|
302
|
+
attr_accessor checksum_crc32c: ::String
|
303
|
+
attr_accessor checksum_crc64nvme: ::String
|
304
|
+
attr_accessor checksum_sha1: ::String
|
305
|
+
attr_accessor checksum_sha256: ::String
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class CopyPartResult
|
310
|
+
attr_accessor etag: ::String
|
311
|
+
attr_accessor last_modified: ::Time
|
312
|
+
attr_accessor checksum_crc32: ::String
|
313
|
+
attr_accessor checksum_crc32c: ::String
|
314
|
+
attr_accessor checksum_crc64nvme: ::String
|
315
|
+
attr_accessor checksum_sha1: ::String
|
316
|
+
attr_accessor checksum_sha256: ::String
|
317
|
+
SENSITIVE: []
|
318
|
+
end
|
319
|
+
|
320
|
+
class CreateBucketConfiguration
|
321
|
+
attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
|
322
|
+
attr_accessor location: Types::LocationInfo
|
323
|
+
attr_accessor bucket: Types::BucketInfo
|
324
|
+
SENSITIVE: []
|
325
|
+
end
|
326
|
+
|
327
|
+
class CreateBucketMetadataTableConfigurationRequest
|
328
|
+
attr_accessor bucket: ::String
|
329
|
+
attr_accessor content_md5: ::String
|
330
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
331
|
+
attr_accessor metadata_table_configuration: Types::MetadataTableConfiguration
|
332
|
+
attr_accessor expected_bucket_owner: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
336
|
+
class CreateBucketOutput
|
337
|
+
attr_accessor location: ::String
|
338
|
+
SENSITIVE: []
|
339
|
+
end
|
340
|
+
|
341
|
+
class CreateBucketRequest
|
342
|
+
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read")
|
343
|
+
attr_accessor bucket: ::String
|
344
|
+
attr_accessor create_bucket_configuration: Types::CreateBucketConfiguration
|
345
|
+
attr_accessor grant_full_control: ::String
|
346
|
+
attr_accessor grant_read: ::String
|
347
|
+
attr_accessor grant_read_acp: ::String
|
348
|
+
attr_accessor grant_write: ::String
|
349
|
+
attr_accessor grant_write_acp: ::String
|
350
|
+
attr_accessor object_lock_enabled_for_bucket: bool
|
351
|
+
attr_accessor object_ownership: ("BucketOwnerPreferred" | "ObjectWriter" | "BucketOwnerEnforced")
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class CreateMultipartUploadOutput
|
356
|
+
attr_accessor abort_date: ::Time
|
357
|
+
attr_accessor abort_rule_id: ::String
|
358
|
+
attr_accessor bucket: ::String
|
359
|
+
attr_accessor key: ::String
|
360
|
+
attr_accessor upload_id: ::String
|
361
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
362
|
+
attr_accessor sse_customer_algorithm: ::String
|
363
|
+
attr_accessor sse_customer_key_md5: ::String
|
364
|
+
attr_accessor ssekms_key_id: ::String
|
365
|
+
attr_accessor ssekms_encryption_context: ::String
|
366
|
+
attr_accessor bucket_key_enabled: bool
|
367
|
+
attr_accessor request_charged: ("requester")
|
368
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
369
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
370
|
+
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
371
|
+
end
|
372
|
+
|
373
|
+
class CreateMultipartUploadRequest
|
374
|
+
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
375
|
+
attr_accessor bucket: ::String
|
376
|
+
attr_accessor cache_control: ::String
|
377
|
+
attr_accessor content_disposition: ::String
|
378
|
+
attr_accessor content_encoding: ::String
|
379
|
+
attr_accessor content_language: ::String
|
380
|
+
attr_accessor content_type: ::String
|
381
|
+
attr_accessor expires: ::Time
|
382
|
+
attr_accessor grant_full_control: ::String
|
383
|
+
attr_accessor grant_read: ::String
|
384
|
+
attr_accessor grant_read_acp: ::String
|
385
|
+
attr_accessor grant_write_acp: ::String
|
386
|
+
attr_accessor key: ::String
|
387
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
388
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
389
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
390
|
+
attr_accessor website_redirect_location: ::String
|
391
|
+
attr_accessor sse_customer_algorithm: ::String
|
392
|
+
attr_accessor sse_customer_key: ::String
|
393
|
+
attr_accessor sse_customer_key_md5: ::String
|
394
|
+
attr_accessor ssekms_key_id: ::String
|
395
|
+
attr_accessor ssekms_encryption_context: ::String
|
396
|
+
attr_accessor bucket_key_enabled: bool
|
397
|
+
attr_accessor request_payer: ("requester")
|
398
|
+
attr_accessor tagging: ::String
|
399
|
+
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
400
|
+
attr_accessor object_lock_retain_until_date: ::Time
|
401
|
+
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
402
|
+
attr_accessor expected_bucket_owner: ::String
|
403
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
404
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
405
|
+
SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
|
406
|
+
end
|
407
|
+
|
408
|
+
class CreateSessionOutput
|
409
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
410
|
+
attr_accessor ssekms_key_id: ::String
|
411
|
+
attr_accessor ssekms_encryption_context: ::String
|
412
|
+
attr_accessor bucket_key_enabled: bool
|
413
|
+
attr_accessor credentials: Types::SessionCredentials
|
414
|
+
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
415
|
+
end
|
416
|
+
|
417
|
+
class CreateSessionRequest
|
418
|
+
attr_accessor session_mode: ("ReadOnly" | "ReadWrite")
|
419
|
+
attr_accessor bucket: ::String
|
420
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
421
|
+
attr_accessor ssekms_key_id: ::String
|
422
|
+
attr_accessor ssekms_encryption_context: ::String
|
423
|
+
attr_accessor bucket_key_enabled: bool
|
424
|
+
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
425
|
+
end
|
426
|
+
|
427
|
+
class DefaultRetention
|
428
|
+
attr_accessor mode: ("GOVERNANCE" | "COMPLIANCE")
|
429
|
+
attr_accessor days: ::Integer
|
430
|
+
attr_accessor years: ::Integer
|
431
|
+
SENSITIVE: []
|
432
|
+
end
|
433
|
+
|
434
|
+
class Delete
|
435
|
+
attr_accessor objects: ::Array[Types::ObjectIdentifier]
|
436
|
+
attr_accessor quiet: bool
|
437
|
+
SENSITIVE: []
|
438
|
+
end
|
439
|
+
|
440
|
+
class DeleteBucketAnalyticsConfigurationRequest
|
441
|
+
attr_accessor bucket: ::String
|
442
|
+
attr_accessor id: ::String
|
443
|
+
attr_accessor expected_bucket_owner: ::String
|
444
|
+
SENSITIVE: []
|
445
|
+
end
|
446
|
+
|
447
|
+
class DeleteBucketCorsRequest
|
448
|
+
attr_accessor bucket: ::String
|
449
|
+
attr_accessor expected_bucket_owner: ::String
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class DeleteBucketEncryptionRequest
|
454
|
+
attr_accessor bucket: ::String
|
455
|
+
attr_accessor expected_bucket_owner: ::String
|
456
|
+
SENSITIVE: []
|
457
|
+
end
|
458
|
+
|
459
|
+
class DeleteBucketIntelligentTieringConfigurationRequest
|
460
|
+
attr_accessor bucket: ::String
|
461
|
+
attr_accessor id: ::String
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class DeleteBucketInventoryConfigurationRequest
|
466
|
+
attr_accessor bucket: ::String
|
467
|
+
attr_accessor id: ::String
|
468
|
+
attr_accessor expected_bucket_owner: ::String
|
469
|
+
SENSITIVE: []
|
470
|
+
end
|
471
|
+
|
472
|
+
class DeleteBucketLifecycleRequest
|
473
|
+
attr_accessor bucket: ::String
|
474
|
+
attr_accessor expected_bucket_owner: ::String
|
475
|
+
SENSITIVE: []
|
476
|
+
end
|
477
|
+
|
478
|
+
class DeleteBucketMetadataTableConfigurationRequest
|
479
|
+
attr_accessor bucket: ::String
|
480
|
+
attr_accessor expected_bucket_owner: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
484
|
+
class DeleteBucketMetricsConfigurationRequest
|
485
|
+
attr_accessor bucket: ::String
|
486
|
+
attr_accessor id: ::String
|
487
|
+
attr_accessor expected_bucket_owner: ::String
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class DeleteBucketOwnershipControlsRequest
|
492
|
+
attr_accessor bucket: ::String
|
493
|
+
attr_accessor expected_bucket_owner: ::String
|
494
|
+
SENSITIVE: []
|
495
|
+
end
|
496
|
+
|
497
|
+
class DeleteBucketPolicyRequest
|
498
|
+
attr_accessor bucket: ::String
|
499
|
+
attr_accessor expected_bucket_owner: ::String
|
500
|
+
SENSITIVE: []
|
501
|
+
end
|
502
|
+
|
503
|
+
class DeleteBucketReplicationRequest
|
504
|
+
attr_accessor bucket: ::String
|
505
|
+
attr_accessor expected_bucket_owner: ::String
|
506
|
+
SENSITIVE: []
|
507
|
+
end
|
508
|
+
|
509
|
+
class DeleteBucketRequest
|
510
|
+
attr_accessor bucket: ::String
|
511
|
+
attr_accessor expected_bucket_owner: ::String
|
512
|
+
SENSITIVE: []
|
513
|
+
end
|
514
|
+
|
515
|
+
class DeleteBucketTaggingRequest
|
516
|
+
attr_accessor bucket: ::String
|
517
|
+
attr_accessor expected_bucket_owner: ::String
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
521
|
+
class DeleteBucketWebsiteRequest
|
522
|
+
attr_accessor bucket: ::String
|
523
|
+
attr_accessor expected_bucket_owner: ::String
|
524
|
+
SENSITIVE: []
|
525
|
+
end
|
526
|
+
|
527
|
+
class DeleteMarkerEntry
|
528
|
+
attr_accessor owner: Types::Owner
|
529
|
+
attr_accessor key: ::String
|
530
|
+
attr_accessor version_id: ::String
|
531
|
+
attr_accessor is_latest: bool
|
532
|
+
attr_accessor last_modified: ::Time
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class DeleteMarkerReplication
|
537
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
538
|
+
SENSITIVE: []
|
539
|
+
end
|
540
|
+
|
541
|
+
class DeleteObjectOutput
|
542
|
+
attr_accessor delete_marker: bool
|
543
|
+
attr_accessor version_id: ::String
|
544
|
+
attr_accessor request_charged: ("requester")
|
545
|
+
SENSITIVE: []
|
546
|
+
end
|
547
|
+
|
548
|
+
class DeleteObjectRequest
|
549
|
+
attr_accessor bucket: ::String
|
550
|
+
attr_accessor key: ::String
|
551
|
+
attr_accessor mfa: ::String
|
552
|
+
attr_accessor version_id: ::String
|
553
|
+
attr_accessor request_payer: ("requester")
|
554
|
+
attr_accessor bypass_governance_retention: bool
|
555
|
+
attr_accessor expected_bucket_owner: ::String
|
556
|
+
attr_accessor if_match: ::String
|
557
|
+
attr_accessor if_match_last_modified_time: ::Time
|
558
|
+
attr_accessor if_match_size: ::Integer
|
559
|
+
SENSITIVE: []
|
560
|
+
end
|
561
|
+
|
562
|
+
class DeleteObjectTaggingOutput
|
563
|
+
attr_accessor version_id: ::String
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class DeleteObjectTaggingRequest
|
568
|
+
attr_accessor bucket: ::String
|
569
|
+
attr_accessor key: ::String
|
570
|
+
attr_accessor version_id: ::String
|
571
|
+
attr_accessor expected_bucket_owner: ::String
|
572
|
+
SENSITIVE: []
|
573
|
+
end
|
574
|
+
|
575
|
+
class DeleteObjectsOutput
|
576
|
+
attr_accessor deleted: ::Array[Types::DeletedObject]
|
577
|
+
attr_accessor request_charged: ("requester")
|
578
|
+
attr_accessor errors: ::Array[Types::Error]
|
579
|
+
SENSITIVE: []
|
580
|
+
end
|
581
|
+
|
582
|
+
class DeleteObjectsRequest
|
583
|
+
attr_accessor bucket: ::String
|
584
|
+
attr_accessor delete: Types::Delete
|
585
|
+
attr_accessor mfa: ::String
|
586
|
+
attr_accessor request_payer: ("requester")
|
587
|
+
attr_accessor bypass_governance_retention: bool
|
588
|
+
attr_accessor expected_bucket_owner: ::String
|
589
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
590
|
+
SENSITIVE: []
|
591
|
+
end
|
592
|
+
|
593
|
+
class DeletePublicAccessBlockRequest
|
594
|
+
attr_accessor bucket: ::String
|
595
|
+
attr_accessor expected_bucket_owner: ::String
|
596
|
+
SENSITIVE: []
|
597
|
+
end
|
598
|
+
|
599
|
+
class DeletedObject
|
600
|
+
attr_accessor key: ::String
|
601
|
+
attr_accessor version_id: ::String
|
602
|
+
attr_accessor delete_marker: bool
|
603
|
+
attr_accessor delete_marker_version_id: ::String
|
604
|
+
SENSITIVE: []
|
605
|
+
end
|
606
|
+
|
607
|
+
class Destination
|
608
|
+
attr_accessor bucket: ::String
|
609
|
+
attr_accessor account: ::String
|
610
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
611
|
+
attr_accessor access_control_translation: Types::AccessControlTranslation
|
612
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
613
|
+
attr_accessor replication_time: Types::ReplicationTime
|
614
|
+
attr_accessor metrics: Types::Metrics
|
615
|
+
SENSITIVE: []
|
616
|
+
end
|
617
|
+
|
618
|
+
class Encryption
|
619
|
+
attr_accessor encryption_type: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
620
|
+
attr_accessor kms_key_id: ::String
|
621
|
+
attr_accessor kms_context: ::String
|
622
|
+
SENSITIVE: [:kms_key_id]
|
623
|
+
end
|
624
|
+
|
625
|
+
class EncryptionConfiguration
|
626
|
+
attr_accessor replica_kms_key_id: ::String
|
627
|
+
SENSITIVE: []
|
628
|
+
end
|
629
|
+
|
630
|
+
class EncryptionTypeMismatch < Aws::EmptyStructure
|
631
|
+
end
|
632
|
+
|
633
|
+
class EndEvent
|
634
|
+
attr_accessor event_type: untyped
|
635
|
+
SENSITIVE: []
|
636
|
+
end
|
637
|
+
|
638
|
+
class Error
|
639
|
+
attr_accessor key: ::String
|
640
|
+
attr_accessor version_id: ::String
|
641
|
+
attr_accessor code: ::String
|
642
|
+
attr_accessor message: ::String
|
643
|
+
SENSITIVE: []
|
644
|
+
end
|
645
|
+
|
646
|
+
class ErrorDetails
|
647
|
+
attr_accessor error_code: ::String
|
648
|
+
attr_accessor error_message: ::String
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
652
|
+
class ErrorDocument
|
653
|
+
attr_accessor key: ::String
|
654
|
+
SENSITIVE: []
|
655
|
+
end
|
656
|
+
|
657
|
+
class EventBridgeConfiguration < Aws::EmptyStructure
|
658
|
+
end
|
659
|
+
|
660
|
+
class ExistingObjectReplication
|
661
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
662
|
+
SENSITIVE: []
|
663
|
+
end
|
664
|
+
|
665
|
+
class FilterRule
|
666
|
+
attr_accessor name: ("prefix" | "suffix")
|
667
|
+
attr_accessor value: ::String
|
668
|
+
SENSITIVE: []
|
669
|
+
end
|
670
|
+
|
671
|
+
class GetBucketAccelerateConfigurationOutput
|
672
|
+
attr_accessor status: ("Enabled" | "Suspended")
|
673
|
+
attr_accessor request_charged: ("requester")
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
677
|
+
class GetBucketAccelerateConfigurationRequest
|
678
|
+
attr_accessor bucket: ::String
|
679
|
+
attr_accessor expected_bucket_owner: ::String
|
680
|
+
attr_accessor request_payer: ("requester")
|
681
|
+
SENSITIVE: []
|
682
|
+
end
|
683
|
+
|
684
|
+
class GetBucketAclOutput
|
685
|
+
attr_accessor owner: Types::Owner
|
686
|
+
attr_accessor grants: ::Array[Types::Grant]
|
687
|
+
SENSITIVE: []
|
688
|
+
end
|
689
|
+
|
690
|
+
class GetBucketAclRequest
|
691
|
+
attr_accessor bucket: ::String
|
692
|
+
attr_accessor expected_bucket_owner: ::String
|
693
|
+
SENSITIVE: []
|
694
|
+
end
|
695
|
+
|
696
|
+
class GetBucketAnalyticsConfigurationOutput
|
697
|
+
attr_accessor analytics_configuration: Types::AnalyticsConfiguration
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
|
701
|
+
class GetBucketAnalyticsConfigurationRequest
|
702
|
+
attr_accessor bucket: ::String
|
703
|
+
attr_accessor id: ::String
|
704
|
+
attr_accessor expected_bucket_owner: ::String
|
705
|
+
SENSITIVE: []
|
706
|
+
end
|
707
|
+
|
708
|
+
class GetBucketCorsOutput
|
709
|
+
attr_accessor cors_rules: ::Array[Types::CORSRule]
|
710
|
+
SENSITIVE: []
|
711
|
+
end
|
712
|
+
|
713
|
+
class GetBucketCorsRequest
|
714
|
+
attr_accessor bucket: ::String
|
715
|
+
attr_accessor expected_bucket_owner: ::String
|
716
|
+
SENSITIVE: []
|
717
|
+
end
|
718
|
+
|
719
|
+
class GetBucketEncryptionOutput
|
720
|
+
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
721
|
+
SENSITIVE: []
|
722
|
+
end
|
723
|
+
|
724
|
+
class GetBucketEncryptionRequest
|
725
|
+
attr_accessor bucket: ::String
|
726
|
+
attr_accessor expected_bucket_owner: ::String
|
727
|
+
SENSITIVE: []
|
728
|
+
end
|
729
|
+
|
730
|
+
class GetBucketIntelligentTieringConfigurationOutput
|
731
|
+
attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
|
732
|
+
SENSITIVE: []
|
733
|
+
end
|
734
|
+
|
735
|
+
class GetBucketIntelligentTieringConfigurationRequest
|
736
|
+
attr_accessor bucket: ::String
|
737
|
+
attr_accessor id: ::String
|
738
|
+
SENSITIVE: []
|
739
|
+
end
|
740
|
+
|
741
|
+
class GetBucketInventoryConfigurationOutput
|
742
|
+
attr_accessor inventory_configuration: Types::InventoryConfiguration
|
743
|
+
SENSITIVE: []
|
744
|
+
end
|
745
|
+
|
746
|
+
class GetBucketInventoryConfigurationRequest
|
747
|
+
attr_accessor bucket: ::String
|
748
|
+
attr_accessor id: ::String
|
749
|
+
attr_accessor expected_bucket_owner: ::String
|
750
|
+
SENSITIVE: []
|
751
|
+
end
|
752
|
+
|
753
|
+
class GetBucketLifecycleConfigurationOutput
|
754
|
+
attr_accessor rules: ::Array[Types::LifecycleRule]
|
755
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
756
|
+
SENSITIVE: []
|
757
|
+
end
|
758
|
+
|
759
|
+
class GetBucketLifecycleConfigurationRequest
|
760
|
+
attr_accessor bucket: ::String
|
761
|
+
attr_accessor expected_bucket_owner: ::String
|
762
|
+
SENSITIVE: []
|
763
|
+
end
|
764
|
+
|
765
|
+
class GetBucketLifecycleOutput
|
766
|
+
attr_accessor rules: ::Array[Types::Rule]
|
767
|
+
SENSITIVE: []
|
768
|
+
end
|
769
|
+
|
770
|
+
class GetBucketLifecycleRequest
|
771
|
+
attr_accessor bucket: ::String
|
772
|
+
attr_accessor expected_bucket_owner: ::String
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class GetBucketLocationOutput
|
777
|
+
attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
|
778
|
+
SENSITIVE: []
|
779
|
+
end
|
780
|
+
|
781
|
+
class GetBucketLocationRequest
|
782
|
+
attr_accessor bucket: ::String
|
783
|
+
attr_accessor expected_bucket_owner: ::String
|
784
|
+
SENSITIVE: []
|
785
|
+
end
|
786
|
+
|
787
|
+
class GetBucketLoggingOutput
|
788
|
+
attr_accessor logging_enabled: Types::LoggingEnabled
|
789
|
+
SENSITIVE: []
|
790
|
+
end
|
791
|
+
|
792
|
+
class GetBucketLoggingRequest
|
793
|
+
attr_accessor bucket: ::String
|
794
|
+
attr_accessor expected_bucket_owner: ::String
|
795
|
+
SENSITIVE: []
|
796
|
+
end
|
797
|
+
|
798
|
+
class GetBucketMetadataTableConfigurationOutput
|
799
|
+
attr_accessor get_bucket_metadata_table_configuration_result: Types::GetBucketMetadataTableConfigurationResult
|
800
|
+
SENSITIVE: []
|
801
|
+
end
|
802
|
+
|
803
|
+
class GetBucketMetadataTableConfigurationRequest
|
804
|
+
attr_accessor bucket: ::String
|
805
|
+
attr_accessor expected_bucket_owner: ::String
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
|
809
|
+
class GetBucketMetadataTableConfigurationResult
|
810
|
+
attr_accessor metadata_table_configuration_result: Types::MetadataTableConfigurationResult
|
811
|
+
attr_accessor status: ::String
|
812
|
+
attr_accessor error: Types::ErrorDetails
|
813
|
+
SENSITIVE: []
|
814
|
+
end
|
815
|
+
|
816
|
+
class GetBucketMetricsConfigurationOutput
|
817
|
+
attr_accessor metrics_configuration: Types::MetricsConfiguration
|
818
|
+
SENSITIVE: []
|
819
|
+
end
|
820
|
+
|
821
|
+
class GetBucketMetricsConfigurationRequest
|
822
|
+
attr_accessor bucket: ::String
|
823
|
+
attr_accessor id: ::String
|
824
|
+
attr_accessor expected_bucket_owner: ::String
|
825
|
+
SENSITIVE: []
|
826
|
+
end
|
827
|
+
|
828
|
+
class GetBucketNotificationConfigurationRequest
|
829
|
+
attr_accessor bucket: ::String
|
830
|
+
attr_accessor expected_bucket_owner: ::String
|
831
|
+
SENSITIVE: []
|
832
|
+
end
|
833
|
+
|
834
|
+
class GetBucketOwnershipControlsOutput
|
835
|
+
attr_accessor ownership_controls: Types::OwnershipControls
|
836
|
+
SENSITIVE: []
|
837
|
+
end
|
838
|
+
|
839
|
+
class GetBucketOwnershipControlsRequest
|
840
|
+
attr_accessor bucket: ::String
|
841
|
+
attr_accessor expected_bucket_owner: ::String
|
842
|
+
SENSITIVE: []
|
843
|
+
end
|
844
|
+
|
845
|
+
class GetBucketPolicyOutput
|
846
|
+
attr_accessor policy: ::IO
|
847
|
+
SENSITIVE: []
|
848
|
+
end
|
849
|
+
|
850
|
+
class GetBucketPolicyRequest
|
851
|
+
attr_accessor bucket: ::String
|
852
|
+
attr_accessor expected_bucket_owner: ::String
|
853
|
+
SENSITIVE: []
|
854
|
+
end
|
855
|
+
|
856
|
+
class GetBucketPolicyStatusOutput
|
857
|
+
attr_accessor policy_status: Types::PolicyStatus
|
858
|
+
SENSITIVE: []
|
859
|
+
end
|
860
|
+
|
861
|
+
class GetBucketPolicyStatusRequest
|
862
|
+
attr_accessor bucket: ::String
|
863
|
+
attr_accessor expected_bucket_owner: ::String
|
864
|
+
SENSITIVE: []
|
865
|
+
end
|
866
|
+
|
867
|
+
class GetBucketReplicationOutput
|
868
|
+
attr_accessor replication_configuration: Types::ReplicationConfiguration
|
869
|
+
SENSITIVE: []
|
870
|
+
end
|
871
|
+
|
872
|
+
class GetBucketReplicationRequest
|
873
|
+
attr_accessor bucket: ::String
|
874
|
+
attr_accessor expected_bucket_owner: ::String
|
875
|
+
SENSITIVE: []
|
876
|
+
end
|
877
|
+
|
878
|
+
class GetBucketRequestPaymentOutput
|
879
|
+
attr_accessor payer: ("Requester" | "BucketOwner")
|
880
|
+
SENSITIVE: []
|
881
|
+
end
|
882
|
+
|
883
|
+
class GetBucketRequestPaymentRequest
|
884
|
+
attr_accessor bucket: ::String
|
885
|
+
attr_accessor expected_bucket_owner: ::String
|
886
|
+
SENSITIVE: []
|
887
|
+
end
|
888
|
+
|
889
|
+
class GetBucketTaggingOutput
|
890
|
+
attr_accessor tag_set: ::Array[Types::Tag]
|
891
|
+
SENSITIVE: []
|
892
|
+
end
|
893
|
+
|
894
|
+
class GetBucketTaggingRequest
|
895
|
+
attr_accessor bucket: ::String
|
896
|
+
attr_accessor expected_bucket_owner: ::String
|
897
|
+
SENSITIVE: []
|
898
|
+
end
|
899
|
+
|
900
|
+
class GetBucketVersioningOutput
|
901
|
+
attr_accessor status: ("Enabled" | "Suspended")
|
902
|
+
attr_accessor mfa_delete: ("Enabled" | "Disabled")
|
903
|
+
SENSITIVE: []
|
904
|
+
end
|
905
|
+
|
906
|
+
class GetBucketVersioningRequest
|
907
|
+
attr_accessor bucket: ::String
|
908
|
+
attr_accessor expected_bucket_owner: ::String
|
909
|
+
SENSITIVE: []
|
910
|
+
end
|
911
|
+
|
912
|
+
class GetBucketWebsiteOutput
|
913
|
+
attr_accessor redirect_all_requests_to: Types::RedirectAllRequestsTo
|
914
|
+
attr_accessor index_document: Types::IndexDocument
|
915
|
+
attr_accessor error_document: Types::ErrorDocument
|
916
|
+
attr_accessor routing_rules: ::Array[Types::RoutingRule]
|
917
|
+
SENSITIVE: []
|
918
|
+
end
|
919
|
+
|
920
|
+
class GetBucketWebsiteRequest
|
921
|
+
attr_accessor bucket: ::String
|
922
|
+
attr_accessor expected_bucket_owner: ::String
|
923
|
+
SENSITIVE: []
|
924
|
+
end
|
925
|
+
|
926
|
+
class GetObjectAclOutput
|
927
|
+
attr_accessor owner: Types::Owner
|
928
|
+
attr_accessor grants: ::Array[Types::Grant]
|
929
|
+
attr_accessor request_charged: ("requester")
|
930
|
+
SENSITIVE: []
|
931
|
+
end
|
932
|
+
|
933
|
+
class GetObjectAclRequest
|
934
|
+
attr_accessor bucket: ::String
|
935
|
+
attr_accessor key: ::String
|
936
|
+
attr_accessor version_id: ::String
|
937
|
+
attr_accessor request_payer: ("requester")
|
938
|
+
attr_accessor expected_bucket_owner: ::String
|
939
|
+
SENSITIVE: []
|
940
|
+
end
|
941
|
+
|
942
|
+
class GetObjectAttributesOutput
|
943
|
+
attr_accessor delete_marker: bool
|
944
|
+
attr_accessor last_modified: ::Time
|
945
|
+
attr_accessor version_id: ::String
|
946
|
+
attr_accessor request_charged: ("requester")
|
947
|
+
attr_accessor etag: ::String
|
948
|
+
attr_accessor checksum: Types::Checksum
|
949
|
+
attr_accessor object_parts: Types::GetObjectAttributesParts
|
950
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
951
|
+
attr_accessor object_size: ::Integer
|
952
|
+
SENSITIVE: []
|
953
|
+
end
|
954
|
+
|
955
|
+
class GetObjectAttributesParts
|
956
|
+
attr_accessor total_parts_count: ::Integer
|
957
|
+
attr_accessor part_number_marker: ::Integer
|
958
|
+
attr_accessor next_part_number_marker: ::Integer
|
959
|
+
attr_accessor max_parts: ::Integer
|
960
|
+
attr_accessor is_truncated: bool
|
961
|
+
attr_accessor parts: ::Array[Types::ObjectPart]
|
962
|
+
SENSITIVE: []
|
963
|
+
end
|
964
|
+
|
965
|
+
class GetObjectAttributesRequest
|
966
|
+
attr_accessor bucket: ::String
|
967
|
+
attr_accessor key: ::String
|
968
|
+
attr_accessor version_id: ::String
|
969
|
+
attr_accessor max_parts: ::Integer
|
970
|
+
attr_accessor part_number_marker: ::Integer
|
971
|
+
attr_accessor sse_customer_algorithm: ::String
|
972
|
+
attr_accessor sse_customer_key: ::String
|
973
|
+
attr_accessor sse_customer_key_md5: ::String
|
974
|
+
attr_accessor request_payer: ("requester")
|
975
|
+
attr_accessor expected_bucket_owner: ::String
|
976
|
+
attr_accessor object_attributes: ::Array[("ETag" | "Checksum" | "ObjectParts" | "StorageClass" | "ObjectSize")]
|
977
|
+
SENSITIVE: [:sse_customer_key]
|
978
|
+
end
|
979
|
+
|
980
|
+
class GetObjectLegalHoldOutput
|
981
|
+
attr_accessor legal_hold: Types::ObjectLockLegalHold
|
982
|
+
SENSITIVE: []
|
983
|
+
end
|
984
|
+
|
985
|
+
class GetObjectLegalHoldRequest
|
986
|
+
attr_accessor bucket: ::String
|
987
|
+
attr_accessor key: ::String
|
988
|
+
attr_accessor version_id: ::String
|
989
|
+
attr_accessor request_payer: ("requester")
|
990
|
+
attr_accessor expected_bucket_owner: ::String
|
991
|
+
SENSITIVE: []
|
992
|
+
end
|
993
|
+
|
994
|
+
class GetObjectLockConfigurationOutput
|
995
|
+
attr_accessor object_lock_configuration: Types::ObjectLockConfiguration
|
996
|
+
SENSITIVE: []
|
997
|
+
end
|
998
|
+
|
999
|
+
class GetObjectLockConfigurationRequest
|
1000
|
+
attr_accessor bucket: ::String
|
1001
|
+
attr_accessor expected_bucket_owner: ::String
|
1002
|
+
SENSITIVE: []
|
1003
|
+
end
|
1004
|
+
|
1005
|
+
class GetObjectOutput
|
1006
|
+
attr_accessor body: ::IO
|
1007
|
+
attr_accessor delete_marker: bool
|
1008
|
+
attr_accessor accept_ranges: ::String
|
1009
|
+
attr_accessor expiration: ::String
|
1010
|
+
attr_accessor restore: ::String
|
1011
|
+
attr_accessor last_modified: ::Time
|
1012
|
+
attr_accessor content_length: ::Integer
|
1013
|
+
attr_accessor etag: ::String
|
1014
|
+
attr_accessor checksum_crc32: ::String
|
1015
|
+
attr_accessor checksum_crc32c: ::String
|
1016
|
+
attr_accessor checksum_crc64nvme: ::String
|
1017
|
+
attr_accessor checksum_sha1: ::String
|
1018
|
+
attr_accessor checksum_sha256: ::String
|
1019
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1020
|
+
attr_accessor missing_meta: ::Integer
|
1021
|
+
attr_accessor version_id: ::String
|
1022
|
+
attr_accessor cache_control: ::String
|
1023
|
+
attr_accessor content_disposition: ::String
|
1024
|
+
attr_accessor content_encoding: ::String
|
1025
|
+
attr_accessor content_language: ::String
|
1026
|
+
attr_accessor content_range: ::String
|
1027
|
+
attr_accessor content_type: ::String
|
1028
|
+
attr_accessor expires: ::Time
|
1029
|
+
attr_accessor expires_string: ::String
|
1030
|
+
attr_accessor website_redirect_location: ::String
|
1031
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
1032
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
1033
|
+
attr_accessor sse_customer_algorithm: ::String
|
1034
|
+
attr_accessor sse_customer_key_md5: ::String
|
1035
|
+
attr_accessor ssekms_key_id: ::String
|
1036
|
+
attr_accessor bucket_key_enabled: bool
|
1037
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1038
|
+
attr_accessor request_charged: ("requester")
|
1039
|
+
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
1040
|
+
attr_accessor parts_count: ::Integer
|
1041
|
+
attr_accessor tag_count: ::Integer
|
1042
|
+
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
1043
|
+
attr_accessor object_lock_retain_until_date: ::Time
|
1044
|
+
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
1045
|
+
SENSITIVE: [:ssekms_key_id]
|
1046
|
+
end
|
1047
|
+
|
1048
|
+
class GetObjectRequest
|
1049
|
+
attr_accessor bucket: ::String
|
1050
|
+
attr_accessor if_match: ::String
|
1051
|
+
attr_accessor if_modified_since: ::Time
|
1052
|
+
attr_accessor if_none_match: ::String
|
1053
|
+
attr_accessor if_unmodified_since: ::Time
|
1054
|
+
attr_accessor key: ::String
|
1055
|
+
attr_accessor range: ::String
|
1056
|
+
attr_accessor response_cache_control: ::String
|
1057
|
+
attr_accessor response_content_disposition: ::String
|
1058
|
+
attr_accessor response_content_encoding: ::String
|
1059
|
+
attr_accessor response_content_language: ::String
|
1060
|
+
attr_accessor response_content_type: ::String
|
1061
|
+
attr_accessor response_expires: ::Time
|
1062
|
+
attr_accessor version_id: ::String
|
1063
|
+
attr_accessor sse_customer_algorithm: ::String
|
1064
|
+
attr_accessor sse_customer_key: ::String
|
1065
|
+
attr_accessor sse_customer_key_md5: ::String
|
1066
|
+
attr_accessor request_payer: ("requester")
|
1067
|
+
attr_accessor part_number: ::Integer
|
1068
|
+
attr_accessor expected_bucket_owner: ::String
|
1069
|
+
attr_accessor checksum_mode: ("ENABLED")
|
1070
|
+
SENSITIVE: [:sse_customer_key]
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
class GetObjectRetentionOutput
|
1074
|
+
attr_accessor retention: Types::ObjectLockRetention
|
1075
|
+
SENSITIVE: []
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class GetObjectRetentionRequest
|
1079
|
+
attr_accessor bucket: ::String
|
1080
|
+
attr_accessor key: ::String
|
1081
|
+
attr_accessor version_id: ::String
|
1082
|
+
attr_accessor request_payer: ("requester")
|
1083
|
+
attr_accessor expected_bucket_owner: ::String
|
1084
|
+
SENSITIVE: []
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
class GetObjectTaggingOutput
|
1088
|
+
attr_accessor version_id: ::String
|
1089
|
+
attr_accessor tag_set: ::Array[Types::Tag]
|
1090
|
+
SENSITIVE: []
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
class GetObjectTaggingRequest
|
1094
|
+
attr_accessor bucket: ::String
|
1095
|
+
attr_accessor key: ::String
|
1096
|
+
attr_accessor version_id: ::String
|
1097
|
+
attr_accessor expected_bucket_owner: ::String
|
1098
|
+
attr_accessor request_payer: ("requester")
|
1099
|
+
SENSITIVE: []
|
1100
|
+
end
|
1101
|
+
|
1102
|
+
class GetObjectTorrentOutput
|
1103
|
+
attr_accessor body: ::IO
|
1104
|
+
attr_accessor request_charged: ("requester")
|
1105
|
+
SENSITIVE: []
|
1106
|
+
end
|
1107
|
+
|
1108
|
+
class GetObjectTorrentRequest
|
1109
|
+
attr_accessor bucket: ::String
|
1110
|
+
attr_accessor key: ::String
|
1111
|
+
attr_accessor request_payer: ("requester")
|
1112
|
+
attr_accessor expected_bucket_owner: ::String
|
1113
|
+
SENSITIVE: []
|
1114
|
+
end
|
1115
|
+
|
1116
|
+
class GetPublicAccessBlockOutput
|
1117
|
+
attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
|
1118
|
+
SENSITIVE: []
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
class GetPublicAccessBlockRequest
|
1122
|
+
attr_accessor bucket: ::String
|
1123
|
+
attr_accessor expected_bucket_owner: ::String
|
1124
|
+
SENSITIVE: []
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
class GlacierJobParameters
|
1128
|
+
attr_accessor tier: ("Standard" | "Bulk" | "Expedited")
|
1129
|
+
SENSITIVE: []
|
1130
|
+
end
|
1131
|
+
|
1132
|
+
class Grant
|
1133
|
+
attr_accessor grantee: Types::Grantee
|
1134
|
+
attr_accessor permission: ("FULL_CONTROL" | "WRITE" | "WRITE_ACP" | "READ" | "READ_ACP")
|
1135
|
+
SENSITIVE: []
|
1136
|
+
end
|
1137
|
+
|
1138
|
+
class Grantee
|
1139
|
+
attr_accessor display_name: ::String
|
1140
|
+
attr_accessor email_address: ::String
|
1141
|
+
attr_accessor id: ::String
|
1142
|
+
attr_accessor type: ("CanonicalUser" | "AmazonCustomerByEmail" | "Group")
|
1143
|
+
attr_accessor uri: ::String
|
1144
|
+
SENSITIVE: []
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
class HeadBucketOutput
|
1148
|
+
attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
|
1149
|
+
attr_accessor bucket_location_name: ::String
|
1150
|
+
attr_accessor bucket_region: ::String
|
1151
|
+
attr_accessor access_point_alias: bool
|
1152
|
+
SENSITIVE: []
|
1153
|
+
end
|
1154
|
+
|
1155
|
+
class HeadBucketRequest
|
1156
|
+
attr_accessor bucket: ::String
|
1157
|
+
attr_accessor expected_bucket_owner: ::String
|
1158
|
+
SENSITIVE: []
|
1159
|
+
end
|
1160
|
+
|
1161
|
+
class HeadObjectOutput
|
1162
|
+
attr_accessor delete_marker: bool
|
1163
|
+
attr_accessor accept_ranges: ::String
|
1164
|
+
attr_accessor expiration: ::String
|
1165
|
+
attr_accessor restore: ::String
|
1166
|
+
attr_accessor archive_status: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
|
1167
|
+
attr_accessor last_modified: ::Time
|
1168
|
+
attr_accessor content_length: ::Integer
|
1169
|
+
attr_accessor checksum_crc32: ::String
|
1170
|
+
attr_accessor checksum_crc32c: ::String
|
1171
|
+
attr_accessor checksum_crc64nvme: ::String
|
1172
|
+
attr_accessor checksum_sha1: ::String
|
1173
|
+
attr_accessor checksum_sha256: ::String
|
1174
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1175
|
+
attr_accessor etag: ::String
|
1176
|
+
attr_accessor missing_meta: ::Integer
|
1177
|
+
attr_accessor version_id: ::String
|
1178
|
+
attr_accessor cache_control: ::String
|
1179
|
+
attr_accessor content_disposition: ::String
|
1180
|
+
attr_accessor content_encoding: ::String
|
1181
|
+
attr_accessor content_language: ::String
|
1182
|
+
attr_accessor content_type: ::String
|
1183
|
+
attr_accessor content_range: ::String
|
1184
|
+
attr_accessor expires: ::Time
|
1185
|
+
attr_accessor expires_string: ::String
|
1186
|
+
attr_accessor website_redirect_location: ::String
|
1187
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
1188
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
1189
|
+
attr_accessor sse_customer_algorithm: ::String
|
1190
|
+
attr_accessor sse_customer_key_md5: ::String
|
1191
|
+
attr_accessor ssekms_key_id: ::String
|
1192
|
+
attr_accessor bucket_key_enabled: bool
|
1193
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1194
|
+
attr_accessor request_charged: ("requester")
|
1195
|
+
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
1196
|
+
attr_accessor parts_count: ::Integer
|
1197
|
+
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
1198
|
+
attr_accessor object_lock_retain_until_date: ::Time
|
1199
|
+
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
1200
|
+
SENSITIVE: [:ssekms_key_id]
|
1201
|
+
end
|
1202
|
+
|
1203
|
+
class HeadObjectRequest
|
1204
|
+
attr_accessor bucket: ::String
|
1205
|
+
attr_accessor if_match: ::String
|
1206
|
+
attr_accessor if_modified_since: ::Time
|
1207
|
+
attr_accessor if_none_match: ::String
|
1208
|
+
attr_accessor if_unmodified_since: ::Time
|
1209
|
+
attr_accessor key: ::String
|
1210
|
+
attr_accessor range: ::String
|
1211
|
+
attr_accessor response_cache_control: ::String
|
1212
|
+
attr_accessor response_content_disposition: ::String
|
1213
|
+
attr_accessor response_content_encoding: ::String
|
1214
|
+
attr_accessor response_content_language: ::String
|
1215
|
+
attr_accessor response_content_type: ::String
|
1216
|
+
attr_accessor response_expires: ::Time
|
1217
|
+
attr_accessor version_id: ::String
|
1218
|
+
attr_accessor sse_customer_algorithm: ::String
|
1219
|
+
attr_accessor sse_customer_key: ::String
|
1220
|
+
attr_accessor sse_customer_key_md5: ::String
|
1221
|
+
attr_accessor request_payer: ("requester")
|
1222
|
+
attr_accessor part_number: ::Integer
|
1223
|
+
attr_accessor expected_bucket_owner: ::String
|
1224
|
+
attr_accessor checksum_mode: ("ENABLED")
|
1225
|
+
SENSITIVE: [:sse_customer_key]
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
class IndexDocument
|
1229
|
+
attr_accessor suffix: ::String
|
1230
|
+
SENSITIVE: []
|
1231
|
+
end
|
1232
|
+
|
1233
|
+
class Initiator
|
1234
|
+
attr_accessor id: ::String
|
1235
|
+
attr_accessor display_name: ::String
|
1236
|
+
SENSITIVE: []
|
1237
|
+
end
|
1238
|
+
|
1239
|
+
class InputSerialization
|
1240
|
+
attr_accessor csv: Types::CSVInput
|
1241
|
+
attr_accessor compression_type: ("NONE" | "GZIP" | "BZIP2")
|
1242
|
+
attr_accessor json: Types::JSONInput
|
1243
|
+
attr_accessor parquet: Types::ParquetInput
|
1244
|
+
SENSITIVE: []
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class IntelligentTieringAndOperator
|
1248
|
+
attr_accessor prefix: ::String
|
1249
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1250
|
+
SENSITIVE: []
|
1251
|
+
end
|
1252
|
+
|
1253
|
+
class IntelligentTieringConfiguration
|
1254
|
+
attr_accessor id: ::String
|
1255
|
+
attr_accessor filter: Types::IntelligentTieringFilter
|
1256
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
1257
|
+
attr_accessor tierings: ::Array[Types::Tiering]
|
1258
|
+
SENSITIVE: []
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
class IntelligentTieringFilter
|
1262
|
+
attr_accessor prefix: ::String
|
1263
|
+
attr_accessor tag: Types::Tag
|
1264
|
+
attr_accessor and: Types::IntelligentTieringAndOperator
|
1265
|
+
SENSITIVE: []
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
class InvalidObjectState
|
1269
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1270
|
+
attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
|
1271
|
+
SENSITIVE: []
|
1272
|
+
end
|
1273
|
+
|
1274
|
+
class InvalidRequest < Aws::EmptyStructure
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
class InvalidWriteOffset < Aws::EmptyStructure
|
1278
|
+
end
|
1279
|
+
|
1280
|
+
class InventoryConfiguration
|
1281
|
+
attr_accessor destination: Types::InventoryDestination
|
1282
|
+
attr_accessor is_enabled: bool
|
1283
|
+
attr_accessor filter: Types::InventoryFilter
|
1284
|
+
attr_accessor id: ::String
|
1285
|
+
attr_accessor included_object_versions: ("All" | "Current")
|
1286
|
+
attr_accessor optional_fields: ::Array[("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner")]
|
1287
|
+
attr_accessor schedule: Types::InventorySchedule
|
1288
|
+
SENSITIVE: []
|
1289
|
+
end
|
1290
|
+
|
1291
|
+
class InventoryDestination
|
1292
|
+
attr_accessor s3_bucket_destination: Types::InventoryS3BucketDestination
|
1293
|
+
SENSITIVE: []
|
1294
|
+
end
|
1295
|
+
|
1296
|
+
class InventoryEncryption
|
1297
|
+
attr_accessor sses3: Types::SSES3
|
1298
|
+
attr_accessor ssekms: Types::SSEKMS
|
1299
|
+
SENSITIVE: []
|
1300
|
+
end
|
1301
|
+
|
1302
|
+
class InventoryFilter
|
1303
|
+
attr_accessor prefix: ::String
|
1304
|
+
SENSITIVE: []
|
1305
|
+
end
|
1306
|
+
|
1307
|
+
class InventoryS3BucketDestination
|
1308
|
+
attr_accessor account_id: ::String
|
1309
|
+
attr_accessor bucket: ::String
|
1310
|
+
attr_accessor format: ("CSV" | "ORC" | "Parquet")
|
1311
|
+
attr_accessor prefix: ::String
|
1312
|
+
attr_accessor encryption: Types::InventoryEncryption
|
1313
|
+
SENSITIVE: []
|
1314
|
+
end
|
1315
|
+
|
1316
|
+
class InventorySchedule
|
1317
|
+
attr_accessor frequency: ("Daily" | "Weekly")
|
1318
|
+
SENSITIVE: []
|
1319
|
+
end
|
1320
|
+
|
1321
|
+
class JSONInput
|
1322
|
+
attr_accessor type: ("DOCUMENT" | "LINES")
|
1323
|
+
SENSITIVE: []
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
class JSONOutput
|
1327
|
+
attr_accessor record_delimiter: ::String
|
1328
|
+
SENSITIVE: []
|
1329
|
+
end
|
1330
|
+
|
1331
|
+
class LambdaFunctionConfiguration
|
1332
|
+
attr_accessor id: ::String
|
1333
|
+
attr_accessor lambda_function_arn: ::String
|
1334
|
+
attr_accessor events: ::Array[("s3:ReducedRedundancyLostObject" | "s3:ObjectCreated:*" | "s3:ObjectCreated:Put" | "s3:ObjectCreated:Post" | "s3:ObjectCreated:Copy" | "s3:ObjectCreated:CompleteMultipartUpload" | "s3:ObjectRemoved:*" | "s3:ObjectRemoved:Delete" | "s3:ObjectRemoved:DeleteMarkerCreated" | "s3:ObjectRestore:*" | "s3:ObjectRestore:Post" | "s3:ObjectRestore:Completed" | "s3:Replication:*" | "s3:Replication:OperationFailedReplication" | "s3:Replication:OperationNotTracked" | "s3:Replication:OperationMissedThreshold" | "s3:Replication:OperationReplicatedAfterThreshold" | "s3:ObjectRestore:Delete" | "s3:LifecycleTransition" | "s3:IntelligentTiering" | "s3:ObjectAcl:Put" | "s3:LifecycleExpiration:*" | "s3:LifecycleExpiration:Delete" | "s3:LifecycleExpiration:DeleteMarkerCreated" | "s3:ObjectTagging:*" | "s3:ObjectTagging:Put" | "s3:ObjectTagging:Delete")]
|
1335
|
+
attr_accessor filter: Types::NotificationConfigurationFilter
|
1336
|
+
SENSITIVE: []
|
1337
|
+
end
|
1338
|
+
|
1339
|
+
class LifecycleConfiguration
|
1340
|
+
attr_accessor rules: ::Array[Types::Rule]
|
1341
|
+
SENSITIVE: []
|
1342
|
+
end
|
1343
|
+
|
1344
|
+
class LifecycleExpiration
|
1345
|
+
attr_accessor date: ::Time
|
1346
|
+
attr_accessor days: ::Integer
|
1347
|
+
attr_accessor expired_object_delete_marker: bool
|
1348
|
+
SENSITIVE: []
|
1349
|
+
end
|
1350
|
+
|
1351
|
+
class LifecycleRule
|
1352
|
+
attr_accessor expiration: Types::LifecycleExpiration
|
1353
|
+
attr_accessor id: ::String
|
1354
|
+
attr_accessor prefix: ::String
|
1355
|
+
attr_accessor filter: Types::LifecycleRuleFilter
|
1356
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
1357
|
+
attr_accessor transitions: ::Array[Types::Transition]
|
1358
|
+
attr_accessor noncurrent_version_transitions: ::Array[Types::NoncurrentVersionTransition]
|
1359
|
+
attr_accessor noncurrent_version_expiration: Types::NoncurrentVersionExpiration
|
1360
|
+
attr_accessor abort_incomplete_multipart_upload: Types::AbortIncompleteMultipartUpload
|
1361
|
+
SENSITIVE: []
|
1362
|
+
end
|
1363
|
+
|
1364
|
+
class LifecycleRuleAndOperator
|
1365
|
+
attr_accessor prefix: ::String
|
1366
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1367
|
+
attr_accessor object_size_greater_than: ::Integer
|
1368
|
+
attr_accessor object_size_less_than: ::Integer
|
1369
|
+
SENSITIVE: []
|
1370
|
+
end
|
1371
|
+
|
1372
|
+
class LifecycleRuleFilter
|
1373
|
+
attr_accessor prefix: ::String
|
1374
|
+
attr_accessor tag: Types::Tag
|
1375
|
+
attr_accessor object_size_greater_than: ::Integer
|
1376
|
+
attr_accessor object_size_less_than: ::Integer
|
1377
|
+
attr_accessor and: Types::LifecycleRuleAndOperator
|
1378
|
+
SENSITIVE: []
|
1379
|
+
end
|
1380
|
+
|
1381
|
+
class ListBucketAnalyticsConfigurationsOutput
|
1382
|
+
attr_accessor is_truncated: bool
|
1383
|
+
attr_accessor continuation_token: ::String
|
1384
|
+
attr_accessor next_continuation_token: ::String
|
1385
|
+
attr_accessor analytics_configuration_list: ::Array[Types::AnalyticsConfiguration]
|
1386
|
+
SENSITIVE: []
|
1387
|
+
end
|
1388
|
+
|
1389
|
+
class ListBucketAnalyticsConfigurationsRequest
|
1390
|
+
attr_accessor bucket: ::String
|
1391
|
+
attr_accessor continuation_token: ::String
|
1392
|
+
attr_accessor expected_bucket_owner: ::String
|
1393
|
+
SENSITIVE: []
|
1394
|
+
end
|
1395
|
+
|
1396
|
+
class ListBucketIntelligentTieringConfigurationsOutput
|
1397
|
+
attr_accessor is_truncated: bool
|
1398
|
+
attr_accessor continuation_token: ::String
|
1399
|
+
attr_accessor next_continuation_token: ::String
|
1400
|
+
attr_accessor intelligent_tiering_configuration_list: ::Array[Types::IntelligentTieringConfiguration]
|
1401
|
+
SENSITIVE: []
|
1402
|
+
end
|
1403
|
+
|
1404
|
+
class ListBucketIntelligentTieringConfigurationsRequest
|
1405
|
+
attr_accessor bucket: ::String
|
1406
|
+
attr_accessor continuation_token: ::String
|
1407
|
+
SENSITIVE: []
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
class ListBucketInventoryConfigurationsOutput
|
1411
|
+
attr_accessor continuation_token: ::String
|
1412
|
+
attr_accessor inventory_configuration_list: ::Array[Types::InventoryConfiguration]
|
1413
|
+
attr_accessor is_truncated: bool
|
1414
|
+
attr_accessor next_continuation_token: ::String
|
1415
|
+
SENSITIVE: []
|
1416
|
+
end
|
1417
|
+
|
1418
|
+
class ListBucketInventoryConfigurationsRequest
|
1419
|
+
attr_accessor bucket: ::String
|
1420
|
+
attr_accessor continuation_token: ::String
|
1421
|
+
attr_accessor expected_bucket_owner: ::String
|
1422
|
+
SENSITIVE: []
|
1423
|
+
end
|
1424
|
+
|
1425
|
+
class ListBucketMetricsConfigurationsOutput
|
1426
|
+
attr_accessor is_truncated: bool
|
1427
|
+
attr_accessor continuation_token: ::String
|
1428
|
+
attr_accessor next_continuation_token: ::String
|
1429
|
+
attr_accessor metrics_configuration_list: ::Array[Types::MetricsConfiguration]
|
1430
|
+
SENSITIVE: []
|
1431
|
+
end
|
1432
|
+
|
1433
|
+
class ListBucketMetricsConfigurationsRequest
|
1434
|
+
attr_accessor bucket: ::String
|
1435
|
+
attr_accessor continuation_token: ::String
|
1436
|
+
attr_accessor expected_bucket_owner: ::String
|
1437
|
+
SENSITIVE: []
|
1438
|
+
end
|
1439
|
+
|
1440
|
+
class ListBucketsOutput
|
1441
|
+
attr_accessor buckets: ::Array[Types::Bucket]
|
1442
|
+
attr_accessor owner: Types::Owner
|
1443
|
+
attr_accessor continuation_token: ::String
|
1444
|
+
attr_accessor prefix: ::String
|
1445
|
+
SENSITIVE: []
|
1446
|
+
end
|
1447
|
+
|
1448
|
+
class ListBucketsRequest
|
1449
|
+
attr_accessor max_buckets: ::Integer
|
1450
|
+
attr_accessor continuation_token: ::String
|
1451
|
+
attr_accessor prefix: ::String
|
1452
|
+
attr_accessor bucket_region: ::String
|
1453
|
+
SENSITIVE: []
|
1454
|
+
end
|
1455
|
+
|
1456
|
+
class ListDirectoryBucketsOutput
|
1457
|
+
attr_accessor buckets: ::Array[Types::Bucket]
|
1458
|
+
attr_accessor continuation_token: ::String
|
1459
|
+
SENSITIVE: []
|
1460
|
+
end
|
1461
|
+
|
1462
|
+
class ListDirectoryBucketsRequest
|
1463
|
+
attr_accessor continuation_token: ::String
|
1464
|
+
attr_accessor max_directory_buckets: ::Integer
|
1465
|
+
SENSITIVE: []
|
1466
|
+
end
|
1467
|
+
|
1468
|
+
class ListMultipartUploadsOutput
|
1469
|
+
attr_accessor bucket: ::String
|
1470
|
+
attr_accessor key_marker: ::String
|
1471
|
+
attr_accessor upload_id_marker: ::String
|
1472
|
+
attr_accessor next_key_marker: ::String
|
1473
|
+
attr_accessor prefix: ::String
|
1474
|
+
attr_accessor delimiter: ::String
|
1475
|
+
attr_accessor next_upload_id_marker: ::String
|
1476
|
+
attr_accessor max_uploads: ::Integer
|
1477
|
+
attr_accessor is_truncated: bool
|
1478
|
+
attr_accessor uploads: ::Array[Types::MultipartUpload]
|
1479
|
+
attr_accessor common_prefixes: ::Array[Types::CommonPrefix]
|
1480
|
+
attr_accessor encoding_type: ("url")
|
1481
|
+
attr_accessor request_charged: ("requester")
|
1482
|
+
SENSITIVE: []
|
1483
|
+
end
|
1484
|
+
|
1485
|
+
class ListMultipartUploadsRequest
|
1486
|
+
attr_accessor bucket: ::String
|
1487
|
+
attr_accessor delimiter: ::String
|
1488
|
+
attr_accessor encoding_type: ("url")
|
1489
|
+
attr_accessor key_marker: ::String
|
1490
|
+
attr_accessor max_uploads: ::Integer
|
1491
|
+
attr_accessor prefix: ::String
|
1492
|
+
attr_accessor upload_id_marker: ::String
|
1493
|
+
attr_accessor expected_bucket_owner: ::String
|
1494
|
+
attr_accessor request_payer: ("requester")
|
1495
|
+
SENSITIVE: []
|
1496
|
+
end
|
1497
|
+
|
1498
|
+
class ListObjectVersionsOutput
|
1499
|
+
attr_accessor is_truncated: bool
|
1500
|
+
attr_accessor key_marker: ::String
|
1501
|
+
attr_accessor version_id_marker: ::String
|
1502
|
+
attr_accessor next_key_marker: ::String
|
1503
|
+
attr_accessor next_version_id_marker: ::String
|
1504
|
+
attr_accessor versions: ::Array[Types::ObjectVersion]
|
1505
|
+
attr_accessor delete_markers: ::Array[Types::DeleteMarkerEntry]
|
1506
|
+
attr_accessor name: ::String
|
1507
|
+
attr_accessor prefix: ::String
|
1508
|
+
attr_accessor delimiter: ::String
|
1509
|
+
attr_accessor max_keys: ::Integer
|
1510
|
+
attr_accessor common_prefixes: ::Array[Types::CommonPrefix]
|
1511
|
+
attr_accessor encoding_type: ("url")
|
1512
|
+
attr_accessor request_charged: ("requester")
|
1513
|
+
SENSITIVE: []
|
1514
|
+
end
|
1515
|
+
|
1516
|
+
class ListObjectVersionsRequest
|
1517
|
+
attr_accessor bucket: ::String
|
1518
|
+
attr_accessor delimiter: ::String
|
1519
|
+
attr_accessor encoding_type: ("url")
|
1520
|
+
attr_accessor key_marker: ::String
|
1521
|
+
attr_accessor max_keys: ::Integer
|
1522
|
+
attr_accessor prefix: ::String
|
1523
|
+
attr_accessor version_id_marker: ::String
|
1524
|
+
attr_accessor expected_bucket_owner: ::String
|
1525
|
+
attr_accessor request_payer: ("requester")
|
1526
|
+
attr_accessor optional_object_attributes: ::Array[("RestoreStatus")]
|
1527
|
+
SENSITIVE: []
|
1528
|
+
end
|
1529
|
+
|
1530
|
+
class ListObjectsOutput
|
1531
|
+
attr_accessor is_truncated: bool
|
1532
|
+
attr_accessor marker: ::String
|
1533
|
+
attr_accessor next_marker: ::String
|
1534
|
+
attr_accessor contents: ::Array[Types::Object]
|
1535
|
+
attr_accessor name: ::String
|
1536
|
+
attr_accessor prefix: ::String
|
1537
|
+
attr_accessor delimiter: ::String
|
1538
|
+
attr_accessor max_keys: ::Integer
|
1539
|
+
attr_accessor common_prefixes: ::Array[Types::CommonPrefix]
|
1540
|
+
attr_accessor encoding_type: ("url")
|
1541
|
+
attr_accessor request_charged: ("requester")
|
1542
|
+
SENSITIVE: []
|
1543
|
+
end
|
1544
|
+
|
1545
|
+
class ListObjectsRequest
|
1546
|
+
attr_accessor bucket: ::String
|
1547
|
+
attr_accessor delimiter: ::String
|
1548
|
+
attr_accessor encoding_type: ("url")
|
1549
|
+
attr_accessor marker: ::String
|
1550
|
+
attr_accessor max_keys: ::Integer
|
1551
|
+
attr_accessor prefix: ::String
|
1552
|
+
attr_accessor request_payer: ("requester")
|
1553
|
+
attr_accessor expected_bucket_owner: ::String
|
1554
|
+
attr_accessor optional_object_attributes: ::Array[("RestoreStatus")]
|
1555
|
+
SENSITIVE: []
|
1556
|
+
end
|
1557
|
+
|
1558
|
+
class ListObjectsV2Output
|
1559
|
+
attr_accessor is_truncated: bool
|
1560
|
+
attr_accessor contents: ::Array[Types::Object]
|
1561
|
+
attr_accessor name: ::String
|
1562
|
+
attr_accessor prefix: ::String
|
1563
|
+
attr_accessor delimiter: ::String
|
1564
|
+
attr_accessor max_keys: ::Integer
|
1565
|
+
attr_accessor common_prefixes: ::Array[Types::CommonPrefix]
|
1566
|
+
attr_accessor encoding_type: ("url")
|
1567
|
+
attr_accessor key_count: ::Integer
|
1568
|
+
attr_accessor continuation_token: ::String
|
1569
|
+
attr_accessor next_continuation_token: ::String
|
1570
|
+
attr_accessor start_after: ::String
|
1571
|
+
attr_accessor request_charged: ("requester")
|
1572
|
+
SENSITIVE: []
|
1573
|
+
end
|
1574
|
+
|
1575
|
+
class ListObjectsV2Request
|
1576
|
+
attr_accessor bucket: ::String
|
1577
|
+
attr_accessor delimiter: ::String
|
1578
|
+
attr_accessor encoding_type: ("url")
|
1579
|
+
attr_accessor max_keys: ::Integer
|
1580
|
+
attr_accessor prefix: ::String
|
1581
|
+
attr_accessor continuation_token: ::String
|
1582
|
+
attr_accessor fetch_owner: bool
|
1583
|
+
attr_accessor start_after: ::String
|
1584
|
+
attr_accessor request_payer: ("requester")
|
1585
|
+
attr_accessor expected_bucket_owner: ::String
|
1586
|
+
attr_accessor optional_object_attributes: ::Array[("RestoreStatus")]
|
1587
|
+
SENSITIVE: []
|
1588
|
+
end
|
1589
|
+
|
1590
|
+
class ListPartsOutput
|
1591
|
+
attr_accessor abort_date: ::Time
|
1592
|
+
attr_accessor abort_rule_id: ::String
|
1593
|
+
attr_accessor bucket: ::String
|
1594
|
+
attr_accessor key: ::String
|
1595
|
+
attr_accessor upload_id: ::String
|
1596
|
+
attr_accessor part_number_marker: ::Integer
|
1597
|
+
attr_accessor next_part_number_marker: ::Integer
|
1598
|
+
attr_accessor max_parts: ::Integer
|
1599
|
+
attr_accessor is_truncated: bool
|
1600
|
+
attr_accessor parts: ::Array[Types::Part]
|
1601
|
+
attr_accessor initiator: Types::Initiator
|
1602
|
+
attr_accessor owner: Types::Owner
|
1603
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1604
|
+
attr_accessor request_charged: ("requester")
|
1605
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1606
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1607
|
+
SENSITIVE: []
|
1608
|
+
end
|
1609
|
+
|
1610
|
+
class ListPartsRequest
|
1611
|
+
attr_accessor bucket: ::String
|
1612
|
+
attr_accessor key: ::String
|
1613
|
+
attr_accessor max_parts: ::Integer
|
1614
|
+
attr_accessor part_number_marker: ::Integer
|
1615
|
+
attr_accessor upload_id: ::String
|
1616
|
+
attr_accessor request_payer: ("requester")
|
1617
|
+
attr_accessor expected_bucket_owner: ::String
|
1618
|
+
attr_accessor sse_customer_algorithm: ::String
|
1619
|
+
attr_accessor sse_customer_key: ::String
|
1620
|
+
attr_accessor sse_customer_key_md5: ::String
|
1621
|
+
SENSITIVE: [:sse_customer_key]
|
1622
|
+
end
|
1623
|
+
|
1624
|
+
class LocationInfo
|
1625
|
+
attr_accessor type: ("AvailabilityZone" | "LocalZone")
|
1626
|
+
attr_accessor name: ::String
|
1627
|
+
SENSITIVE: []
|
1628
|
+
end
|
1629
|
+
|
1630
|
+
class LoggingEnabled
|
1631
|
+
attr_accessor target_bucket: ::String
|
1632
|
+
attr_accessor target_grants: ::Array[Types::TargetGrant]
|
1633
|
+
attr_accessor target_prefix: ::String
|
1634
|
+
attr_accessor target_object_key_format: Types::TargetObjectKeyFormat
|
1635
|
+
SENSITIVE: []
|
1636
|
+
end
|
1637
|
+
|
1638
|
+
class MetadataEntry
|
1639
|
+
attr_accessor name: ::String
|
1640
|
+
attr_accessor value: ::String
|
1641
|
+
SENSITIVE: []
|
1642
|
+
end
|
1643
|
+
|
1644
|
+
class MetadataTableConfiguration
|
1645
|
+
attr_accessor s3_tables_destination: Types::S3TablesDestination
|
1646
|
+
SENSITIVE: []
|
1647
|
+
end
|
1648
|
+
|
1649
|
+
class MetadataTableConfigurationResult
|
1650
|
+
attr_accessor s3_tables_destination_result: Types::S3TablesDestinationResult
|
1651
|
+
SENSITIVE: []
|
1652
|
+
end
|
1653
|
+
|
1654
|
+
class Metrics
|
1655
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
1656
|
+
attr_accessor event_threshold: Types::ReplicationTimeValue
|
1657
|
+
SENSITIVE: []
|
1658
|
+
end
|
1659
|
+
|
1660
|
+
class MetricsAndOperator
|
1661
|
+
attr_accessor prefix: ::String
|
1662
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1663
|
+
attr_accessor access_point_arn: ::String
|
1664
|
+
SENSITIVE: []
|
1665
|
+
end
|
1666
|
+
|
1667
|
+
class MetricsConfiguration
|
1668
|
+
attr_accessor id: ::String
|
1669
|
+
attr_accessor filter: Types::MetricsFilter
|
1670
|
+
SENSITIVE: []
|
1671
|
+
end
|
1672
|
+
|
1673
|
+
class MetricsFilter
|
1674
|
+
attr_accessor prefix: ::String
|
1675
|
+
attr_accessor tag: Types::Tag
|
1676
|
+
attr_accessor access_point_arn: ::String
|
1677
|
+
attr_accessor and: Types::MetricsAndOperator
|
1678
|
+
SENSITIVE: []
|
1679
|
+
end
|
1680
|
+
|
1681
|
+
class MultipartUpload
|
1682
|
+
attr_accessor upload_id: ::String
|
1683
|
+
attr_accessor key: ::String
|
1684
|
+
attr_accessor initiated: ::Time
|
1685
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1686
|
+
attr_accessor owner: Types::Owner
|
1687
|
+
attr_accessor initiator: Types::Initiator
|
1688
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1689
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1690
|
+
SENSITIVE: []
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
class NoSuchBucket < Aws::EmptyStructure
|
1694
|
+
end
|
1695
|
+
|
1696
|
+
class NoSuchKey < Aws::EmptyStructure
|
1697
|
+
end
|
1698
|
+
|
1699
|
+
class NoSuchUpload < Aws::EmptyStructure
|
1700
|
+
end
|
1701
|
+
|
1702
|
+
class NoncurrentVersionExpiration
|
1703
|
+
attr_accessor noncurrent_days: ::Integer
|
1704
|
+
attr_accessor newer_noncurrent_versions: ::Integer
|
1705
|
+
SENSITIVE: []
|
1706
|
+
end
|
1707
|
+
|
1708
|
+
class NoncurrentVersionTransition
|
1709
|
+
attr_accessor noncurrent_days: ::Integer
|
1710
|
+
attr_accessor storage_class: ("GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "GLACIER_IR")
|
1711
|
+
attr_accessor newer_noncurrent_versions: ::Integer
|
1712
|
+
SENSITIVE: []
|
1713
|
+
end
|
1714
|
+
|
1715
|
+
class NotificationConfiguration
|
1716
|
+
attr_accessor topic_configurations: ::Array[Types::TopicConfiguration]
|
1717
|
+
attr_accessor queue_configurations: ::Array[Types::QueueConfiguration]
|
1718
|
+
attr_accessor lambda_function_configurations: ::Array[Types::LambdaFunctionConfiguration]
|
1719
|
+
attr_accessor event_bridge_configuration: Types::EventBridgeConfiguration
|
1720
|
+
SENSITIVE: []
|
1721
|
+
end
|
1722
|
+
|
1723
|
+
class NotificationConfigurationDeprecated
|
1724
|
+
attr_accessor topic_configuration: Types::TopicConfigurationDeprecated
|
1725
|
+
attr_accessor queue_configuration: Types::QueueConfigurationDeprecated
|
1726
|
+
attr_accessor cloud_function_configuration: Types::CloudFunctionConfiguration
|
1727
|
+
SENSITIVE: []
|
1728
|
+
end
|
1729
|
+
|
1730
|
+
class NotificationConfigurationFilter
|
1731
|
+
attr_accessor key: Types::S3KeyFilter
|
1732
|
+
SENSITIVE: []
|
1733
|
+
end
|
1734
|
+
|
1735
|
+
class Object
|
1736
|
+
attr_accessor key: ::String
|
1737
|
+
attr_accessor last_modified: ::Time
|
1738
|
+
attr_accessor etag: ::String
|
1739
|
+
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
1740
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1741
|
+
attr_accessor size: ::Integer
|
1742
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1743
|
+
attr_accessor owner: Types::Owner
|
1744
|
+
attr_accessor restore_status: Types::RestoreStatus
|
1745
|
+
SENSITIVE: []
|
1746
|
+
end
|
1747
|
+
|
1748
|
+
class ObjectAlreadyInActiveTierError < Aws::EmptyStructure
|
1749
|
+
end
|
1750
|
+
|
1751
|
+
class ObjectIdentifier
|
1752
|
+
attr_accessor key: ::String
|
1753
|
+
attr_accessor version_id: ::String
|
1754
|
+
attr_accessor etag: ::String
|
1755
|
+
attr_accessor last_modified_time: ::Time
|
1756
|
+
attr_accessor size: ::Integer
|
1757
|
+
SENSITIVE: []
|
1758
|
+
end
|
1759
|
+
|
1760
|
+
class ObjectLockConfiguration
|
1761
|
+
attr_accessor object_lock_enabled: ("Enabled")
|
1762
|
+
attr_accessor rule: Types::ObjectLockRule
|
1763
|
+
SENSITIVE: []
|
1764
|
+
end
|
1765
|
+
|
1766
|
+
class ObjectLockLegalHold
|
1767
|
+
attr_accessor status: ("ON" | "OFF")
|
1768
|
+
SENSITIVE: []
|
1769
|
+
end
|
1770
|
+
|
1771
|
+
class ObjectLockRetention
|
1772
|
+
attr_accessor mode: ("GOVERNANCE" | "COMPLIANCE")
|
1773
|
+
attr_accessor retain_until_date: ::Time
|
1774
|
+
SENSITIVE: []
|
1775
|
+
end
|
1776
|
+
|
1777
|
+
class ObjectLockRule
|
1778
|
+
attr_accessor default_retention: Types::DefaultRetention
|
1779
|
+
SENSITIVE: []
|
1780
|
+
end
|
1781
|
+
|
1782
|
+
class ObjectNotInActiveTierError < Aws::EmptyStructure
|
1783
|
+
end
|
1784
|
+
|
1785
|
+
class ObjectPart
|
1786
|
+
attr_accessor part_number: ::Integer
|
1787
|
+
attr_accessor size: ::Integer
|
1788
|
+
attr_accessor checksum_crc32: ::String
|
1789
|
+
attr_accessor checksum_crc32c: ::String
|
1790
|
+
attr_accessor checksum_crc64nvme: ::String
|
1791
|
+
attr_accessor checksum_sha1: ::String
|
1792
|
+
attr_accessor checksum_sha256: ::String
|
1793
|
+
SENSITIVE: []
|
1794
|
+
end
|
1795
|
+
|
1796
|
+
class ObjectVersion
|
1797
|
+
attr_accessor etag: ::String
|
1798
|
+
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
1799
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1800
|
+
attr_accessor size: ::Integer
|
1801
|
+
attr_accessor storage_class: ("STANDARD")
|
1802
|
+
attr_accessor key: ::String
|
1803
|
+
attr_accessor version_id: ::String
|
1804
|
+
attr_accessor is_latest: bool
|
1805
|
+
attr_accessor last_modified: ::Time
|
1806
|
+
attr_accessor owner: Types::Owner
|
1807
|
+
attr_accessor restore_status: Types::RestoreStatus
|
1808
|
+
SENSITIVE: []
|
1809
|
+
end
|
1810
|
+
|
1811
|
+
class OutputLocation
|
1812
|
+
attr_accessor s3: Types::S3Location
|
1813
|
+
SENSITIVE: []
|
1814
|
+
end
|
1815
|
+
|
1816
|
+
class OutputSerialization
|
1817
|
+
attr_accessor csv: Types::CSVOutput
|
1818
|
+
attr_accessor json: Types::JSONOutput
|
1819
|
+
SENSITIVE: []
|
1820
|
+
end
|
1821
|
+
|
1822
|
+
class Owner
|
1823
|
+
attr_accessor display_name: ::String
|
1824
|
+
attr_accessor id: ::String
|
1825
|
+
SENSITIVE: []
|
1826
|
+
end
|
1827
|
+
|
1828
|
+
class OwnershipControls
|
1829
|
+
attr_accessor rules: ::Array[Types::OwnershipControlsRule]
|
1830
|
+
SENSITIVE: []
|
1831
|
+
end
|
1832
|
+
|
1833
|
+
class OwnershipControlsRule
|
1834
|
+
attr_accessor object_ownership: ("BucketOwnerPreferred" | "ObjectWriter" | "BucketOwnerEnforced")
|
1835
|
+
SENSITIVE: []
|
1836
|
+
end
|
1837
|
+
|
1838
|
+
class ParquetInput < Aws::EmptyStructure
|
1839
|
+
end
|
1840
|
+
|
1841
|
+
class Part
|
1842
|
+
attr_accessor part_number: ::Integer
|
1843
|
+
attr_accessor last_modified: ::Time
|
1844
|
+
attr_accessor etag: ::String
|
1845
|
+
attr_accessor size: ::Integer
|
1846
|
+
attr_accessor checksum_crc32: ::String
|
1847
|
+
attr_accessor checksum_crc32c: ::String
|
1848
|
+
attr_accessor checksum_crc64nvme: ::String
|
1849
|
+
attr_accessor checksum_sha1: ::String
|
1850
|
+
attr_accessor checksum_sha256: ::String
|
1851
|
+
SENSITIVE: []
|
1852
|
+
end
|
1853
|
+
|
1854
|
+
class PartitionedPrefix
|
1855
|
+
attr_accessor partition_date_source: ("EventTime" | "DeliveryTime")
|
1856
|
+
SENSITIVE: []
|
1857
|
+
end
|
1858
|
+
|
1859
|
+
class PolicyStatus
|
1860
|
+
attr_accessor is_public: bool
|
1861
|
+
SENSITIVE: []
|
1862
|
+
end
|
1863
|
+
|
1864
|
+
class Progress
|
1865
|
+
attr_accessor bytes_scanned: ::Integer
|
1866
|
+
attr_accessor bytes_processed: ::Integer
|
1867
|
+
attr_accessor bytes_returned: ::Integer
|
1868
|
+
SENSITIVE: []
|
1869
|
+
end
|
1870
|
+
|
1871
|
+
class ProgressEvent
|
1872
|
+
attr_accessor details: Types::Progress
|
1873
|
+
attr_accessor event_type: untyped
|
1874
|
+
SENSITIVE: []
|
1875
|
+
end
|
1876
|
+
|
1877
|
+
class PublicAccessBlockConfiguration
|
1878
|
+
attr_accessor block_public_acls: bool
|
1879
|
+
attr_accessor ignore_public_acls: bool
|
1880
|
+
attr_accessor block_public_policy: bool
|
1881
|
+
attr_accessor restrict_public_buckets: bool
|
1882
|
+
SENSITIVE: []
|
1883
|
+
end
|
1884
|
+
|
1885
|
+
class PutBucketAccelerateConfigurationRequest
|
1886
|
+
attr_accessor bucket: ::String
|
1887
|
+
attr_accessor accelerate_configuration: Types::AccelerateConfiguration
|
1888
|
+
attr_accessor expected_bucket_owner: ::String
|
1889
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1890
|
+
SENSITIVE: []
|
1891
|
+
end
|
1892
|
+
|
1893
|
+
class PutBucketAclRequest
|
1894
|
+
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read")
|
1895
|
+
attr_accessor access_control_policy: Types::AccessControlPolicy
|
1896
|
+
attr_accessor bucket: ::String
|
1897
|
+
attr_accessor content_md5: ::String
|
1898
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1899
|
+
attr_accessor grant_full_control: ::String
|
1900
|
+
attr_accessor grant_read: ::String
|
1901
|
+
attr_accessor grant_read_acp: ::String
|
1902
|
+
attr_accessor grant_write: ::String
|
1903
|
+
attr_accessor grant_write_acp: ::String
|
1904
|
+
attr_accessor expected_bucket_owner: ::String
|
1905
|
+
SENSITIVE: []
|
1906
|
+
end
|
1907
|
+
|
1908
|
+
class PutBucketAnalyticsConfigurationRequest
|
1909
|
+
attr_accessor bucket: ::String
|
1910
|
+
attr_accessor id: ::String
|
1911
|
+
attr_accessor analytics_configuration: Types::AnalyticsConfiguration
|
1912
|
+
attr_accessor expected_bucket_owner: ::String
|
1913
|
+
SENSITIVE: []
|
1914
|
+
end
|
1915
|
+
|
1916
|
+
class PutBucketCorsRequest
|
1917
|
+
attr_accessor bucket: ::String
|
1918
|
+
attr_accessor cors_configuration: Types::CORSConfiguration
|
1919
|
+
attr_accessor content_md5: ::String
|
1920
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1921
|
+
attr_accessor expected_bucket_owner: ::String
|
1922
|
+
SENSITIVE: []
|
1923
|
+
end
|
1924
|
+
|
1925
|
+
class PutBucketEncryptionRequest
|
1926
|
+
attr_accessor bucket: ::String
|
1927
|
+
attr_accessor content_md5: ::String
|
1928
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1929
|
+
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
1930
|
+
attr_accessor expected_bucket_owner: ::String
|
1931
|
+
SENSITIVE: []
|
1932
|
+
end
|
1933
|
+
|
1934
|
+
class PutBucketIntelligentTieringConfigurationRequest
|
1935
|
+
attr_accessor bucket: ::String
|
1936
|
+
attr_accessor id: ::String
|
1937
|
+
attr_accessor intelligent_tiering_configuration: Types::IntelligentTieringConfiguration
|
1938
|
+
SENSITIVE: []
|
1939
|
+
end
|
1940
|
+
|
1941
|
+
class PutBucketInventoryConfigurationRequest
|
1942
|
+
attr_accessor bucket: ::String
|
1943
|
+
attr_accessor id: ::String
|
1944
|
+
attr_accessor inventory_configuration: Types::InventoryConfiguration
|
1945
|
+
attr_accessor expected_bucket_owner: ::String
|
1946
|
+
SENSITIVE: []
|
1947
|
+
end
|
1948
|
+
|
1949
|
+
class PutBucketLifecycleConfigurationOutput
|
1950
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
1951
|
+
SENSITIVE: []
|
1952
|
+
end
|
1953
|
+
|
1954
|
+
class PutBucketLifecycleConfigurationRequest
|
1955
|
+
attr_accessor bucket: ::String
|
1956
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1957
|
+
attr_accessor lifecycle_configuration: Types::BucketLifecycleConfiguration
|
1958
|
+
attr_accessor expected_bucket_owner: ::String
|
1959
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
1960
|
+
SENSITIVE: []
|
1961
|
+
end
|
1962
|
+
|
1963
|
+
class PutBucketLifecycleRequest
|
1964
|
+
attr_accessor bucket: ::String
|
1965
|
+
attr_accessor content_md5: ::String
|
1966
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1967
|
+
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
1968
|
+
attr_accessor expected_bucket_owner: ::String
|
1969
|
+
SENSITIVE: []
|
1970
|
+
end
|
1971
|
+
|
1972
|
+
class PutBucketLoggingRequest
|
1973
|
+
attr_accessor bucket: ::String
|
1974
|
+
attr_accessor bucket_logging_status: Types::BucketLoggingStatus
|
1975
|
+
attr_accessor content_md5: ::String
|
1976
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1977
|
+
attr_accessor expected_bucket_owner: ::String
|
1978
|
+
SENSITIVE: []
|
1979
|
+
end
|
1980
|
+
|
1981
|
+
class PutBucketMetricsConfigurationRequest
|
1982
|
+
attr_accessor bucket: ::String
|
1983
|
+
attr_accessor id: ::String
|
1984
|
+
attr_accessor metrics_configuration: Types::MetricsConfiguration
|
1985
|
+
attr_accessor expected_bucket_owner: ::String
|
1986
|
+
SENSITIVE: []
|
1987
|
+
end
|
1988
|
+
|
1989
|
+
class PutBucketNotificationConfigurationRequest
|
1990
|
+
attr_accessor bucket: ::String
|
1991
|
+
attr_accessor notification_configuration: Types::NotificationConfiguration
|
1992
|
+
attr_accessor expected_bucket_owner: ::String
|
1993
|
+
attr_accessor skip_destination_validation: bool
|
1994
|
+
SENSITIVE: []
|
1995
|
+
end
|
1996
|
+
|
1997
|
+
class PutBucketNotificationRequest
|
1998
|
+
attr_accessor bucket: ::String
|
1999
|
+
attr_accessor content_md5: ::String
|
2000
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2001
|
+
attr_accessor notification_configuration: Types::NotificationConfigurationDeprecated
|
2002
|
+
attr_accessor expected_bucket_owner: ::String
|
2003
|
+
SENSITIVE: []
|
2004
|
+
end
|
2005
|
+
|
2006
|
+
class PutBucketOwnershipControlsRequest
|
2007
|
+
attr_accessor bucket: ::String
|
2008
|
+
attr_accessor content_md5: ::String
|
2009
|
+
attr_accessor expected_bucket_owner: ::String
|
2010
|
+
attr_accessor ownership_controls: Types::OwnershipControls
|
2011
|
+
SENSITIVE: []
|
2012
|
+
end
|
2013
|
+
|
2014
|
+
class PutBucketPolicyRequest
|
2015
|
+
attr_accessor bucket: ::String
|
2016
|
+
attr_accessor content_md5: ::String
|
2017
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2018
|
+
attr_accessor confirm_remove_self_bucket_access: bool
|
2019
|
+
attr_accessor policy: ::IO
|
2020
|
+
attr_accessor expected_bucket_owner: ::String
|
2021
|
+
SENSITIVE: []
|
2022
|
+
end
|
2023
|
+
|
2024
|
+
class PutBucketReplicationRequest
|
2025
|
+
attr_accessor bucket: ::String
|
2026
|
+
attr_accessor content_md5: ::String
|
2027
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2028
|
+
attr_accessor replication_configuration: Types::ReplicationConfiguration
|
2029
|
+
attr_accessor token: ::String
|
2030
|
+
attr_accessor expected_bucket_owner: ::String
|
2031
|
+
SENSITIVE: []
|
2032
|
+
end
|
2033
|
+
|
2034
|
+
class PutBucketRequestPaymentRequest
|
2035
|
+
attr_accessor bucket: ::String
|
2036
|
+
attr_accessor content_md5: ::String
|
2037
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2038
|
+
attr_accessor request_payment_configuration: Types::RequestPaymentConfiguration
|
2039
|
+
attr_accessor expected_bucket_owner: ::String
|
2040
|
+
SENSITIVE: []
|
2041
|
+
end
|
2042
|
+
|
2043
|
+
class PutBucketTaggingRequest
|
2044
|
+
attr_accessor bucket: ::String
|
2045
|
+
attr_accessor content_md5: ::String
|
2046
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2047
|
+
attr_accessor tagging: Types::Tagging
|
2048
|
+
attr_accessor expected_bucket_owner: ::String
|
2049
|
+
SENSITIVE: []
|
2050
|
+
end
|
2051
|
+
|
2052
|
+
class PutBucketVersioningRequest
|
2053
|
+
attr_accessor bucket: ::String
|
2054
|
+
attr_accessor content_md5: ::String
|
2055
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2056
|
+
attr_accessor mfa: ::String
|
2057
|
+
attr_accessor versioning_configuration: Types::VersioningConfiguration
|
2058
|
+
attr_accessor expected_bucket_owner: ::String
|
2059
|
+
SENSITIVE: []
|
2060
|
+
end
|
2061
|
+
|
2062
|
+
class PutBucketWebsiteRequest
|
2063
|
+
attr_accessor bucket: ::String
|
2064
|
+
attr_accessor content_md5: ::String
|
2065
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2066
|
+
attr_accessor website_configuration: Types::WebsiteConfiguration
|
2067
|
+
attr_accessor expected_bucket_owner: ::String
|
2068
|
+
SENSITIVE: []
|
2069
|
+
end
|
2070
|
+
|
2071
|
+
class PutObjectAclOutput
|
2072
|
+
attr_accessor request_charged: ("requester")
|
2073
|
+
SENSITIVE: []
|
2074
|
+
end
|
2075
|
+
|
2076
|
+
class PutObjectAclRequest
|
2077
|
+
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
2078
|
+
attr_accessor access_control_policy: Types::AccessControlPolicy
|
2079
|
+
attr_accessor bucket: ::String
|
2080
|
+
attr_accessor content_md5: ::String
|
2081
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2082
|
+
attr_accessor grant_full_control: ::String
|
2083
|
+
attr_accessor grant_read: ::String
|
2084
|
+
attr_accessor grant_read_acp: ::String
|
2085
|
+
attr_accessor grant_write: ::String
|
2086
|
+
attr_accessor grant_write_acp: ::String
|
2087
|
+
attr_accessor key: ::String
|
2088
|
+
attr_accessor request_payer: ("requester")
|
2089
|
+
attr_accessor version_id: ::String
|
2090
|
+
attr_accessor expected_bucket_owner: ::String
|
2091
|
+
SENSITIVE: []
|
2092
|
+
end
|
2093
|
+
|
2094
|
+
class PutObjectLegalHoldOutput
|
2095
|
+
attr_accessor request_charged: ("requester")
|
2096
|
+
SENSITIVE: []
|
2097
|
+
end
|
2098
|
+
|
2099
|
+
class PutObjectLegalHoldRequest
|
2100
|
+
attr_accessor bucket: ::String
|
2101
|
+
attr_accessor key: ::String
|
2102
|
+
attr_accessor legal_hold: Types::ObjectLockLegalHold
|
2103
|
+
attr_accessor request_payer: ("requester")
|
2104
|
+
attr_accessor version_id: ::String
|
2105
|
+
attr_accessor content_md5: ::String
|
2106
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2107
|
+
attr_accessor expected_bucket_owner: ::String
|
2108
|
+
SENSITIVE: []
|
2109
|
+
end
|
2110
|
+
|
2111
|
+
class PutObjectLockConfigurationOutput
|
2112
|
+
attr_accessor request_charged: ("requester")
|
2113
|
+
SENSITIVE: []
|
2114
|
+
end
|
2115
|
+
|
2116
|
+
class PutObjectLockConfigurationRequest
|
2117
|
+
attr_accessor bucket: ::String
|
2118
|
+
attr_accessor object_lock_configuration: Types::ObjectLockConfiguration
|
2119
|
+
attr_accessor request_payer: ("requester")
|
2120
|
+
attr_accessor token: ::String
|
2121
|
+
attr_accessor content_md5: ::String
|
2122
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2123
|
+
attr_accessor expected_bucket_owner: ::String
|
2124
|
+
SENSITIVE: []
|
2125
|
+
end
|
2126
|
+
|
2127
|
+
class PutObjectOutput
|
2128
|
+
attr_accessor expiration: ::String
|
2129
|
+
attr_accessor etag: ::String
|
2130
|
+
attr_accessor checksum_crc32: ::String
|
2131
|
+
attr_accessor checksum_crc32c: ::String
|
2132
|
+
attr_accessor checksum_crc64nvme: ::String
|
2133
|
+
attr_accessor checksum_sha1: ::String
|
2134
|
+
attr_accessor checksum_sha256: ::String
|
2135
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
2136
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2137
|
+
attr_accessor version_id: ::String
|
2138
|
+
attr_accessor sse_customer_algorithm: ::String
|
2139
|
+
attr_accessor sse_customer_key_md5: ::String
|
2140
|
+
attr_accessor ssekms_key_id: ::String
|
2141
|
+
attr_accessor ssekms_encryption_context: ::String
|
2142
|
+
attr_accessor bucket_key_enabled: bool
|
2143
|
+
attr_accessor size: ::Integer
|
2144
|
+
attr_accessor request_charged: ("requester")
|
2145
|
+
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
2146
|
+
end
|
2147
|
+
|
2148
|
+
class PutObjectRequest
|
2149
|
+
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
2150
|
+
attr_accessor body: ::IO
|
2151
|
+
attr_accessor bucket: ::String
|
2152
|
+
attr_accessor cache_control: ::String
|
2153
|
+
attr_accessor content_disposition: ::String
|
2154
|
+
attr_accessor content_encoding: ::String
|
2155
|
+
attr_accessor content_language: ::String
|
2156
|
+
attr_accessor content_length: ::Integer
|
2157
|
+
attr_accessor content_md5: ::String
|
2158
|
+
attr_accessor content_type: ::String
|
2159
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2160
|
+
attr_accessor checksum_crc32: ::String
|
2161
|
+
attr_accessor checksum_crc32c: ::String
|
2162
|
+
attr_accessor checksum_crc64nvme: ::String
|
2163
|
+
attr_accessor checksum_sha1: ::String
|
2164
|
+
attr_accessor checksum_sha256: ::String
|
2165
|
+
attr_accessor expires: ::Time
|
2166
|
+
attr_accessor if_match: ::String
|
2167
|
+
attr_accessor if_none_match: ::String
|
2168
|
+
attr_accessor grant_full_control: ::String
|
2169
|
+
attr_accessor grant_read: ::String
|
2170
|
+
attr_accessor grant_read_acp: ::String
|
2171
|
+
attr_accessor grant_write_acp: ::String
|
2172
|
+
attr_accessor key: ::String
|
2173
|
+
attr_accessor write_offset_bytes: ::Integer
|
2174
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
2175
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2176
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
2177
|
+
attr_accessor website_redirect_location: ::String
|
2178
|
+
attr_accessor sse_customer_algorithm: ::String
|
2179
|
+
attr_accessor sse_customer_key: ::String
|
2180
|
+
attr_accessor sse_customer_key_md5: ::String
|
2181
|
+
attr_accessor ssekms_key_id: ::String
|
2182
|
+
attr_accessor ssekms_encryption_context: ::String
|
2183
|
+
attr_accessor bucket_key_enabled: bool
|
2184
|
+
attr_accessor request_payer: ("requester")
|
2185
|
+
attr_accessor tagging: ::String
|
2186
|
+
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
2187
|
+
attr_accessor object_lock_retain_until_date: ::Time
|
2188
|
+
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
2189
|
+
attr_accessor expected_bucket_owner: ::String
|
2190
|
+
SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
|
2191
|
+
end
|
2192
|
+
|
2193
|
+
class PutObjectRetentionOutput
|
2194
|
+
attr_accessor request_charged: ("requester")
|
2195
|
+
SENSITIVE: []
|
2196
|
+
end
|
2197
|
+
|
2198
|
+
class PutObjectRetentionRequest
|
2199
|
+
attr_accessor bucket: ::String
|
2200
|
+
attr_accessor key: ::String
|
2201
|
+
attr_accessor retention: Types::ObjectLockRetention
|
2202
|
+
attr_accessor request_payer: ("requester")
|
2203
|
+
attr_accessor version_id: ::String
|
2204
|
+
attr_accessor bypass_governance_retention: bool
|
2205
|
+
attr_accessor content_md5: ::String
|
2206
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2207
|
+
attr_accessor expected_bucket_owner: ::String
|
2208
|
+
SENSITIVE: []
|
2209
|
+
end
|
2210
|
+
|
2211
|
+
class PutObjectTaggingOutput
|
2212
|
+
attr_accessor version_id: ::String
|
2213
|
+
SENSITIVE: []
|
2214
|
+
end
|
2215
|
+
|
2216
|
+
class PutObjectTaggingRequest
|
2217
|
+
attr_accessor bucket: ::String
|
2218
|
+
attr_accessor key: ::String
|
2219
|
+
attr_accessor version_id: ::String
|
2220
|
+
attr_accessor content_md5: ::String
|
2221
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2222
|
+
attr_accessor tagging: Types::Tagging
|
2223
|
+
attr_accessor expected_bucket_owner: ::String
|
2224
|
+
attr_accessor request_payer: ("requester")
|
2225
|
+
SENSITIVE: []
|
2226
|
+
end
|
2227
|
+
|
2228
|
+
class PutPublicAccessBlockRequest
|
2229
|
+
attr_accessor bucket: ::String
|
2230
|
+
attr_accessor content_md5: ::String
|
2231
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2232
|
+
attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
|
2233
|
+
attr_accessor expected_bucket_owner: ::String
|
2234
|
+
SENSITIVE: []
|
2235
|
+
end
|
2236
|
+
|
2237
|
+
class QueueConfiguration
|
2238
|
+
attr_accessor id: ::String
|
2239
|
+
attr_accessor queue_arn: ::String
|
2240
|
+
attr_accessor events: ::Array[("s3:ReducedRedundancyLostObject" | "s3:ObjectCreated:*" | "s3:ObjectCreated:Put" | "s3:ObjectCreated:Post" | "s3:ObjectCreated:Copy" | "s3:ObjectCreated:CompleteMultipartUpload" | "s3:ObjectRemoved:*" | "s3:ObjectRemoved:Delete" | "s3:ObjectRemoved:DeleteMarkerCreated" | "s3:ObjectRestore:*" | "s3:ObjectRestore:Post" | "s3:ObjectRestore:Completed" | "s3:Replication:*" | "s3:Replication:OperationFailedReplication" | "s3:Replication:OperationNotTracked" | "s3:Replication:OperationMissedThreshold" | "s3:Replication:OperationReplicatedAfterThreshold" | "s3:ObjectRestore:Delete" | "s3:LifecycleTransition" | "s3:IntelligentTiering" | "s3:ObjectAcl:Put" | "s3:LifecycleExpiration:*" | "s3:LifecycleExpiration:Delete" | "s3:LifecycleExpiration:DeleteMarkerCreated" | "s3:ObjectTagging:*" | "s3:ObjectTagging:Put" | "s3:ObjectTagging:Delete")]
|
2241
|
+
attr_accessor filter: Types::NotificationConfigurationFilter
|
2242
|
+
SENSITIVE: []
|
2243
|
+
end
|
2244
|
+
|
2245
|
+
class QueueConfigurationDeprecated
|
2246
|
+
attr_accessor id: ::String
|
2247
|
+
attr_accessor event: ("s3:ReducedRedundancyLostObject" | "s3:ObjectCreated:*" | "s3:ObjectCreated:Put" | "s3:ObjectCreated:Post" | "s3:ObjectCreated:Copy" | "s3:ObjectCreated:CompleteMultipartUpload" | "s3:ObjectRemoved:*" | "s3:ObjectRemoved:Delete" | "s3:ObjectRemoved:DeleteMarkerCreated" | "s3:ObjectRestore:*" | "s3:ObjectRestore:Post" | "s3:ObjectRestore:Completed" | "s3:Replication:*" | "s3:Replication:OperationFailedReplication" | "s3:Replication:OperationNotTracked" | "s3:Replication:OperationMissedThreshold" | "s3:Replication:OperationReplicatedAfterThreshold" | "s3:ObjectRestore:Delete" | "s3:LifecycleTransition" | "s3:IntelligentTiering" | "s3:ObjectAcl:Put" | "s3:LifecycleExpiration:*" | "s3:LifecycleExpiration:Delete" | "s3:LifecycleExpiration:DeleteMarkerCreated" | "s3:ObjectTagging:*" | "s3:ObjectTagging:Put" | "s3:ObjectTagging:Delete")
|
2248
|
+
attr_accessor events: ::Array[("s3:ReducedRedundancyLostObject" | "s3:ObjectCreated:*" | "s3:ObjectCreated:Put" | "s3:ObjectCreated:Post" | "s3:ObjectCreated:Copy" | "s3:ObjectCreated:CompleteMultipartUpload" | "s3:ObjectRemoved:*" | "s3:ObjectRemoved:Delete" | "s3:ObjectRemoved:DeleteMarkerCreated" | "s3:ObjectRestore:*" | "s3:ObjectRestore:Post" | "s3:ObjectRestore:Completed" | "s3:Replication:*" | "s3:Replication:OperationFailedReplication" | "s3:Replication:OperationNotTracked" | "s3:Replication:OperationMissedThreshold" | "s3:Replication:OperationReplicatedAfterThreshold" | "s3:ObjectRestore:Delete" | "s3:LifecycleTransition" | "s3:IntelligentTiering" | "s3:ObjectAcl:Put" | "s3:LifecycleExpiration:*" | "s3:LifecycleExpiration:Delete" | "s3:LifecycleExpiration:DeleteMarkerCreated" | "s3:ObjectTagging:*" | "s3:ObjectTagging:Put" | "s3:ObjectTagging:Delete")]
|
2249
|
+
attr_accessor queue: ::String
|
2250
|
+
SENSITIVE: []
|
2251
|
+
end
|
2252
|
+
|
2253
|
+
class RecordsEvent
|
2254
|
+
attr_accessor payload: ::IO
|
2255
|
+
attr_accessor event_type: untyped
|
2256
|
+
SENSITIVE: []
|
2257
|
+
end
|
2258
|
+
|
2259
|
+
class Redirect
|
2260
|
+
attr_accessor host_name: ::String
|
2261
|
+
attr_accessor http_redirect_code: ::String
|
2262
|
+
attr_accessor protocol: ("http" | "https")
|
2263
|
+
attr_accessor replace_key_prefix_with: ::String
|
2264
|
+
attr_accessor replace_key_with: ::String
|
2265
|
+
SENSITIVE: []
|
2266
|
+
end
|
2267
|
+
|
2268
|
+
class RedirectAllRequestsTo
|
2269
|
+
attr_accessor host_name: ::String
|
2270
|
+
attr_accessor protocol: ("http" | "https")
|
2271
|
+
SENSITIVE: []
|
2272
|
+
end
|
2273
|
+
|
2274
|
+
class ReplicaModifications
|
2275
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
2276
|
+
SENSITIVE: []
|
2277
|
+
end
|
2278
|
+
|
2279
|
+
class ReplicationConfiguration
|
2280
|
+
attr_accessor role: ::String
|
2281
|
+
attr_accessor rules: ::Array[Types::ReplicationRule]
|
2282
|
+
SENSITIVE: []
|
2283
|
+
end
|
2284
|
+
|
2285
|
+
class ReplicationRule
|
2286
|
+
attr_accessor id: ::String
|
2287
|
+
attr_accessor priority: ::Integer
|
2288
|
+
attr_accessor prefix: ::String
|
2289
|
+
attr_accessor filter: Types::ReplicationRuleFilter
|
2290
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
2291
|
+
attr_accessor source_selection_criteria: Types::SourceSelectionCriteria
|
2292
|
+
attr_accessor existing_object_replication: Types::ExistingObjectReplication
|
2293
|
+
attr_accessor destination: Types::Destination
|
2294
|
+
attr_accessor delete_marker_replication: Types::DeleteMarkerReplication
|
2295
|
+
SENSITIVE: []
|
2296
|
+
end
|
2297
|
+
|
2298
|
+
class ReplicationRuleAndOperator
|
2299
|
+
attr_accessor prefix: ::String
|
2300
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2301
|
+
SENSITIVE: []
|
2302
|
+
end
|
2303
|
+
|
2304
|
+
class ReplicationRuleFilter
|
2305
|
+
attr_accessor prefix: ::String
|
2306
|
+
attr_accessor tag: Types::Tag
|
2307
|
+
attr_accessor and: Types::ReplicationRuleAndOperator
|
2308
|
+
SENSITIVE: []
|
2309
|
+
end
|
2310
|
+
|
2311
|
+
class ReplicationTime
|
2312
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
2313
|
+
attr_accessor time: Types::ReplicationTimeValue
|
2314
|
+
SENSITIVE: []
|
2315
|
+
end
|
2316
|
+
|
2317
|
+
class ReplicationTimeValue
|
2318
|
+
attr_accessor minutes: ::Integer
|
2319
|
+
SENSITIVE: []
|
2320
|
+
end
|
2321
|
+
|
2322
|
+
class RequestPaymentConfiguration
|
2323
|
+
attr_accessor payer: ("Requester" | "BucketOwner")
|
2324
|
+
SENSITIVE: []
|
2325
|
+
end
|
2326
|
+
|
2327
|
+
class RequestProgress
|
2328
|
+
attr_accessor enabled: bool
|
2329
|
+
SENSITIVE: []
|
2330
|
+
end
|
2331
|
+
|
2332
|
+
class RestoreObjectOutput
|
2333
|
+
attr_accessor request_charged: ("requester")
|
2334
|
+
attr_accessor restore_output_path: ::String
|
2335
|
+
SENSITIVE: []
|
2336
|
+
end
|
2337
|
+
|
2338
|
+
class RestoreObjectRequest
|
2339
|
+
attr_accessor bucket: ::String
|
2340
|
+
attr_accessor key: ::String
|
2341
|
+
attr_accessor version_id: ::String
|
2342
|
+
attr_accessor restore_request: Types::RestoreRequest
|
2343
|
+
attr_accessor request_payer: ("requester")
|
2344
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2345
|
+
attr_accessor expected_bucket_owner: ::String
|
2346
|
+
SENSITIVE: []
|
2347
|
+
end
|
2348
|
+
|
2349
|
+
class RestoreRequest
|
2350
|
+
attr_accessor days: ::Integer
|
2351
|
+
attr_accessor glacier_job_parameters: Types::GlacierJobParameters
|
2352
|
+
attr_accessor type: ("SELECT")
|
2353
|
+
attr_accessor tier: ("Standard" | "Bulk" | "Expedited")
|
2354
|
+
attr_accessor description: ::String
|
2355
|
+
attr_accessor select_parameters: Types::SelectParameters
|
2356
|
+
attr_accessor output_location: Types::OutputLocation
|
2357
|
+
SENSITIVE: []
|
2358
|
+
end
|
2359
|
+
|
2360
|
+
class RestoreStatus
|
2361
|
+
attr_accessor is_restore_in_progress: bool
|
2362
|
+
attr_accessor restore_expiry_date: ::Time
|
2363
|
+
SENSITIVE: []
|
2364
|
+
end
|
2365
|
+
|
2366
|
+
class RoutingRule
|
2367
|
+
attr_accessor condition: Types::Condition
|
2368
|
+
attr_accessor redirect: Types::Redirect
|
2369
|
+
SENSITIVE: []
|
2370
|
+
end
|
2371
|
+
|
2372
|
+
class Rule
|
2373
|
+
attr_accessor expiration: Types::LifecycleExpiration
|
2374
|
+
attr_accessor id: ::String
|
2375
|
+
attr_accessor prefix: ::String
|
2376
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
2377
|
+
attr_accessor transition: Types::Transition
|
2378
|
+
attr_accessor noncurrent_version_transition: Types::NoncurrentVersionTransition
|
2379
|
+
attr_accessor noncurrent_version_expiration: Types::NoncurrentVersionExpiration
|
2380
|
+
attr_accessor abort_incomplete_multipart_upload: Types::AbortIncompleteMultipartUpload
|
2381
|
+
SENSITIVE: []
|
2382
|
+
end
|
2383
|
+
|
2384
|
+
class S3KeyFilter
|
2385
|
+
attr_accessor filter_rules: ::Array[Types::FilterRule]
|
2386
|
+
SENSITIVE: []
|
2387
|
+
end
|
2388
|
+
|
2389
|
+
class S3Location
|
2390
|
+
attr_accessor bucket_name: ::String
|
2391
|
+
attr_accessor prefix: ::String
|
2392
|
+
attr_accessor encryption: Types::Encryption
|
2393
|
+
attr_accessor canned_acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
2394
|
+
attr_accessor access_control_list: ::Array[Types::Grant]
|
2395
|
+
attr_accessor tagging: Types::Tagging
|
2396
|
+
attr_accessor user_metadata: ::Array[Types::MetadataEntry]
|
2397
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
2398
|
+
SENSITIVE: []
|
2399
|
+
end
|
2400
|
+
|
2401
|
+
class S3TablesDestination
|
2402
|
+
attr_accessor table_bucket_arn: ::String
|
2403
|
+
attr_accessor table_name: ::String
|
2404
|
+
SENSITIVE: []
|
2405
|
+
end
|
2406
|
+
|
2407
|
+
class S3TablesDestinationResult
|
2408
|
+
attr_accessor table_bucket_arn: ::String
|
2409
|
+
attr_accessor table_name: ::String
|
2410
|
+
attr_accessor table_arn: ::String
|
2411
|
+
attr_accessor table_namespace: ::String
|
2412
|
+
SENSITIVE: []
|
2413
|
+
end
|
2414
|
+
|
2415
|
+
class SSEKMS
|
2416
|
+
attr_accessor key_id: ::String
|
2417
|
+
SENSITIVE: [:key_id]
|
2418
|
+
end
|
2419
|
+
|
2420
|
+
class SSES3 < Aws::EmptyStructure
|
2421
|
+
end
|
2422
|
+
|
2423
|
+
class ScanRange
|
2424
|
+
attr_accessor start: ::Integer
|
2425
|
+
attr_accessor end: ::Integer
|
2426
|
+
SENSITIVE: []
|
2427
|
+
end
|
2428
|
+
|
2429
|
+
class SelectObjectContentOutput
|
2430
|
+
attr_accessor payload: Types::SelectObjectContentEventStream
|
2431
|
+
SENSITIVE: []
|
2432
|
+
end
|
2433
|
+
|
2434
|
+
class SelectObjectContentRequest
|
2435
|
+
attr_accessor bucket: ::String
|
2436
|
+
attr_accessor key: ::String
|
2437
|
+
attr_accessor sse_customer_algorithm: ::String
|
2438
|
+
attr_accessor sse_customer_key: ::String
|
2439
|
+
attr_accessor sse_customer_key_md5: ::String
|
2440
|
+
attr_accessor expression: ::String
|
2441
|
+
attr_accessor expression_type: ("SQL")
|
2442
|
+
attr_accessor request_progress: Types::RequestProgress
|
2443
|
+
attr_accessor input_serialization: Types::InputSerialization
|
2444
|
+
attr_accessor output_serialization: Types::OutputSerialization
|
2445
|
+
attr_accessor scan_range: Types::ScanRange
|
2446
|
+
attr_accessor expected_bucket_owner: ::String
|
2447
|
+
SENSITIVE: [:sse_customer_key]
|
2448
|
+
end
|
2449
|
+
|
2450
|
+
class SelectParameters
|
2451
|
+
attr_accessor input_serialization: Types::InputSerialization
|
2452
|
+
attr_accessor expression_type: ("SQL")
|
2453
|
+
attr_accessor expression: ::String
|
2454
|
+
attr_accessor output_serialization: Types::OutputSerialization
|
2455
|
+
SENSITIVE: []
|
2456
|
+
end
|
2457
|
+
|
2458
|
+
class ServerSideEncryptionByDefault
|
2459
|
+
attr_accessor sse_algorithm: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2460
|
+
attr_accessor kms_master_key_id: ::String
|
2461
|
+
SENSITIVE: [:kms_master_key_id]
|
2462
|
+
end
|
2463
|
+
|
2464
|
+
class ServerSideEncryptionConfiguration
|
2465
|
+
attr_accessor rules: ::Array[Types::ServerSideEncryptionRule]
|
2466
|
+
SENSITIVE: []
|
2467
|
+
end
|
2468
|
+
|
2469
|
+
class ServerSideEncryptionRule
|
2470
|
+
attr_accessor apply_server_side_encryption_by_default: Types::ServerSideEncryptionByDefault
|
2471
|
+
attr_accessor bucket_key_enabled: bool
|
2472
|
+
SENSITIVE: []
|
2473
|
+
end
|
2474
|
+
|
2475
|
+
class SessionCredentials
|
2476
|
+
attr_accessor access_key_id: ::String
|
2477
|
+
attr_accessor secret_access_key: ::String
|
2478
|
+
attr_accessor session_token: ::String
|
2479
|
+
attr_accessor expiration: ::Time
|
2480
|
+
SENSITIVE: [:secret_access_key, :session_token]
|
2481
|
+
end
|
2482
|
+
|
2483
|
+
class SimplePrefix < Aws::EmptyStructure
|
2484
|
+
end
|
2485
|
+
|
2486
|
+
class SourceSelectionCriteria
|
2487
|
+
attr_accessor sse_kms_encrypted_objects: Types::SseKmsEncryptedObjects
|
2488
|
+
attr_accessor replica_modifications: Types::ReplicaModifications
|
2489
|
+
SENSITIVE: []
|
2490
|
+
end
|
2491
|
+
|
2492
|
+
class SseKmsEncryptedObjects
|
2493
|
+
attr_accessor status: ("Enabled" | "Disabled")
|
2494
|
+
SENSITIVE: []
|
2495
|
+
end
|
2496
|
+
|
2497
|
+
class Stats
|
2498
|
+
attr_accessor bytes_scanned: ::Integer
|
2499
|
+
attr_accessor bytes_processed: ::Integer
|
2500
|
+
attr_accessor bytes_returned: ::Integer
|
2501
|
+
SENSITIVE: []
|
2502
|
+
end
|
2503
|
+
|
2504
|
+
class StatsEvent
|
2505
|
+
attr_accessor details: Types::Stats
|
2506
|
+
attr_accessor event_type: untyped
|
2507
|
+
SENSITIVE: []
|
2508
|
+
end
|
2509
|
+
|
2510
|
+
class StorageClassAnalysis
|
2511
|
+
attr_accessor data_export: Types::StorageClassAnalysisDataExport
|
2512
|
+
SENSITIVE: []
|
2513
|
+
end
|
2514
|
+
|
2515
|
+
class StorageClassAnalysisDataExport
|
2516
|
+
attr_accessor output_schema_version: ("V_1")
|
2517
|
+
attr_accessor destination: Types::AnalyticsExportDestination
|
2518
|
+
SENSITIVE: []
|
2519
|
+
end
|
2520
|
+
|
2521
|
+
class Tag
|
2522
|
+
attr_accessor key: ::String
|
2523
|
+
attr_accessor value: ::String
|
2524
|
+
SENSITIVE: []
|
2525
|
+
end
|
2526
|
+
|
2527
|
+
class Tagging
|
2528
|
+
attr_accessor tag_set: ::Array[Types::Tag]
|
2529
|
+
SENSITIVE: []
|
2530
|
+
end
|
2531
|
+
|
2532
|
+
class TargetGrant
|
2533
|
+
attr_accessor grantee: Types::Grantee
|
2534
|
+
attr_accessor permission: ("FULL_CONTROL" | "READ" | "WRITE")
|
2535
|
+
SENSITIVE: []
|
2536
|
+
end
|
2537
|
+
|
2538
|
+
class TargetObjectKeyFormat
|
2539
|
+
attr_accessor simple_prefix: Types::SimplePrefix
|
2540
|
+
attr_accessor partitioned_prefix: Types::PartitionedPrefix
|
2541
|
+
SENSITIVE: []
|
2542
|
+
end
|
2543
|
+
|
2544
|
+
class Tiering
|
2545
|
+
attr_accessor days: ::Integer
|
2546
|
+
attr_accessor access_tier: ("ARCHIVE_ACCESS" | "DEEP_ARCHIVE_ACCESS")
|
2547
|
+
SENSITIVE: []
|
2548
|
+
end
|
2549
|
+
|
2550
|
+
class TooManyParts < Aws::EmptyStructure
|
2551
|
+
end
|
2552
|
+
|
2553
|
+
class TopicConfiguration
|
2554
|
+
attr_accessor id: ::String
|
2555
|
+
attr_accessor topic_arn: ::String
|
2556
|
+
attr_accessor events: ::Array[("s3:ReducedRedundancyLostObject" | "s3:ObjectCreated:*" | "s3:ObjectCreated:Put" | "s3:ObjectCreated:Post" | "s3:ObjectCreated:Copy" | "s3:ObjectCreated:CompleteMultipartUpload" | "s3:ObjectRemoved:*" | "s3:ObjectRemoved:Delete" | "s3:ObjectRemoved:DeleteMarkerCreated" | "s3:ObjectRestore:*" | "s3:ObjectRestore:Post" | "s3:ObjectRestore:Completed" | "s3:Replication:*" | "s3:Replication:OperationFailedReplication" | "s3:Replication:OperationNotTracked" | "s3:Replication:OperationMissedThreshold" | "s3:Replication:OperationReplicatedAfterThreshold" | "s3:ObjectRestore:Delete" | "s3:LifecycleTransition" | "s3:IntelligentTiering" | "s3:ObjectAcl:Put" | "s3:LifecycleExpiration:*" | "s3:LifecycleExpiration:Delete" | "s3:LifecycleExpiration:DeleteMarkerCreated" | "s3:ObjectTagging:*" | "s3:ObjectTagging:Put" | "s3:ObjectTagging:Delete")]
|
2557
|
+
attr_accessor filter: Types::NotificationConfigurationFilter
|
2558
|
+
SENSITIVE: []
|
2559
|
+
end
|
2560
|
+
|
2561
|
+
class TopicConfigurationDeprecated
|
2562
|
+
attr_accessor id: ::String
|
2563
|
+
attr_accessor events: ::Array[("s3:ReducedRedundancyLostObject" | "s3:ObjectCreated:*" | "s3:ObjectCreated:Put" | "s3:ObjectCreated:Post" | "s3:ObjectCreated:Copy" | "s3:ObjectCreated:CompleteMultipartUpload" | "s3:ObjectRemoved:*" | "s3:ObjectRemoved:Delete" | "s3:ObjectRemoved:DeleteMarkerCreated" | "s3:ObjectRestore:*" | "s3:ObjectRestore:Post" | "s3:ObjectRestore:Completed" | "s3:Replication:*" | "s3:Replication:OperationFailedReplication" | "s3:Replication:OperationNotTracked" | "s3:Replication:OperationMissedThreshold" | "s3:Replication:OperationReplicatedAfterThreshold" | "s3:ObjectRestore:Delete" | "s3:LifecycleTransition" | "s3:IntelligentTiering" | "s3:ObjectAcl:Put" | "s3:LifecycleExpiration:*" | "s3:LifecycleExpiration:Delete" | "s3:LifecycleExpiration:DeleteMarkerCreated" | "s3:ObjectTagging:*" | "s3:ObjectTagging:Put" | "s3:ObjectTagging:Delete")]
|
2564
|
+
attr_accessor event: ("s3:ReducedRedundancyLostObject" | "s3:ObjectCreated:*" | "s3:ObjectCreated:Put" | "s3:ObjectCreated:Post" | "s3:ObjectCreated:Copy" | "s3:ObjectCreated:CompleteMultipartUpload" | "s3:ObjectRemoved:*" | "s3:ObjectRemoved:Delete" | "s3:ObjectRemoved:DeleteMarkerCreated" | "s3:ObjectRestore:*" | "s3:ObjectRestore:Post" | "s3:ObjectRestore:Completed" | "s3:Replication:*" | "s3:Replication:OperationFailedReplication" | "s3:Replication:OperationNotTracked" | "s3:Replication:OperationMissedThreshold" | "s3:Replication:OperationReplicatedAfterThreshold" | "s3:ObjectRestore:Delete" | "s3:LifecycleTransition" | "s3:IntelligentTiering" | "s3:ObjectAcl:Put" | "s3:LifecycleExpiration:*" | "s3:LifecycleExpiration:Delete" | "s3:LifecycleExpiration:DeleteMarkerCreated" | "s3:ObjectTagging:*" | "s3:ObjectTagging:Put" | "s3:ObjectTagging:Delete")
|
2565
|
+
attr_accessor topic: ::String
|
2566
|
+
SENSITIVE: []
|
2567
|
+
end
|
2568
|
+
|
2569
|
+
class Transition
|
2570
|
+
attr_accessor date: ::Time
|
2571
|
+
attr_accessor days: ::Integer
|
2572
|
+
attr_accessor storage_class: ("GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "GLACIER_IR")
|
2573
|
+
SENSITIVE: []
|
2574
|
+
end
|
2575
|
+
|
2576
|
+
class UploadPartCopyOutput
|
2577
|
+
attr_accessor copy_source_version_id: ::String
|
2578
|
+
attr_accessor copy_part_result: Types::CopyPartResult
|
2579
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2580
|
+
attr_accessor sse_customer_algorithm: ::String
|
2581
|
+
attr_accessor sse_customer_key_md5: ::String
|
2582
|
+
attr_accessor ssekms_key_id: ::String
|
2583
|
+
attr_accessor bucket_key_enabled: bool
|
2584
|
+
attr_accessor request_charged: ("requester")
|
2585
|
+
SENSITIVE: [:ssekms_key_id]
|
2586
|
+
end
|
2587
|
+
|
2588
|
+
class UploadPartCopyRequest
|
2589
|
+
attr_accessor bucket: ::String
|
2590
|
+
attr_accessor copy_source: ::String
|
2591
|
+
attr_accessor copy_source_if_match: ::String
|
2592
|
+
attr_accessor copy_source_if_modified_since: ::Time
|
2593
|
+
attr_accessor copy_source_if_none_match: ::String
|
2594
|
+
attr_accessor copy_source_if_unmodified_since: ::Time
|
2595
|
+
attr_accessor copy_source_range: ::String
|
2596
|
+
attr_accessor key: ::String
|
2597
|
+
attr_accessor part_number: ::Integer
|
2598
|
+
attr_accessor upload_id: ::String
|
2599
|
+
attr_accessor sse_customer_algorithm: ::String
|
2600
|
+
attr_accessor sse_customer_key: ::String
|
2601
|
+
attr_accessor sse_customer_key_md5: ::String
|
2602
|
+
attr_accessor copy_source_sse_customer_algorithm: ::String
|
2603
|
+
attr_accessor copy_source_sse_customer_key: ::String
|
2604
|
+
attr_accessor copy_source_sse_customer_key_md5: ::String
|
2605
|
+
attr_accessor request_payer: ("requester")
|
2606
|
+
attr_accessor expected_bucket_owner: ::String
|
2607
|
+
attr_accessor expected_source_bucket_owner: ::String
|
2608
|
+
SENSITIVE: [:sse_customer_key, :copy_source_sse_customer_key]
|
2609
|
+
end
|
2610
|
+
|
2611
|
+
class UploadPartOutput
|
2612
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2613
|
+
attr_accessor etag: ::String
|
2614
|
+
attr_accessor checksum_crc32: ::String
|
2615
|
+
attr_accessor checksum_crc32c: ::String
|
2616
|
+
attr_accessor checksum_crc64nvme: ::String
|
2617
|
+
attr_accessor checksum_sha1: ::String
|
2618
|
+
attr_accessor checksum_sha256: ::String
|
2619
|
+
attr_accessor sse_customer_algorithm: ::String
|
2620
|
+
attr_accessor sse_customer_key_md5: ::String
|
2621
|
+
attr_accessor ssekms_key_id: ::String
|
2622
|
+
attr_accessor bucket_key_enabled: bool
|
2623
|
+
attr_accessor request_charged: ("requester")
|
2624
|
+
SENSITIVE: [:ssekms_key_id]
|
2625
|
+
end
|
2626
|
+
|
2627
|
+
class UploadPartRequest
|
2628
|
+
attr_accessor body: ::IO
|
2629
|
+
attr_accessor bucket: ::String
|
2630
|
+
attr_accessor content_length: ::Integer
|
2631
|
+
attr_accessor content_md5: ::String
|
2632
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2633
|
+
attr_accessor checksum_crc32: ::String
|
2634
|
+
attr_accessor checksum_crc32c: ::String
|
2635
|
+
attr_accessor checksum_crc64nvme: ::String
|
2636
|
+
attr_accessor checksum_sha1: ::String
|
2637
|
+
attr_accessor checksum_sha256: ::String
|
2638
|
+
attr_accessor key: ::String
|
2639
|
+
attr_accessor part_number: ::Integer
|
2640
|
+
attr_accessor upload_id: ::String
|
2641
|
+
attr_accessor sse_customer_algorithm: ::String
|
2642
|
+
attr_accessor sse_customer_key: ::String
|
2643
|
+
attr_accessor sse_customer_key_md5: ::String
|
2644
|
+
attr_accessor request_payer: ("requester")
|
2645
|
+
attr_accessor expected_bucket_owner: ::String
|
2646
|
+
SENSITIVE: [:sse_customer_key]
|
2647
|
+
end
|
2648
|
+
|
2649
|
+
class VersioningConfiguration
|
2650
|
+
attr_accessor mfa_delete: ("Enabled" | "Disabled")
|
2651
|
+
attr_accessor status: ("Enabled" | "Suspended")
|
2652
|
+
SENSITIVE: []
|
2653
|
+
end
|
2654
|
+
|
2655
|
+
class WebsiteConfiguration
|
2656
|
+
attr_accessor error_document: Types::ErrorDocument
|
2657
|
+
attr_accessor index_document: Types::IndexDocument
|
2658
|
+
attr_accessor redirect_all_requests_to: Types::RedirectAllRequestsTo
|
2659
|
+
attr_accessor routing_rules: ::Array[Types::RoutingRule]
|
2660
|
+
SENSITIVE: []
|
2661
|
+
end
|
2662
|
+
|
2663
|
+
class WriteGetObjectResponseRequest
|
2664
|
+
attr_accessor request_route: ::String
|
2665
|
+
attr_accessor request_token: ::String
|
2666
|
+
attr_accessor body: ::IO
|
2667
|
+
attr_accessor status_code: ::Integer
|
2668
|
+
attr_accessor error_code: ::String
|
2669
|
+
attr_accessor error_message: ::String
|
2670
|
+
attr_accessor accept_ranges: ::String
|
2671
|
+
attr_accessor cache_control: ::String
|
2672
|
+
attr_accessor content_disposition: ::String
|
2673
|
+
attr_accessor content_encoding: ::String
|
2674
|
+
attr_accessor content_language: ::String
|
2675
|
+
attr_accessor content_length: ::Integer
|
2676
|
+
attr_accessor content_range: ::String
|
2677
|
+
attr_accessor content_type: ::String
|
2678
|
+
attr_accessor checksum_crc32: ::String
|
2679
|
+
attr_accessor checksum_crc32c: ::String
|
2680
|
+
attr_accessor checksum_crc64nvme: ::String
|
2681
|
+
attr_accessor checksum_sha1: ::String
|
2682
|
+
attr_accessor checksum_sha256: ::String
|
2683
|
+
attr_accessor delete_marker: bool
|
2684
|
+
attr_accessor etag: ::String
|
2685
|
+
attr_accessor expires: ::Time
|
2686
|
+
attr_accessor expiration: ::String
|
2687
|
+
attr_accessor last_modified: ::Time
|
2688
|
+
attr_accessor missing_meta: ::Integer
|
2689
|
+
attr_accessor metadata: ::Hash[::String, ::String]
|
2690
|
+
attr_accessor object_lock_mode: ("GOVERNANCE" | "COMPLIANCE")
|
2691
|
+
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
2692
|
+
attr_accessor object_lock_retain_until_date: ::Time
|
2693
|
+
attr_accessor parts_count: ::Integer
|
2694
|
+
attr_accessor replication_status: ("COMPLETE" | "PENDING" | "FAILED" | "REPLICA" | "COMPLETED")
|
2695
|
+
attr_accessor request_charged: ("requester")
|
2696
|
+
attr_accessor restore: ::String
|
2697
|
+
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2698
|
+
attr_accessor sse_customer_algorithm: ::String
|
2699
|
+
attr_accessor ssekms_key_id: ::String
|
2700
|
+
attr_accessor sse_customer_key_md5: ::String
|
2701
|
+
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
2702
|
+
attr_accessor tag_count: ::Integer
|
2703
|
+
attr_accessor version_id: ::String
|
2704
|
+
attr_accessor bucket_key_enabled: bool
|
2705
|
+
SENSITIVE: [:ssekms_key_id]
|
2706
|
+
end
|
2707
|
+
|
2708
|
+
class SelectObjectContentEventStream < Enumerator[untyped, untyped]
|
2709
|
+
def event_types: () -> [:records, :stats, :progress, :cont, :end]
|
2710
|
+
end
|
2711
|
+
end
|
2712
|
+
end
|