aws-sdk-s3 1.169.0 → 1.189.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +118 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +79 -33
- data/lib/aws-sdk-s3/bucket_acl.rb +6 -5
- data/lib/aws-sdk-s3/bucket_cors.rb +6 -5
- data/lib/aws-sdk-s3/bucket_lifecycle.rb +7 -2
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +22 -2
- data/lib/aws-sdk-s3/bucket_logging.rb +2 -2
- data/lib/aws-sdk-s3/bucket_policy.rb +6 -5
- data/lib/aws-sdk-s3/bucket_request_payment.rb +3 -3
- data/lib/aws-sdk-s3/bucket_tagging.rb +3 -3
- data/lib/aws-sdk-s3/bucket_versioning.rb +9 -9
- data/lib/aws-sdk-s3/bucket_website.rb +3 -3
- data/lib/aws-sdk-s3/client.rb +2529 -1652
- data/lib/aws-sdk-s3/client_api.rb +325 -160
- data/lib/aws-sdk-s3/endpoint_provider.rb +400 -276
- data/lib/aws-sdk-s3/endpoints.rb +42 -0
- data/lib/aws-sdk-s3/errors.rb +44 -0
- data/lib/aws-sdk-s3/file_downloader.rb +14 -31
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
- data/lib/aws-sdk-s3/multipart_upload.rb +83 -6
- data/lib/aws-sdk-s3/multipart_upload_part.rb +50 -34
- data/lib/aws-sdk-s3/object.rb +242 -114
- data/lib/aws-sdk-s3/object_acl.rb +11 -5
- data/lib/aws-sdk-s3/object_summary.rb +180 -82
- data/lib/aws-sdk-s3/object_version.rb +60 -13
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/express_session_auth.rb +11 -20
- data/lib/aws-sdk-s3/plugins/http_200_errors.rb +3 -3
- data/lib/aws-sdk-s3/plugins/md5s.rb +10 -71
- data/lib/aws-sdk-s3/plugins/streaming_retry.rb +5 -7
- data/lib/aws-sdk-s3/presigner.rb +5 -5
- data/lib/aws-sdk-s3/resource.rb +10 -9
- data/lib/aws-sdk-s3/types.rb +2300 -1050
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +12 -6
- data/sig/bucket_acl.rbs +1 -1
- data/sig/bucket_cors.rbs +1 -1
- data/sig/bucket_lifecycle.rbs +1 -1
- data/sig/bucket_lifecycle_configuration.rbs +1 -1
- data/sig/bucket_logging.rbs +1 -1
- data/sig/bucket_policy.rbs +1 -1
- data/sig/bucket_request_payment.rbs +1 -1
- data/sig/bucket_tagging.rbs +1 -1
- data/sig/bucket_versioning.rbs +3 -3
- data/sig/bucket_website.rbs +1 -1
- data/sig/client.rbs +104 -37
- data/sig/errors.rbs +8 -0
- data/sig/multipart_upload.rbs +11 -2
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +22 -6
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +17 -7
- data/sig/object_version.rbs +9 -3
- data/sig/resource.rbs +5 -3
- data/sig/types.rbs +153 -36
- metadata +7 -10
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
data/sig/types.rbs
CHANGED
@@ -24,6 +24,7 @@ module Aws::S3
|
|
24
24
|
attr_accessor upload_id: ::String
|
25
25
|
attr_accessor request_payer: ("requester")
|
26
26
|
attr_accessor expected_bucket_owner: ::String
|
27
|
+
attr_accessor if_match_initiated_time: ::Time
|
27
28
|
SENSITIVE: []
|
28
29
|
end
|
29
30
|
|
@@ -90,7 +91,7 @@ module Aws::S3
|
|
90
91
|
end
|
91
92
|
|
92
93
|
class BucketInfo
|
93
|
-
attr_accessor data_redundancy: ("SingleAvailabilityZone")
|
94
|
+
attr_accessor data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")
|
94
95
|
attr_accessor type: ("Directory")
|
95
96
|
SENSITIVE: []
|
96
97
|
end
|
@@ -143,8 +144,10 @@ module Aws::S3
|
|
143
144
|
class Checksum
|
144
145
|
attr_accessor checksum_crc32: ::String
|
145
146
|
attr_accessor checksum_crc32c: ::String
|
147
|
+
attr_accessor checksum_crc64nvme: ::String
|
146
148
|
attr_accessor checksum_sha1: ::String
|
147
149
|
attr_accessor checksum_sha256: ::String
|
150
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
148
151
|
SENSITIVE: []
|
149
152
|
end
|
150
153
|
|
@@ -170,8 +173,10 @@ module Aws::S3
|
|
170
173
|
attr_accessor etag: ::String
|
171
174
|
attr_accessor checksum_crc32: ::String
|
172
175
|
attr_accessor checksum_crc32c: ::String
|
176
|
+
attr_accessor checksum_crc64nvme: ::String
|
173
177
|
attr_accessor checksum_sha1: ::String
|
174
178
|
attr_accessor checksum_sha256: ::String
|
179
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
175
180
|
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
176
181
|
attr_accessor version_id: ::String
|
177
182
|
attr_accessor ssekms_key_id: ::String
|
@@ -187,10 +192,14 @@ module Aws::S3
|
|
187
192
|
attr_accessor upload_id: ::String
|
188
193
|
attr_accessor checksum_crc32: ::String
|
189
194
|
attr_accessor checksum_crc32c: ::String
|
195
|
+
attr_accessor checksum_crc64nvme: ::String
|
190
196
|
attr_accessor checksum_sha1: ::String
|
191
197
|
attr_accessor checksum_sha256: ::String
|
198
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
199
|
+
attr_accessor mpu_object_size: ::Integer
|
192
200
|
attr_accessor request_payer: ("requester")
|
193
201
|
attr_accessor expected_bucket_owner: ::String
|
202
|
+
attr_accessor if_match: ::String
|
194
203
|
attr_accessor if_none_match: ::String
|
195
204
|
attr_accessor sse_customer_algorithm: ::String
|
196
205
|
attr_accessor sse_customer_key: ::String
|
@@ -207,6 +216,7 @@ module Aws::S3
|
|
207
216
|
attr_accessor etag: ::String
|
208
217
|
attr_accessor checksum_crc32: ::String
|
209
218
|
attr_accessor checksum_crc32c: ::String
|
219
|
+
attr_accessor checksum_crc64nvme: ::String
|
210
220
|
attr_accessor checksum_sha1: ::String
|
211
221
|
attr_accessor checksum_sha256: ::String
|
212
222
|
attr_accessor part_number: ::Integer
|
@@ -243,7 +253,7 @@ module Aws::S3
|
|
243
253
|
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
244
254
|
attr_accessor bucket: ::String
|
245
255
|
attr_accessor cache_control: ::String
|
246
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
256
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
247
257
|
attr_accessor content_disposition: ::String
|
248
258
|
attr_accessor content_encoding: ::String
|
249
259
|
attr_accessor content_language: ::String
|
@@ -287,8 +297,10 @@ module Aws::S3
|
|
287
297
|
class CopyObjectResult
|
288
298
|
attr_accessor etag: ::String
|
289
299
|
attr_accessor last_modified: ::Time
|
300
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
290
301
|
attr_accessor checksum_crc32: ::String
|
291
302
|
attr_accessor checksum_crc32c: ::String
|
303
|
+
attr_accessor checksum_crc64nvme: ::String
|
292
304
|
attr_accessor checksum_sha1: ::String
|
293
305
|
attr_accessor checksum_sha256: ::String
|
294
306
|
SENSITIVE: []
|
@@ -299,18 +311,28 @@ module Aws::S3
|
|
299
311
|
attr_accessor last_modified: ::Time
|
300
312
|
attr_accessor checksum_crc32: ::String
|
301
313
|
attr_accessor checksum_crc32c: ::String
|
314
|
+
attr_accessor checksum_crc64nvme: ::String
|
302
315
|
attr_accessor checksum_sha1: ::String
|
303
316
|
attr_accessor checksum_sha256: ::String
|
304
317
|
SENSITIVE: []
|
305
318
|
end
|
306
319
|
|
307
320
|
class CreateBucketConfiguration
|
308
|
-
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")
|
321
|
+
attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
|
309
322
|
attr_accessor location: Types::LocationInfo
|
310
323
|
attr_accessor bucket: Types::BucketInfo
|
311
324
|
SENSITIVE: []
|
312
325
|
end
|
313
326
|
|
327
|
+
class CreateBucketMetadataTableConfigurationRequest
|
328
|
+
attr_accessor bucket: ::String
|
329
|
+
attr_accessor content_md5: ::String
|
330
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
331
|
+
attr_accessor metadata_table_configuration: Types::MetadataTableConfiguration
|
332
|
+
attr_accessor expected_bucket_owner: ::String
|
333
|
+
SENSITIVE: []
|
334
|
+
end
|
335
|
+
|
314
336
|
class CreateBucketOutput
|
315
337
|
attr_accessor location: ::String
|
316
338
|
SENSITIVE: []
|
@@ -343,7 +365,8 @@ module Aws::S3
|
|
343
365
|
attr_accessor ssekms_encryption_context: ::String
|
344
366
|
attr_accessor bucket_key_enabled: bool
|
345
367
|
attr_accessor request_charged: ("requester")
|
346
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
368
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
369
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
347
370
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
348
371
|
end
|
349
372
|
|
@@ -377,7 +400,8 @@ module Aws::S3
|
|
377
400
|
attr_accessor object_lock_retain_until_date: ::Time
|
378
401
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
379
402
|
attr_accessor expected_bucket_owner: ::String
|
380
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
403
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
404
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
381
405
|
SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
|
382
406
|
end
|
383
407
|
|
@@ -451,6 +475,12 @@ module Aws::S3
|
|
451
475
|
SENSITIVE: []
|
452
476
|
end
|
453
477
|
|
478
|
+
class DeleteBucketMetadataTableConfigurationRequest
|
479
|
+
attr_accessor bucket: ::String
|
480
|
+
attr_accessor expected_bucket_owner: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
454
484
|
class DeleteBucketMetricsConfigurationRequest
|
455
485
|
attr_accessor bucket: ::String
|
456
486
|
attr_accessor id: ::String
|
@@ -523,6 +553,9 @@ module Aws::S3
|
|
523
553
|
attr_accessor request_payer: ("requester")
|
524
554
|
attr_accessor bypass_governance_retention: bool
|
525
555
|
attr_accessor expected_bucket_owner: ::String
|
556
|
+
attr_accessor if_match: ::String
|
557
|
+
attr_accessor if_match_last_modified_time: ::Time
|
558
|
+
attr_accessor if_match_size: ::Integer
|
526
559
|
SENSITIVE: []
|
527
560
|
end
|
528
561
|
|
@@ -553,7 +586,7 @@ module Aws::S3
|
|
553
586
|
attr_accessor request_payer: ("requester")
|
554
587
|
attr_accessor bypass_governance_retention: bool
|
555
588
|
attr_accessor expected_bucket_owner: ::String
|
556
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
589
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
557
590
|
SENSITIVE: []
|
558
591
|
end
|
559
592
|
|
@@ -594,6 +627,9 @@ module Aws::S3
|
|
594
627
|
SENSITIVE: []
|
595
628
|
end
|
596
629
|
|
630
|
+
class EncryptionTypeMismatch < Aws::EmptyStructure
|
631
|
+
end
|
632
|
+
|
597
633
|
class EndEvent
|
598
634
|
attr_accessor event_type: untyped
|
599
635
|
SENSITIVE: []
|
@@ -607,6 +643,12 @@ module Aws::S3
|
|
607
643
|
SENSITIVE: []
|
608
644
|
end
|
609
645
|
|
646
|
+
class ErrorDetails
|
647
|
+
attr_accessor error_code: ::String
|
648
|
+
attr_accessor error_message: ::String
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
610
652
|
class ErrorDocument
|
611
653
|
attr_accessor key: ::String
|
612
654
|
SENSITIVE: []
|
@@ -732,7 +774,7 @@ module Aws::S3
|
|
732
774
|
end
|
733
775
|
|
734
776
|
class GetBucketLocationOutput
|
735
|
-
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")
|
777
|
+
attr_accessor location_constraint: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "cn-north-1" | "cn-northwest-1" | "EU" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-2" | "us-gov-east-1" | "us-gov-west-1" | "us-west-1" | "us-west-2")
|
736
778
|
SENSITIVE: []
|
737
779
|
end
|
738
780
|
|
@@ -753,6 +795,24 @@ module Aws::S3
|
|
753
795
|
SENSITIVE: []
|
754
796
|
end
|
755
797
|
|
798
|
+
class GetBucketMetadataTableConfigurationOutput
|
799
|
+
attr_accessor get_bucket_metadata_table_configuration_result: Types::GetBucketMetadataTableConfigurationResult
|
800
|
+
SENSITIVE: []
|
801
|
+
end
|
802
|
+
|
803
|
+
class GetBucketMetadataTableConfigurationRequest
|
804
|
+
attr_accessor bucket: ::String
|
805
|
+
attr_accessor expected_bucket_owner: ::String
|
806
|
+
SENSITIVE: []
|
807
|
+
end
|
808
|
+
|
809
|
+
class GetBucketMetadataTableConfigurationResult
|
810
|
+
attr_accessor metadata_table_configuration_result: Types::MetadataTableConfigurationResult
|
811
|
+
attr_accessor status: ::String
|
812
|
+
attr_accessor error: Types::ErrorDetails
|
813
|
+
SENSITIVE: []
|
814
|
+
end
|
815
|
+
|
756
816
|
class GetBucketMetricsConfigurationOutput
|
757
817
|
attr_accessor metrics_configuration: Types::MetricsConfiguration
|
758
818
|
SENSITIVE: []
|
@@ -953,8 +1013,10 @@ module Aws::S3
|
|
953
1013
|
attr_accessor etag: ::String
|
954
1014
|
attr_accessor checksum_crc32: ::String
|
955
1015
|
attr_accessor checksum_crc32c: ::String
|
1016
|
+
attr_accessor checksum_crc64nvme: ::String
|
956
1017
|
attr_accessor checksum_sha1: ::String
|
957
1018
|
attr_accessor checksum_sha256: ::String
|
1019
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
958
1020
|
attr_accessor missing_meta: ::Integer
|
959
1021
|
attr_accessor version_id: ::String
|
960
1022
|
attr_accessor cache_control: ::String
|
@@ -1083,7 +1145,7 @@ module Aws::S3
|
|
1083
1145
|
end
|
1084
1146
|
|
1085
1147
|
class HeadBucketOutput
|
1086
|
-
attr_accessor bucket_location_type: ("AvailabilityZone")
|
1148
|
+
attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
|
1087
1149
|
attr_accessor bucket_location_name: ::String
|
1088
1150
|
attr_accessor bucket_region: ::String
|
1089
1151
|
attr_accessor access_point_alias: bool
|
@@ -1106,8 +1168,10 @@ module Aws::S3
|
|
1106
1168
|
attr_accessor content_length: ::Integer
|
1107
1169
|
attr_accessor checksum_crc32: ::String
|
1108
1170
|
attr_accessor checksum_crc32c: ::String
|
1171
|
+
attr_accessor checksum_crc64nvme: ::String
|
1109
1172
|
attr_accessor checksum_sha1: ::String
|
1110
1173
|
attr_accessor checksum_sha256: ::String
|
1174
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1111
1175
|
attr_accessor etag: ::String
|
1112
1176
|
attr_accessor missing_meta: ::Integer
|
1113
1177
|
attr_accessor version_id: ::String
|
@@ -1116,6 +1180,7 @@ module Aws::S3
|
|
1116
1180
|
attr_accessor content_encoding: ::String
|
1117
1181
|
attr_accessor content_language: ::String
|
1118
1182
|
attr_accessor content_type: ::String
|
1183
|
+
attr_accessor content_range: ::String
|
1119
1184
|
attr_accessor expires: ::Time
|
1120
1185
|
attr_accessor expires_string: ::String
|
1121
1186
|
attr_accessor website_redirect_location: ::String
|
@@ -1206,6 +1271,12 @@ module Aws::S3
|
|
1206
1271
|
SENSITIVE: []
|
1207
1272
|
end
|
1208
1273
|
|
1274
|
+
class InvalidRequest < Aws::EmptyStructure
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
class InvalidWriteOffset < Aws::EmptyStructure
|
1278
|
+
end
|
1279
|
+
|
1209
1280
|
class InventoryConfiguration
|
1210
1281
|
attr_accessor destination: Types::InventoryDestination
|
1211
1282
|
attr_accessor is_enabled: bool
|
@@ -1531,7 +1602,8 @@ module Aws::S3
|
|
1531
1602
|
attr_accessor owner: Types::Owner
|
1532
1603
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1533
1604
|
attr_accessor request_charged: ("requester")
|
1534
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1605
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1606
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1535
1607
|
SENSITIVE: []
|
1536
1608
|
end
|
1537
1609
|
|
@@ -1550,7 +1622,7 @@ module Aws::S3
|
|
1550
1622
|
end
|
1551
1623
|
|
1552
1624
|
class LocationInfo
|
1553
|
-
attr_accessor type: ("AvailabilityZone")
|
1625
|
+
attr_accessor type: ("AvailabilityZone" | "LocalZone")
|
1554
1626
|
attr_accessor name: ::String
|
1555
1627
|
SENSITIVE: []
|
1556
1628
|
end
|
@@ -1569,6 +1641,16 @@ module Aws::S3
|
|
1569
1641
|
SENSITIVE: []
|
1570
1642
|
end
|
1571
1643
|
|
1644
|
+
class MetadataTableConfiguration
|
1645
|
+
attr_accessor s3_tables_destination: Types::S3TablesDestination
|
1646
|
+
SENSITIVE: []
|
1647
|
+
end
|
1648
|
+
|
1649
|
+
class MetadataTableConfigurationResult
|
1650
|
+
attr_accessor s3_tables_destination_result: Types::S3TablesDestinationResult
|
1651
|
+
SENSITIVE: []
|
1652
|
+
end
|
1653
|
+
|
1572
1654
|
class Metrics
|
1573
1655
|
attr_accessor status: ("Enabled" | "Disabled")
|
1574
1656
|
attr_accessor event_threshold: Types::ReplicationTimeValue
|
@@ -1603,7 +1685,8 @@ module Aws::S3
|
|
1603
1685
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1604
1686
|
attr_accessor owner: Types::Owner
|
1605
1687
|
attr_accessor initiator: Types::Initiator
|
1606
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1688
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1689
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1607
1690
|
SENSITIVE: []
|
1608
1691
|
end
|
1609
1692
|
|
@@ -1653,7 +1736,8 @@ module Aws::S3
|
|
1653
1736
|
attr_accessor key: ::String
|
1654
1737
|
attr_accessor last_modified: ::Time
|
1655
1738
|
attr_accessor etag: ::String
|
1656
|
-
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
|
1739
|
+
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
1740
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1657
1741
|
attr_accessor size: ::Integer
|
1658
1742
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1659
1743
|
attr_accessor owner: Types::Owner
|
@@ -1667,6 +1751,9 @@ module Aws::S3
|
|
1667
1751
|
class ObjectIdentifier
|
1668
1752
|
attr_accessor key: ::String
|
1669
1753
|
attr_accessor version_id: ::String
|
1754
|
+
attr_accessor etag: ::String
|
1755
|
+
attr_accessor last_modified_time: ::Time
|
1756
|
+
attr_accessor size: ::Integer
|
1670
1757
|
SENSITIVE: []
|
1671
1758
|
end
|
1672
1759
|
|
@@ -1700,6 +1787,7 @@ module Aws::S3
|
|
1700
1787
|
attr_accessor size: ::Integer
|
1701
1788
|
attr_accessor checksum_crc32: ::String
|
1702
1789
|
attr_accessor checksum_crc32c: ::String
|
1790
|
+
attr_accessor checksum_crc64nvme: ::String
|
1703
1791
|
attr_accessor checksum_sha1: ::String
|
1704
1792
|
attr_accessor checksum_sha256: ::String
|
1705
1793
|
SENSITIVE: []
|
@@ -1707,7 +1795,8 @@ module Aws::S3
|
|
1707
1795
|
|
1708
1796
|
class ObjectVersion
|
1709
1797
|
attr_accessor etag: ::String
|
1710
|
-
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256")]
|
1798
|
+
attr_accessor checksum_algorithm: ::Array[("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")]
|
1799
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1711
1800
|
attr_accessor size: ::Integer
|
1712
1801
|
attr_accessor storage_class: ("STANDARD")
|
1713
1802
|
attr_accessor key: ::String
|
@@ -1756,6 +1845,7 @@ module Aws::S3
|
|
1756
1845
|
attr_accessor size: ::Integer
|
1757
1846
|
attr_accessor checksum_crc32: ::String
|
1758
1847
|
attr_accessor checksum_crc32c: ::String
|
1848
|
+
attr_accessor checksum_crc64nvme: ::String
|
1759
1849
|
attr_accessor checksum_sha1: ::String
|
1760
1850
|
attr_accessor checksum_sha256: ::String
|
1761
1851
|
SENSITIVE: []
|
@@ -1796,7 +1886,7 @@ module Aws::S3
|
|
1796
1886
|
attr_accessor bucket: ::String
|
1797
1887
|
attr_accessor accelerate_configuration: Types::AccelerateConfiguration
|
1798
1888
|
attr_accessor expected_bucket_owner: ::String
|
1799
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1889
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1800
1890
|
SENSITIVE: []
|
1801
1891
|
end
|
1802
1892
|
|
@@ -1805,7 +1895,7 @@ module Aws::S3
|
|
1805
1895
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
1806
1896
|
attr_accessor bucket: ::String
|
1807
1897
|
attr_accessor content_md5: ::String
|
1808
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1898
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1809
1899
|
attr_accessor grant_full_control: ::String
|
1810
1900
|
attr_accessor grant_read: ::String
|
1811
1901
|
attr_accessor grant_read_acp: ::String
|
@@ -1827,7 +1917,7 @@ module Aws::S3
|
|
1827
1917
|
attr_accessor bucket: ::String
|
1828
1918
|
attr_accessor cors_configuration: Types::CORSConfiguration
|
1829
1919
|
attr_accessor content_md5: ::String
|
1830
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1920
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1831
1921
|
attr_accessor expected_bucket_owner: ::String
|
1832
1922
|
SENSITIVE: []
|
1833
1923
|
end
|
@@ -1835,7 +1925,7 @@ module Aws::S3
|
|
1835
1925
|
class PutBucketEncryptionRequest
|
1836
1926
|
attr_accessor bucket: ::String
|
1837
1927
|
attr_accessor content_md5: ::String
|
1838
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1928
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1839
1929
|
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
1840
1930
|
attr_accessor expected_bucket_owner: ::String
|
1841
1931
|
SENSITIVE: []
|
@@ -1863,7 +1953,7 @@ module Aws::S3
|
|
1863
1953
|
|
1864
1954
|
class PutBucketLifecycleConfigurationRequest
|
1865
1955
|
attr_accessor bucket: ::String
|
1866
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1956
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1867
1957
|
attr_accessor lifecycle_configuration: Types::BucketLifecycleConfiguration
|
1868
1958
|
attr_accessor expected_bucket_owner: ::String
|
1869
1959
|
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
@@ -1873,7 +1963,7 @@ module Aws::S3
|
|
1873
1963
|
class PutBucketLifecycleRequest
|
1874
1964
|
attr_accessor bucket: ::String
|
1875
1965
|
attr_accessor content_md5: ::String
|
1876
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1966
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1877
1967
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
1878
1968
|
attr_accessor expected_bucket_owner: ::String
|
1879
1969
|
SENSITIVE: []
|
@@ -1883,7 +1973,7 @@ module Aws::S3
|
|
1883
1973
|
attr_accessor bucket: ::String
|
1884
1974
|
attr_accessor bucket_logging_status: Types::BucketLoggingStatus
|
1885
1975
|
attr_accessor content_md5: ::String
|
1886
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1976
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1887
1977
|
attr_accessor expected_bucket_owner: ::String
|
1888
1978
|
SENSITIVE: []
|
1889
1979
|
end
|
@@ -1907,7 +1997,7 @@ module Aws::S3
|
|
1907
1997
|
class PutBucketNotificationRequest
|
1908
1998
|
attr_accessor bucket: ::String
|
1909
1999
|
attr_accessor content_md5: ::String
|
1910
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2000
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1911
2001
|
attr_accessor notification_configuration: Types::NotificationConfigurationDeprecated
|
1912
2002
|
attr_accessor expected_bucket_owner: ::String
|
1913
2003
|
SENSITIVE: []
|
@@ -1918,13 +2008,14 @@ module Aws::S3
|
|
1918
2008
|
attr_accessor content_md5: ::String
|
1919
2009
|
attr_accessor expected_bucket_owner: ::String
|
1920
2010
|
attr_accessor ownership_controls: Types::OwnershipControls
|
2011
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1921
2012
|
SENSITIVE: []
|
1922
2013
|
end
|
1923
2014
|
|
1924
2015
|
class PutBucketPolicyRequest
|
1925
2016
|
attr_accessor bucket: ::String
|
1926
2017
|
attr_accessor content_md5: ::String
|
1927
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2018
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1928
2019
|
attr_accessor confirm_remove_self_bucket_access: bool
|
1929
2020
|
attr_accessor policy: ::IO
|
1930
2021
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1934,7 +2025,7 @@ module Aws::S3
|
|
1934
2025
|
class PutBucketReplicationRequest
|
1935
2026
|
attr_accessor bucket: ::String
|
1936
2027
|
attr_accessor content_md5: ::String
|
1937
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2028
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1938
2029
|
attr_accessor replication_configuration: Types::ReplicationConfiguration
|
1939
2030
|
attr_accessor token: ::String
|
1940
2031
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1944,7 +2035,7 @@ module Aws::S3
|
|
1944
2035
|
class PutBucketRequestPaymentRequest
|
1945
2036
|
attr_accessor bucket: ::String
|
1946
2037
|
attr_accessor content_md5: ::String
|
1947
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2038
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1948
2039
|
attr_accessor request_payment_configuration: Types::RequestPaymentConfiguration
|
1949
2040
|
attr_accessor expected_bucket_owner: ::String
|
1950
2041
|
SENSITIVE: []
|
@@ -1953,7 +2044,7 @@ module Aws::S3
|
|
1953
2044
|
class PutBucketTaggingRequest
|
1954
2045
|
attr_accessor bucket: ::String
|
1955
2046
|
attr_accessor content_md5: ::String
|
1956
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2047
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1957
2048
|
attr_accessor tagging: Types::Tagging
|
1958
2049
|
attr_accessor expected_bucket_owner: ::String
|
1959
2050
|
SENSITIVE: []
|
@@ -1962,7 +2053,7 @@ module Aws::S3
|
|
1962
2053
|
class PutBucketVersioningRequest
|
1963
2054
|
attr_accessor bucket: ::String
|
1964
2055
|
attr_accessor content_md5: ::String
|
1965
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2056
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1966
2057
|
attr_accessor mfa: ::String
|
1967
2058
|
attr_accessor versioning_configuration: Types::VersioningConfiguration
|
1968
2059
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1972,7 +2063,7 @@ module Aws::S3
|
|
1972
2063
|
class PutBucketWebsiteRequest
|
1973
2064
|
attr_accessor bucket: ::String
|
1974
2065
|
attr_accessor content_md5: ::String
|
1975
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2066
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1976
2067
|
attr_accessor website_configuration: Types::WebsiteConfiguration
|
1977
2068
|
attr_accessor expected_bucket_owner: ::String
|
1978
2069
|
SENSITIVE: []
|
@@ -1988,7 +2079,7 @@ module Aws::S3
|
|
1988
2079
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
1989
2080
|
attr_accessor bucket: ::String
|
1990
2081
|
attr_accessor content_md5: ::String
|
1991
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2082
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1992
2083
|
attr_accessor grant_full_control: ::String
|
1993
2084
|
attr_accessor grant_read: ::String
|
1994
2085
|
attr_accessor grant_read_acp: ::String
|
@@ -2013,7 +2104,7 @@ module Aws::S3
|
|
2013
2104
|
attr_accessor request_payer: ("requester")
|
2014
2105
|
attr_accessor version_id: ::String
|
2015
2106
|
attr_accessor content_md5: ::String
|
2016
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2107
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2017
2108
|
attr_accessor expected_bucket_owner: ::String
|
2018
2109
|
SENSITIVE: []
|
2019
2110
|
end
|
@@ -2029,7 +2120,7 @@ module Aws::S3
|
|
2029
2120
|
attr_accessor request_payer: ("requester")
|
2030
2121
|
attr_accessor token: ::String
|
2031
2122
|
attr_accessor content_md5: ::String
|
2032
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2123
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2033
2124
|
attr_accessor expected_bucket_owner: ::String
|
2034
2125
|
SENSITIVE: []
|
2035
2126
|
end
|
@@ -2039,8 +2130,10 @@ module Aws::S3
|
|
2039
2130
|
attr_accessor etag: ::String
|
2040
2131
|
attr_accessor checksum_crc32: ::String
|
2041
2132
|
attr_accessor checksum_crc32c: ::String
|
2133
|
+
attr_accessor checksum_crc64nvme: ::String
|
2042
2134
|
attr_accessor checksum_sha1: ::String
|
2043
2135
|
attr_accessor checksum_sha256: ::String
|
2136
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
2044
2137
|
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2045
2138
|
attr_accessor version_id: ::String
|
2046
2139
|
attr_accessor sse_customer_algorithm: ::String
|
@@ -2048,6 +2141,7 @@ module Aws::S3
|
|
2048
2141
|
attr_accessor ssekms_key_id: ::String
|
2049
2142
|
attr_accessor ssekms_encryption_context: ::String
|
2050
2143
|
attr_accessor bucket_key_enabled: bool
|
2144
|
+
attr_accessor size: ::Integer
|
2051
2145
|
attr_accessor request_charged: ("requester")
|
2052
2146
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
2053
2147
|
end
|
@@ -2063,18 +2157,21 @@ module Aws::S3
|
|
2063
2157
|
attr_accessor content_length: ::Integer
|
2064
2158
|
attr_accessor content_md5: ::String
|
2065
2159
|
attr_accessor content_type: ::String
|
2066
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2160
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2067
2161
|
attr_accessor checksum_crc32: ::String
|
2068
2162
|
attr_accessor checksum_crc32c: ::String
|
2163
|
+
attr_accessor checksum_crc64nvme: ::String
|
2069
2164
|
attr_accessor checksum_sha1: ::String
|
2070
2165
|
attr_accessor checksum_sha256: ::String
|
2071
2166
|
attr_accessor expires: ::Time
|
2167
|
+
attr_accessor if_match: ::String
|
2072
2168
|
attr_accessor if_none_match: ::String
|
2073
2169
|
attr_accessor grant_full_control: ::String
|
2074
2170
|
attr_accessor grant_read: ::String
|
2075
2171
|
attr_accessor grant_read_acp: ::String
|
2076
2172
|
attr_accessor grant_write_acp: ::String
|
2077
2173
|
attr_accessor key: ::String
|
2174
|
+
attr_accessor write_offset_bytes: ::Integer
|
2078
2175
|
attr_accessor metadata: ::Hash[::String, ::String]
|
2079
2176
|
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2080
2177
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
@@ -2107,7 +2204,7 @@ module Aws::S3
|
|
2107
2204
|
attr_accessor version_id: ::String
|
2108
2205
|
attr_accessor bypass_governance_retention: bool
|
2109
2206
|
attr_accessor content_md5: ::String
|
2110
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2207
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2111
2208
|
attr_accessor expected_bucket_owner: ::String
|
2112
2209
|
SENSITIVE: []
|
2113
2210
|
end
|
@@ -2122,7 +2219,7 @@ module Aws::S3
|
|
2122
2219
|
attr_accessor key: ::String
|
2123
2220
|
attr_accessor version_id: ::String
|
2124
2221
|
attr_accessor content_md5: ::String
|
2125
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2222
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2126
2223
|
attr_accessor tagging: Types::Tagging
|
2127
2224
|
attr_accessor expected_bucket_owner: ::String
|
2128
2225
|
attr_accessor request_payer: ("requester")
|
@@ -2132,7 +2229,7 @@ module Aws::S3
|
|
2132
2229
|
class PutPublicAccessBlockRequest
|
2133
2230
|
attr_accessor bucket: ::String
|
2134
2231
|
attr_accessor content_md5: ::String
|
2135
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2232
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2136
2233
|
attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
|
2137
2234
|
attr_accessor expected_bucket_owner: ::String
|
2138
2235
|
SENSITIVE: []
|
@@ -2245,7 +2342,7 @@ module Aws::S3
|
|
2245
2342
|
attr_accessor version_id: ::String
|
2246
2343
|
attr_accessor restore_request: Types::RestoreRequest
|
2247
2344
|
attr_accessor request_payer: ("requester")
|
2248
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2345
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2249
2346
|
attr_accessor expected_bucket_owner: ::String
|
2250
2347
|
SENSITIVE: []
|
2251
2348
|
end
|
@@ -2302,6 +2399,20 @@ module Aws::S3
|
|
2302
2399
|
SENSITIVE: []
|
2303
2400
|
end
|
2304
2401
|
|
2402
|
+
class S3TablesDestination
|
2403
|
+
attr_accessor table_bucket_arn: ::String
|
2404
|
+
attr_accessor table_name: ::String
|
2405
|
+
SENSITIVE: []
|
2406
|
+
end
|
2407
|
+
|
2408
|
+
class S3TablesDestinationResult
|
2409
|
+
attr_accessor table_bucket_arn: ::String
|
2410
|
+
attr_accessor table_name: ::String
|
2411
|
+
attr_accessor table_arn: ::String
|
2412
|
+
attr_accessor table_namespace: ::String
|
2413
|
+
SENSITIVE: []
|
2414
|
+
end
|
2415
|
+
|
2305
2416
|
class SSEKMS
|
2306
2417
|
attr_accessor key_id: ::String
|
2307
2418
|
SENSITIVE: [:key_id]
|
@@ -2437,6 +2548,9 @@ module Aws::S3
|
|
2437
2548
|
SENSITIVE: []
|
2438
2549
|
end
|
2439
2550
|
|
2551
|
+
class TooManyParts < Aws::EmptyStructure
|
2552
|
+
end
|
2553
|
+
|
2440
2554
|
class TopicConfiguration
|
2441
2555
|
attr_accessor id: ::String
|
2442
2556
|
attr_accessor topic_arn: ::String
|
@@ -2500,6 +2614,7 @@ module Aws::S3
|
|
2500
2614
|
attr_accessor etag: ::String
|
2501
2615
|
attr_accessor checksum_crc32: ::String
|
2502
2616
|
attr_accessor checksum_crc32c: ::String
|
2617
|
+
attr_accessor checksum_crc64nvme: ::String
|
2503
2618
|
attr_accessor checksum_sha1: ::String
|
2504
2619
|
attr_accessor checksum_sha256: ::String
|
2505
2620
|
attr_accessor sse_customer_algorithm: ::String
|
@@ -2515,9 +2630,10 @@ module Aws::S3
|
|
2515
2630
|
attr_accessor bucket: ::String
|
2516
2631
|
attr_accessor content_length: ::Integer
|
2517
2632
|
attr_accessor content_md5: ::String
|
2518
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2633
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2519
2634
|
attr_accessor checksum_crc32: ::String
|
2520
2635
|
attr_accessor checksum_crc32c: ::String
|
2636
|
+
attr_accessor checksum_crc64nvme: ::String
|
2521
2637
|
attr_accessor checksum_sha1: ::String
|
2522
2638
|
attr_accessor checksum_sha256: ::String
|
2523
2639
|
attr_accessor key: ::String
|
@@ -2562,6 +2678,7 @@ module Aws::S3
|
|
2562
2678
|
attr_accessor content_type: ::String
|
2563
2679
|
attr_accessor checksum_crc32: ::String
|
2564
2680
|
attr_accessor checksum_crc32c: ::String
|
2681
|
+
attr_accessor checksum_crc64nvme: ::String
|
2565
2682
|
attr_accessor checksum_sha1: ::String
|
2566
2683
|
attr_accessor checksum_sha256: ::String
|
2567
2684
|
attr_accessor delete_marker: bool
|