aws-sdk-s3 1.136.0 → 1.176.1

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