aws-sdk-s3 1.164.0 → 1.182.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 +102 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +112 -43
- 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 +60 -3
- data/lib/aws-sdk-s3/bucket_logging.rb +2 -2
- data/lib/aws-sdk-s3/bucket_policy.rb +10 -9
- 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 +2144 -1325
- data/lib/aws-sdk-s3/client_api.rb +175 -3
- data/lib/aws-sdk-s3/customizations/object.rb +6 -0
- data/lib/aws-sdk-s3/customizations/object_summary.rb +5 -0
- data/lib/aws-sdk-s3/customizations/object_version.rb +13 -0
- data/lib/aws-sdk-s3/customizations.rb +24 -38
- data/lib/aws-sdk-s3/endpoint_parameters.rb +13 -18
- data/lib/aws-sdk-s3/endpoint_provider.rb +272 -253
- data/lib/aws-sdk-s3/endpoints.rb +445 -1403
- data/lib/aws-sdk-s3/errors.rb +47 -0
- data/lib/aws-sdk-s3/file_downloader.rb +4 -21
- data/lib/aws-sdk-s3/multipart_file_uploader.rb +31 -13
- data/lib/aws-sdk-s3/multipart_upload.rb +84 -6
- data/lib/aws-sdk-s3/multipart_upload_part.rb +52 -36
- data/lib/aws-sdk-s3/object.rb +254 -113
- data/lib/aws-sdk-s3/object_acl.rb +4 -4
- data/lib/aws-sdk-s3/object_summary.rb +199 -82
- data/lib/aws-sdk-s3/object_version.rb +67 -17
- data/lib/aws-sdk-s3/plugins/checksum_algorithm.rb +31 -0
- data/lib/aws-sdk-s3/plugins/endpoints.rb +1 -204
- 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/presigner.rb +5 -5
- data/lib/aws-sdk-s3/resource.rb +35 -10
- data/lib/aws-sdk-s3/types.rb +1921 -856
- data/lib/aws-sdk-s3.rb +35 -31
- data/sig/bucket.rbs +15 -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 +8 -4
- 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 +115 -40
- 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 +7 -3
- data/sig/types.rbs +163 -36
- metadata +6 -5
- 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
|
|
@@ -79,6 +80,7 @@ module Aws::S3
|
|
79
80
|
class Bucket
|
80
81
|
attr_accessor name: ::String
|
81
82
|
attr_accessor creation_date: ::Time
|
83
|
+
attr_accessor bucket_region: ::String
|
82
84
|
SENSITIVE: []
|
83
85
|
end
|
84
86
|
|
@@ -89,7 +91,7 @@ module Aws::S3
|
|
89
91
|
end
|
90
92
|
|
91
93
|
class BucketInfo
|
92
|
-
attr_accessor data_redundancy: ("SingleAvailabilityZone")
|
94
|
+
attr_accessor data_redundancy: ("SingleAvailabilityZone" | "SingleLocalZone")
|
93
95
|
attr_accessor type: ("Directory")
|
94
96
|
SENSITIVE: []
|
95
97
|
end
|
@@ -142,8 +144,10 @@ module Aws::S3
|
|
142
144
|
class Checksum
|
143
145
|
attr_accessor checksum_crc32: ::String
|
144
146
|
attr_accessor checksum_crc32c: ::String
|
147
|
+
attr_accessor checksum_crc64nvme: ::String
|
145
148
|
attr_accessor checksum_sha1: ::String
|
146
149
|
attr_accessor checksum_sha256: ::String
|
150
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
147
151
|
SENSITIVE: []
|
148
152
|
end
|
149
153
|
|
@@ -169,8 +173,10 @@ module Aws::S3
|
|
169
173
|
attr_accessor etag: ::String
|
170
174
|
attr_accessor checksum_crc32: ::String
|
171
175
|
attr_accessor checksum_crc32c: ::String
|
176
|
+
attr_accessor checksum_crc64nvme: ::String
|
172
177
|
attr_accessor checksum_sha1: ::String
|
173
178
|
attr_accessor checksum_sha256: ::String
|
179
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
174
180
|
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
175
181
|
attr_accessor version_id: ::String
|
176
182
|
attr_accessor ssekms_key_id: ::String
|
@@ -186,10 +192,14 @@ module Aws::S3
|
|
186
192
|
attr_accessor upload_id: ::String
|
187
193
|
attr_accessor checksum_crc32: ::String
|
188
194
|
attr_accessor checksum_crc32c: ::String
|
195
|
+
attr_accessor checksum_crc64nvme: ::String
|
189
196
|
attr_accessor checksum_sha1: ::String
|
190
197
|
attr_accessor checksum_sha256: ::String
|
198
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
199
|
+
attr_accessor mpu_object_size: ::Integer
|
191
200
|
attr_accessor request_payer: ("requester")
|
192
201
|
attr_accessor expected_bucket_owner: ::String
|
202
|
+
attr_accessor if_match: ::String
|
193
203
|
attr_accessor if_none_match: ::String
|
194
204
|
attr_accessor sse_customer_algorithm: ::String
|
195
205
|
attr_accessor sse_customer_key: ::String
|
@@ -206,6 +216,7 @@ module Aws::S3
|
|
206
216
|
attr_accessor etag: ::String
|
207
217
|
attr_accessor checksum_crc32: ::String
|
208
218
|
attr_accessor checksum_crc32c: ::String
|
219
|
+
attr_accessor checksum_crc64nvme: ::String
|
209
220
|
attr_accessor checksum_sha1: ::String
|
210
221
|
attr_accessor checksum_sha256: ::String
|
211
222
|
attr_accessor part_number: ::Integer
|
@@ -242,7 +253,7 @@ module Aws::S3
|
|
242
253
|
attr_accessor acl: ("private" | "public-read" | "public-read-write" | "authenticated-read" | "aws-exec-read" | "bucket-owner-read" | "bucket-owner-full-control")
|
243
254
|
attr_accessor bucket: ::String
|
244
255
|
attr_accessor cache_control: ::String
|
245
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
256
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
246
257
|
attr_accessor content_disposition: ::String
|
247
258
|
attr_accessor content_encoding: ::String
|
248
259
|
attr_accessor content_language: ::String
|
@@ -286,8 +297,10 @@ module Aws::S3
|
|
286
297
|
class CopyObjectResult
|
287
298
|
attr_accessor etag: ::String
|
288
299
|
attr_accessor last_modified: ::Time
|
300
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
289
301
|
attr_accessor checksum_crc32: ::String
|
290
302
|
attr_accessor checksum_crc32c: ::String
|
303
|
+
attr_accessor checksum_crc64nvme: ::String
|
291
304
|
attr_accessor checksum_sha1: ::String
|
292
305
|
attr_accessor checksum_sha256: ::String
|
293
306
|
SENSITIVE: []
|
@@ -298,18 +311,28 @@ module Aws::S3
|
|
298
311
|
attr_accessor last_modified: ::Time
|
299
312
|
attr_accessor checksum_crc32: ::String
|
300
313
|
attr_accessor checksum_crc32c: ::String
|
314
|
+
attr_accessor checksum_crc64nvme: ::String
|
301
315
|
attr_accessor checksum_sha1: ::String
|
302
316
|
attr_accessor checksum_sha256: ::String
|
303
317
|
SENSITIVE: []
|
304
318
|
end
|
305
319
|
|
306
320
|
class CreateBucketConfiguration
|
307
|
-
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")
|
308
322
|
attr_accessor location: Types::LocationInfo
|
309
323
|
attr_accessor bucket: Types::BucketInfo
|
310
324
|
SENSITIVE: []
|
311
325
|
end
|
312
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
|
+
|
313
336
|
class CreateBucketOutput
|
314
337
|
attr_accessor location: ::String
|
315
338
|
SENSITIVE: []
|
@@ -342,7 +365,8 @@ module Aws::S3
|
|
342
365
|
attr_accessor ssekms_encryption_context: ::String
|
343
366
|
attr_accessor bucket_key_enabled: bool
|
344
367
|
attr_accessor request_charged: ("requester")
|
345
|
-
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")
|
346
370
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
347
371
|
end
|
348
372
|
|
@@ -376,7 +400,8 @@ module Aws::S3
|
|
376
400
|
attr_accessor object_lock_retain_until_date: ::Time
|
377
401
|
attr_accessor object_lock_legal_hold_status: ("ON" | "OFF")
|
378
402
|
attr_accessor expected_bucket_owner: ::String
|
379
|
-
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")
|
380
405
|
SENSITIVE: [:sse_customer_key, :ssekms_key_id, :ssekms_encryption_context]
|
381
406
|
end
|
382
407
|
|
@@ -450,6 +475,12 @@ module Aws::S3
|
|
450
475
|
SENSITIVE: []
|
451
476
|
end
|
452
477
|
|
478
|
+
class DeleteBucketMetadataTableConfigurationRequest
|
479
|
+
attr_accessor bucket: ::String
|
480
|
+
attr_accessor expected_bucket_owner: ::String
|
481
|
+
SENSITIVE: []
|
482
|
+
end
|
483
|
+
|
453
484
|
class DeleteBucketMetricsConfigurationRequest
|
454
485
|
attr_accessor bucket: ::String
|
455
486
|
attr_accessor id: ::String
|
@@ -522,6 +553,9 @@ module Aws::S3
|
|
522
553
|
attr_accessor request_payer: ("requester")
|
523
554
|
attr_accessor bypass_governance_retention: bool
|
524
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
|
525
559
|
SENSITIVE: []
|
526
560
|
end
|
527
561
|
|
@@ -552,7 +586,7 @@ module Aws::S3
|
|
552
586
|
attr_accessor request_payer: ("requester")
|
553
587
|
attr_accessor bypass_governance_retention: bool
|
554
588
|
attr_accessor expected_bucket_owner: ::String
|
555
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
589
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
556
590
|
SENSITIVE: []
|
557
591
|
end
|
558
592
|
|
@@ -593,6 +627,9 @@ module Aws::S3
|
|
593
627
|
SENSITIVE: []
|
594
628
|
end
|
595
629
|
|
630
|
+
class EncryptionTypeMismatch < Aws::EmptyStructure
|
631
|
+
end
|
632
|
+
|
596
633
|
class EndEvent
|
597
634
|
attr_accessor event_type: untyped
|
598
635
|
SENSITIVE: []
|
@@ -606,6 +643,12 @@ module Aws::S3
|
|
606
643
|
SENSITIVE: []
|
607
644
|
end
|
608
645
|
|
646
|
+
class ErrorDetails
|
647
|
+
attr_accessor error_code: ::String
|
648
|
+
attr_accessor error_message: ::String
|
649
|
+
SENSITIVE: []
|
650
|
+
end
|
651
|
+
|
609
652
|
class ErrorDocument
|
610
653
|
attr_accessor key: ::String
|
611
654
|
SENSITIVE: []
|
@@ -709,6 +752,7 @@ module Aws::S3
|
|
709
752
|
|
710
753
|
class GetBucketLifecycleConfigurationOutput
|
711
754
|
attr_accessor rules: ::Array[Types::LifecycleRule]
|
755
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
712
756
|
SENSITIVE: []
|
713
757
|
end
|
714
758
|
|
@@ -730,7 +774,7 @@ module Aws::S3
|
|
730
774
|
end
|
731
775
|
|
732
776
|
class GetBucketLocationOutput
|
733
|
-
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")
|
734
778
|
SENSITIVE: []
|
735
779
|
end
|
736
780
|
|
@@ -751,6 +795,24 @@ module Aws::S3
|
|
751
795
|
SENSITIVE: []
|
752
796
|
end
|
753
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
|
+
|
754
816
|
class GetBucketMetricsConfigurationOutput
|
755
817
|
attr_accessor metrics_configuration: Types::MetricsConfiguration
|
756
818
|
SENSITIVE: []
|
@@ -951,8 +1013,10 @@ module Aws::S3
|
|
951
1013
|
attr_accessor etag: ::String
|
952
1014
|
attr_accessor checksum_crc32: ::String
|
953
1015
|
attr_accessor checksum_crc32c: ::String
|
1016
|
+
attr_accessor checksum_crc64nvme: ::String
|
954
1017
|
attr_accessor checksum_sha1: ::String
|
955
1018
|
attr_accessor checksum_sha256: ::String
|
1019
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
956
1020
|
attr_accessor missing_meta: ::Integer
|
957
1021
|
attr_accessor version_id: ::String
|
958
1022
|
attr_accessor cache_control: ::String
|
@@ -1081,7 +1145,7 @@ module Aws::S3
|
|
1081
1145
|
end
|
1082
1146
|
|
1083
1147
|
class HeadBucketOutput
|
1084
|
-
attr_accessor bucket_location_type: ("AvailabilityZone")
|
1148
|
+
attr_accessor bucket_location_type: ("AvailabilityZone" | "LocalZone")
|
1085
1149
|
attr_accessor bucket_location_name: ::String
|
1086
1150
|
attr_accessor bucket_region: ::String
|
1087
1151
|
attr_accessor access_point_alias: bool
|
@@ -1104,8 +1168,10 @@ module Aws::S3
|
|
1104
1168
|
attr_accessor content_length: ::Integer
|
1105
1169
|
attr_accessor checksum_crc32: ::String
|
1106
1170
|
attr_accessor checksum_crc32c: ::String
|
1171
|
+
attr_accessor checksum_crc64nvme: ::String
|
1107
1172
|
attr_accessor checksum_sha1: ::String
|
1108
1173
|
attr_accessor checksum_sha256: ::String
|
1174
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
1109
1175
|
attr_accessor etag: ::String
|
1110
1176
|
attr_accessor missing_meta: ::Integer
|
1111
1177
|
attr_accessor version_id: ::String
|
@@ -1114,6 +1180,7 @@ module Aws::S3
|
|
1114
1180
|
attr_accessor content_encoding: ::String
|
1115
1181
|
attr_accessor content_language: ::String
|
1116
1182
|
attr_accessor content_type: ::String
|
1183
|
+
attr_accessor content_range: ::String
|
1117
1184
|
attr_accessor expires: ::Time
|
1118
1185
|
attr_accessor expires_string: ::String
|
1119
1186
|
attr_accessor website_redirect_location: ::String
|
@@ -1204,6 +1271,12 @@ module Aws::S3
|
|
1204
1271
|
SENSITIVE: []
|
1205
1272
|
end
|
1206
1273
|
|
1274
|
+
class InvalidRequest < Aws::EmptyStructure
|
1275
|
+
end
|
1276
|
+
|
1277
|
+
class InvalidWriteOffset < Aws::EmptyStructure
|
1278
|
+
end
|
1279
|
+
|
1207
1280
|
class InventoryConfiguration
|
1208
1281
|
attr_accessor destination: Types::InventoryDestination
|
1209
1282
|
attr_accessor is_enabled: bool
|
@@ -1368,12 +1441,15 @@ module Aws::S3
|
|
1368
1441
|
attr_accessor buckets: ::Array[Types::Bucket]
|
1369
1442
|
attr_accessor owner: Types::Owner
|
1370
1443
|
attr_accessor continuation_token: ::String
|
1444
|
+
attr_accessor prefix: ::String
|
1371
1445
|
SENSITIVE: []
|
1372
1446
|
end
|
1373
1447
|
|
1374
1448
|
class ListBucketsRequest
|
1375
1449
|
attr_accessor max_buckets: ::Integer
|
1376
1450
|
attr_accessor continuation_token: ::String
|
1451
|
+
attr_accessor prefix: ::String
|
1452
|
+
attr_accessor bucket_region: ::String
|
1377
1453
|
SENSITIVE: []
|
1378
1454
|
end
|
1379
1455
|
|
@@ -1526,7 +1602,8 @@ module Aws::S3
|
|
1526
1602
|
attr_accessor owner: Types::Owner
|
1527
1603
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1528
1604
|
attr_accessor request_charged: ("requester")
|
1529
|
-
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")
|
1530
1607
|
SENSITIVE: []
|
1531
1608
|
end
|
1532
1609
|
|
@@ -1545,7 +1622,7 @@ module Aws::S3
|
|
1545
1622
|
end
|
1546
1623
|
|
1547
1624
|
class LocationInfo
|
1548
|
-
attr_accessor type: ("AvailabilityZone")
|
1625
|
+
attr_accessor type: ("AvailabilityZone" | "LocalZone")
|
1549
1626
|
attr_accessor name: ::String
|
1550
1627
|
SENSITIVE: []
|
1551
1628
|
end
|
@@ -1564,6 +1641,16 @@ module Aws::S3
|
|
1564
1641
|
SENSITIVE: []
|
1565
1642
|
end
|
1566
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
|
+
|
1567
1654
|
class Metrics
|
1568
1655
|
attr_accessor status: ("Enabled" | "Disabled")
|
1569
1656
|
attr_accessor event_threshold: Types::ReplicationTimeValue
|
@@ -1598,7 +1685,8 @@ module Aws::S3
|
|
1598
1685
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1599
1686
|
attr_accessor owner: Types::Owner
|
1600
1687
|
attr_accessor initiator: Types::Initiator
|
1601
|
-
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")
|
1602
1690
|
SENSITIVE: []
|
1603
1691
|
end
|
1604
1692
|
|
@@ -1648,7 +1736,8 @@ module Aws::S3
|
|
1648
1736
|
attr_accessor key: ::String
|
1649
1737
|
attr_accessor last_modified: ::Time
|
1650
1738
|
attr_accessor etag: ::String
|
1651
|
-
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")
|
1652
1741
|
attr_accessor size: ::Integer
|
1653
1742
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "GLACIER" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
1654
1743
|
attr_accessor owner: Types::Owner
|
@@ -1662,6 +1751,9 @@ module Aws::S3
|
|
1662
1751
|
class ObjectIdentifier
|
1663
1752
|
attr_accessor key: ::String
|
1664
1753
|
attr_accessor version_id: ::String
|
1754
|
+
attr_accessor etag: ::String
|
1755
|
+
attr_accessor last_modified_time: ::Time
|
1756
|
+
attr_accessor size: ::Integer
|
1665
1757
|
SENSITIVE: []
|
1666
1758
|
end
|
1667
1759
|
|
@@ -1695,6 +1787,7 @@ module Aws::S3
|
|
1695
1787
|
attr_accessor size: ::Integer
|
1696
1788
|
attr_accessor checksum_crc32: ::String
|
1697
1789
|
attr_accessor checksum_crc32c: ::String
|
1790
|
+
attr_accessor checksum_crc64nvme: ::String
|
1698
1791
|
attr_accessor checksum_sha1: ::String
|
1699
1792
|
attr_accessor checksum_sha256: ::String
|
1700
1793
|
SENSITIVE: []
|
@@ -1702,7 +1795,8 @@ module Aws::S3
|
|
1702
1795
|
|
1703
1796
|
class ObjectVersion
|
1704
1797
|
attr_accessor etag: ::String
|
1705
|
-
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")
|
1706
1800
|
attr_accessor size: ::Integer
|
1707
1801
|
attr_accessor storage_class: ("STANDARD")
|
1708
1802
|
attr_accessor key: ::String
|
@@ -1751,6 +1845,7 @@ module Aws::S3
|
|
1751
1845
|
attr_accessor size: ::Integer
|
1752
1846
|
attr_accessor checksum_crc32: ::String
|
1753
1847
|
attr_accessor checksum_crc32c: ::String
|
1848
|
+
attr_accessor checksum_crc64nvme: ::String
|
1754
1849
|
attr_accessor checksum_sha1: ::String
|
1755
1850
|
attr_accessor checksum_sha256: ::String
|
1756
1851
|
SENSITIVE: []
|
@@ -1791,7 +1886,7 @@ module Aws::S3
|
|
1791
1886
|
attr_accessor bucket: ::String
|
1792
1887
|
attr_accessor accelerate_configuration: Types::AccelerateConfiguration
|
1793
1888
|
attr_accessor expected_bucket_owner: ::String
|
1794
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1889
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1795
1890
|
SENSITIVE: []
|
1796
1891
|
end
|
1797
1892
|
|
@@ -1800,7 +1895,7 @@ module Aws::S3
|
|
1800
1895
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
1801
1896
|
attr_accessor bucket: ::String
|
1802
1897
|
attr_accessor content_md5: ::String
|
1803
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1898
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1804
1899
|
attr_accessor grant_full_control: ::String
|
1805
1900
|
attr_accessor grant_read: ::String
|
1806
1901
|
attr_accessor grant_read_acp: ::String
|
@@ -1822,7 +1917,7 @@ module Aws::S3
|
|
1822
1917
|
attr_accessor bucket: ::String
|
1823
1918
|
attr_accessor cors_configuration: Types::CORSConfiguration
|
1824
1919
|
attr_accessor content_md5: ::String
|
1825
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1920
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1826
1921
|
attr_accessor expected_bucket_owner: ::String
|
1827
1922
|
SENSITIVE: []
|
1828
1923
|
end
|
@@ -1830,7 +1925,7 @@ module Aws::S3
|
|
1830
1925
|
class PutBucketEncryptionRequest
|
1831
1926
|
attr_accessor bucket: ::String
|
1832
1927
|
attr_accessor content_md5: ::String
|
1833
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1928
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1834
1929
|
attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
|
1835
1930
|
attr_accessor expected_bucket_owner: ::String
|
1836
1931
|
SENSITIVE: []
|
@@ -1851,18 +1946,24 @@ module Aws::S3
|
|
1851
1946
|
SENSITIVE: []
|
1852
1947
|
end
|
1853
1948
|
|
1949
|
+
class PutBucketLifecycleConfigurationOutput
|
1950
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
1951
|
+
SENSITIVE: []
|
1952
|
+
end
|
1953
|
+
|
1854
1954
|
class PutBucketLifecycleConfigurationRequest
|
1855
1955
|
attr_accessor bucket: ::String
|
1856
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1956
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1857
1957
|
attr_accessor lifecycle_configuration: Types::BucketLifecycleConfiguration
|
1858
1958
|
attr_accessor expected_bucket_owner: ::String
|
1959
|
+
attr_accessor transition_default_minimum_object_size: ("varies_by_storage_class" | "all_storage_classes_128K")
|
1859
1960
|
SENSITIVE: []
|
1860
1961
|
end
|
1861
1962
|
|
1862
1963
|
class PutBucketLifecycleRequest
|
1863
1964
|
attr_accessor bucket: ::String
|
1864
1965
|
attr_accessor content_md5: ::String
|
1865
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1966
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1866
1967
|
attr_accessor lifecycle_configuration: Types::LifecycleConfiguration
|
1867
1968
|
attr_accessor expected_bucket_owner: ::String
|
1868
1969
|
SENSITIVE: []
|
@@ -1872,7 +1973,7 @@ module Aws::S3
|
|
1872
1973
|
attr_accessor bucket: ::String
|
1873
1974
|
attr_accessor bucket_logging_status: Types::BucketLoggingStatus
|
1874
1975
|
attr_accessor content_md5: ::String
|
1875
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
1976
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1876
1977
|
attr_accessor expected_bucket_owner: ::String
|
1877
1978
|
SENSITIVE: []
|
1878
1979
|
end
|
@@ -1896,7 +1997,7 @@ module Aws::S3
|
|
1896
1997
|
class PutBucketNotificationRequest
|
1897
1998
|
attr_accessor bucket: ::String
|
1898
1999
|
attr_accessor content_md5: ::String
|
1899
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2000
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1900
2001
|
attr_accessor notification_configuration: Types::NotificationConfigurationDeprecated
|
1901
2002
|
attr_accessor expected_bucket_owner: ::String
|
1902
2003
|
SENSITIVE: []
|
@@ -1913,7 +2014,7 @@ module Aws::S3
|
|
1913
2014
|
class PutBucketPolicyRequest
|
1914
2015
|
attr_accessor bucket: ::String
|
1915
2016
|
attr_accessor content_md5: ::String
|
1916
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2017
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1917
2018
|
attr_accessor confirm_remove_self_bucket_access: bool
|
1918
2019
|
attr_accessor policy: ::IO
|
1919
2020
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1923,7 +2024,7 @@ module Aws::S3
|
|
1923
2024
|
class PutBucketReplicationRequest
|
1924
2025
|
attr_accessor bucket: ::String
|
1925
2026
|
attr_accessor content_md5: ::String
|
1926
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2027
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1927
2028
|
attr_accessor replication_configuration: Types::ReplicationConfiguration
|
1928
2029
|
attr_accessor token: ::String
|
1929
2030
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1933,7 +2034,7 @@ module Aws::S3
|
|
1933
2034
|
class PutBucketRequestPaymentRequest
|
1934
2035
|
attr_accessor bucket: ::String
|
1935
2036
|
attr_accessor content_md5: ::String
|
1936
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2037
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1937
2038
|
attr_accessor request_payment_configuration: Types::RequestPaymentConfiguration
|
1938
2039
|
attr_accessor expected_bucket_owner: ::String
|
1939
2040
|
SENSITIVE: []
|
@@ -1942,7 +2043,7 @@ module Aws::S3
|
|
1942
2043
|
class PutBucketTaggingRequest
|
1943
2044
|
attr_accessor bucket: ::String
|
1944
2045
|
attr_accessor content_md5: ::String
|
1945
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2046
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1946
2047
|
attr_accessor tagging: Types::Tagging
|
1947
2048
|
attr_accessor expected_bucket_owner: ::String
|
1948
2049
|
SENSITIVE: []
|
@@ -1951,7 +2052,7 @@ module Aws::S3
|
|
1951
2052
|
class PutBucketVersioningRequest
|
1952
2053
|
attr_accessor bucket: ::String
|
1953
2054
|
attr_accessor content_md5: ::String
|
1954
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2055
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1955
2056
|
attr_accessor mfa: ::String
|
1956
2057
|
attr_accessor versioning_configuration: Types::VersioningConfiguration
|
1957
2058
|
attr_accessor expected_bucket_owner: ::String
|
@@ -1961,7 +2062,7 @@ module Aws::S3
|
|
1961
2062
|
class PutBucketWebsiteRequest
|
1962
2063
|
attr_accessor bucket: ::String
|
1963
2064
|
attr_accessor content_md5: ::String
|
1964
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2065
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1965
2066
|
attr_accessor website_configuration: Types::WebsiteConfiguration
|
1966
2067
|
attr_accessor expected_bucket_owner: ::String
|
1967
2068
|
SENSITIVE: []
|
@@ -1977,7 +2078,7 @@ module Aws::S3
|
|
1977
2078
|
attr_accessor access_control_policy: Types::AccessControlPolicy
|
1978
2079
|
attr_accessor bucket: ::String
|
1979
2080
|
attr_accessor content_md5: ::String
|
1980
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2081
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
1981
2082
|
attr_accessor grant_full_control: ::String
|
1982
2083
|
attr_accessor grant_read: ::String
|
1983
2084
|
attr_accessor grant_read_acp: ::String
|
@@ -2002,7 +2103,7 @@ module Aws::S3
|
|
2002
2103
|
attr_accessor request_payer: ("requester")
|
2003
2104
|
attr_accessor version_id: ::String
|
2004
2105
|
attr_accessor content_md5: ::String
|
2005
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2106
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2006
2107
|
attr_accessor expected_bucket_owner: ::String
|
2007
2108
|
SENSITIVE: []
|
2008
2109
|
end
|
@@ -2018,7 +2119,7 @@ module Aws::S3
|
|
2018
2119
|
attr_accessor request_payer: ("requester")
|
2019
2120
|
attr_accessor token: ::String
|
2020
2121
|
attr_accessor content_md5: ::String
|
2021
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2122
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2022
2123
|
attr_accessor expected_bucket_owner: ::String
|
2023
2124
|
SENSITIVE: []
|
2024
2125
|
end
|
@@ -2028,8 +2129,10 @@ module Aws::S3
|
|
2028
2129
|
attr_accessor etag: ::String
|
2029
2130
|
attr_accessor checksum_crc32: ::String
|
2030
2131
|
attr_accessor checksum_crc32c: ::String
|
2132
|
+
attr_accessor checksum_crc64nvme: ::String
|
2031
2133
|
attr_accessor checksum_sha1: ::String
|
2032
2134
|
attr_accessor checksum_sha256: ::String
|
2135
|
+
attr_accessor checksum_type: ("COMPOSITE" | "FULL_OBJECT")
|
2033
2136
|
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2034
2137
|
attr_accessor version_id: ::String
|
2035
2138
|
attr_accessor sse_customer_algorithm: ::String
|
@@ -2037,6 +2140,7 @@ module Aws::S3
|
|
2037
2140
|
attr_accessor ssekms_key_id: ::String
|
2038
2141
|
attr_accessor ssekms_encryption_context: ::String
|
2039
2142
|
attr_accessor bucket_key_enabled: bool
|
2143
|
+
attr_accessor size: ::Integer
|
2040
2144
|
attr_accessor request_charged: ("requester")
|
2041
2145
|
SENSITIVE: [:ssekms_key_id, :ssekms_encryption_context]
|
2042
2146
|
end
|
@@ -2052,18 +2156,21 @@ module Aws::S3
|
|
2052
2156
|
attr_accessor content_length: ::Integer
|
2053
2157
|
attr_accessor content_md5: ::String
|
2054
2158
|
attr_accessor content_type: ::String
|
2055
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2159
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2056
2160
|
attr_accessor checksum_crc32: ::String
|
2057
2161
|
attr_accessor checksum_crc32c: ::String
|
2162
|
+
attr_accessor checksum_crc64nvme: ::String
|
2058
2163
|
attr_accessor checksum_sha1: ::String
|
2059
2164
|
attr_accessor checksum_sha256: ::String
|
2060
2165
|
attr_accessor expires: ::Time
|
2166
|
+
attr_accessor if_match: ::String
|
2061
2167
|
attr_accessor if_none_match: ::String
|
2062
2168
|
attr_accessor grant_full_control: ::String
|
2063
2169
|
attr_accessor grant_read: ::String
|
2064
2170
|
attr_accessor grant_read_acp: ::String
|
2065
2171
|
attr_accessor grant_write_acp: ::String
|
2066
2172
|
attr_accessor key: ::String
|
2173
|
+
attr_accessor write_offset_bytes: ::Integer
|
2067
2174
|
attr_accessor metadata: ::Hash[::String, ::String]
|
2068
2175
|
attr_accessor server_side_encryption: ("AES256" | "aws:kms" | "aws:kms:dsse")
|
2069
2176
|
attr_accessor storage_class: ("STANDARD" | "REDUCED_REDUNDANCY" | "STANDARD_IA" | "ONEZONE_IA" | "INTELLIGENT_TIERING" | "GLACIER" | "DEEP_ARCHIVE" | "OUTPOSTS" | "GLACIER_IR" | "SNOW" | "EXPRESS_ONEZONE")
|
@@ -2096,7 +2203,7 @@ module Aws::S3
|
|
2096
2203
|
attr_accessor version_id: ::String
|
2097
2204
|
attr_accessor bypass_governance_retention: bool
|
2098
2205
|
attr_accessor content_md5: ::String
|
2099
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2206
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2100
2207
|
attr_accessor expected_bucket_owner: ::String
|
2101
2208
|
SENSITIVE: []
|
2102
2209
|
end
|
@@ -2111,7 +2218,7 @@ module Aws::S3
|
|
2111
2218
|
attr_accessor key: ::String
|
2112
2219
|
attr_accessor version_id: ::String
|
2113
2220
|
attr_accessor content_md5: ::String
|
2114
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2221
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2115
2222
|
attr_accessor tagging: Types::Tagging
|
2116
2223
|
attr_accessor expected_bucket_owner: ::String
|
2117
2224
|
attr_accessor request_payer: ("requester")
|
@@ -2121,7 +2228,7 @@ module Aws::S3
|
|
2121
2228
|
class PutPublicAccessBlockRequest
|
2122
2229
|
attr_accessor bucket: ::String
|
2123
2230
|
attr_accessor content_md5: ::String
|
2124
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2231
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2125
2232
|
attr_accessor public_access_block_configuration: Types::PublicAccessBlockConfiguration
|
2126
2233
|
attr_accessor expected_bucket_owner: ::String
|
2127
2234
|
SENSITIVE: []
|
@@ -2234,7 +2341,7 @@ module Aws::S3
|
|
2234
2341
|
attr_accessor version_id: ::String
|
2235
2342
|
attr_accessor restore_request: Types::RestoreRequest
|
2236
2343
|
attr_accessor request_payer: ("requester")
|
2237
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2344
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2238
2345
|
attr_accessor expected_bucket_owner: ::String
|
2239
2346
|
SENSITIVE: []
|
2240
2347
|
end
|
@@ -2291,6 +2398,20 @@ module Aws::S3
|
|
2291
2398
|
SENSITIVE: []
|
2292
2399
|
end
|
2293
2400
|
|
2401
|
+
class S3TablesDestination
|
2402
|
+
attr_accessor table_bucket_arn: ::String
|
2403
|
+
attr_accessor table_name: ::String
|
2404
|
+
SENSITIVE: []
|
2405
|
+
end
|
2406
|
+
|
2407
|
+
class S3TablesDestinationResult
|
2408
|
+
attr_accessor table_bucket_arn: ::String
|
2409
|
+
attr_accessor table_name: ::String
|
2410
|
+
attr_accessor table_arn: ::String
|
2411
|
+
attr_accessor table_namespace: ::String
|
2412
|
+
SENSITIVE: []
|
2413
|
+
end
|
2414
|
+
|
2294
2415
|
class SSEKMS
|
2295
2416
|
attr_accessor key_id: ::String
|
2296
2417
|
SENSITIVE: [:key_id]
|
@@ -2426,6 +2547,9 @@ module Aws::S3
|
|
2426
2547
|
SENSITIVE: []
|
2427
2548
|
end
|
2428
2549
|
|
2550
|
+
class TooManyParts < Aws::EmptyStructure
|
2551
|
+
end
|
2552
|
+
|
2429
2553
|
class TopicConfiguration
|
2430
2554
|
attr_accessor id: ::String
|
2431
2555
|
attr_accessor topic_arn: ::String
|
@@ -2489,6 +2613,7 @@ module Aws::S3
|
|
2489
2613
|
attr_accessor etag: ::String
|
2490
2614
|
attr_accessor checksum_crc32: ::String
|
2491
2615
|
attr_accessor checksum_crc32c: ::String
|
2616
|
+
attr_accessor checksum_crc64nvme: ::String
|
2492
2617
|
attr_accessor checksum_sha1: ::String
|
2493
2618
|
attr_accessor checksum_sha256: ::String
|
2494
2619
|
attr_accessor sse_customer_algorithm: ::String
|
@@ -2504,9 +2629,10 @@ module Aws::S3
|
|
2504
2629
|
attr_accessor bucket: ::String
|
2505
2630
|
attr_accessor content_length: ::Integer
|
2506
2631
|
attr_accessor content_md5: ::String
|
2507
|
-
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256")
|
2632
|
+
attr_accessor checksum_algorithm: ("CRC32" | "CRC32C" | "SHA1" | "SHA256" | "CRC64NVME")
|
2508
2633
|
attr_accessor checksum_crc32: ::String
|
2509
2634
|
attr_accessor checksum_crc32c: ::String
|
2635
|
+
attr_accessor checksum_crc64nvme: ::String
|
2510
2636
|
attr_accessor checksum_sha1: ::String
|
2511
2637
|
attr_accessor checksum_sha256: ::String
|
2512
2638
|
attr_accessor key: ::String
|
@@ -2551,6 +2677,7 @@ module Aws::S3
|
|
2551
2677
|
attr_accessor content_type: ::String
|
2552
2678
|
attr_accessor checksum_crc32: ::String
|
2553
2679
|
attr_accessor checksum_crc32c: ::String
|
2680
|
+
attr_accessor checksum_crc64nvme: ::String
|
2554
2681
|
attr_accessor checksum_sha1: ::String
|
2555
2682
|
attr_accessor checksum_sha256: ::String
|
2556
2683
|
attr_accessor delete_marker: bool
|