aws-sdk-s3 1.177.0 → 1.183.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +32 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3/bucket.rb +43 -31
- 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 +2 -2
- data/lib/aws-sdk-s3/bucket_lifecycle_configuration.rb +3 -3
- 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 +938 -734
- data/lib/aws-sdk-s3/client_api.rb +35 -2
- data/lib/aws-sdk-s3/endpoint_provider.rb +369 -281
- 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 +50 -6
- data/lib/aws-sdk-s3/multipart_upload_part.rb +50 -34
- data/lib/aws-sdk-s3/object.rb +159 -113
- data/lib/aws-sdk-s3/object_acl.rb +4 -4
- data/lib/aws-sdk-s3/object_summary.rb +107 -83
- data/lib/aws-sdk-s3/object_version.rb +18 -14
- 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/md5s.rb +10 -71
- data/lib/aws-sdk-s3/presigner.rb +4 -5
- data/lib/aws-sdk-s3/resource.rb +1 -1
- data/lib/aws-sdk-s3/types.rb +1248 -811
- data/lib/aws-sdk-s3.rb +1 -1
- data/sig/bucket.rbs +4 -3
- 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 +53 -31
- data/sig/multipart_upload.rbs +8 -1
- data/sig/multipart_upload_part.rbs +5 -1
- data/sig/object.rbs +16 -5
- data/sig/object_acl.rbs +1 -1
- data/sig/object_summary.rbs +11 -6
- data/sig/object_version.rbs +5 -2
- data/sig/resource.rbs +3 -1
- data/sig/types.rbs +64 -34
- metadata +5 -5
- data/lib/aws-sdk-s3/plugins/skip_whole_multipart_get_checksums.rb +0 -31
@@ -28,18 +28,10 @@ module Aws
|
|
28
28
|
@chunk_size = options[:chunk_size]
|
29
29
|
@params = {
|
30
30
|
bucket: options[:bucket],
|
31
|
-
key: options[:key]
|
31
|
+
key: options[:key]
|
32
32
|
}
|
33
33
|
@params[:version_id] = options[:version_id] if options[:version_id]
|
34
|
-
|
35
|
-
# checksum_mode only supports the value "ENABLED"
|
36
|
-
# falsey values (false/nil) or "DISABLED" should be considered
|
37
|
-
# disabled and the api parameter should be unset.
|
38
|
-
if (checksum_mode = options.fetch(:checksum_mode, 'ENABLED'))
|
39
|
-
@params[:checksum_mode] = checksum_mode unless checksum_mode.upcase == 'DISABLED'
|
40
|
-
end
|
41
34
|
@on_checksum_validated = options[:on_checksum_validated]
|
42
|
-
|
43
35
|
@progress_callback = options[:progress_callback]
|
44
36
|
|
45
37
|
validate!
|
@@ -67,11 +59,6 @@ module Aws
|
|
67
59
|
private
|
68
60
|
|
69
61
|
def validate!
|
70
|
-
if @on_checksum_validated && @params[:checksum_mode] != 'ENABLED'
|
71
|
-
raise ArgumentError, "You must set checksum_mode: 'ENABLED' " +
|
72
|
-
"when providing a on_checksum_validated callback"
|
73
|
-
end
|
74
|
-
|
75
62
|
if @on_checksum_validated && !@on_checksum_validated.respond_to?(:call)
|
76
63
|
raise ArgumentError, 'on_checksum_validated must be callable'
|
77
64
|
end
|
@@ -164,9 +151,7 @@ module Aws
|
|
164
151
|
|
165
152
|
def download_in_threads(pending, total_size)
|
166
153
|
threads = []
|
167
|
-
if @progress_callback
|
168
|
-
progress = MultipartProgress.new(pending, total_size, @progress_callback)
|
169
|
-
end
|
154
|
+
progress = MultipartProgress.new(pending, total_size, @progress_callback) if @progress_callback
|
170
155
|
@thread_count.times do
|
171
156
|
thread = Thread.new do
|
172
157
|
begin
|
@@ -208,9 +193,7 @@ module Aws
|
|
208
193
|
|
209
194
|
return resp unless @on_checksum_validated
|
210
195
|
|
211
|
-
if resp.checksum_validated
|
212
|
-
@on_checksum_validated.call(resp.checksum_validated, resp)
|
213
|
-
end
|
196
|
+
@on_checksum_validated.call(resp.checksum_validated, resp) if resp.checksum_validated
|
214
197
|
|
215
198
|
resp
|
216
199
|
end
|
@@ -251,7 +234,7 @@ module Aws
|
|
251
234
|
end
|
252
235
|
|
253
236
|
# @api private
|
254
|
-
class
|
237
|
+
class MultipartProgress
|
255
238
|
def initialize(parts, total_size, progress_callback)
|
256
239
|
@bytes_received = Array.new(parts.size, 0)
|
257
240
|
@part_sizes = parts.map(&:size)
|
@@ -16,7 +16,6 @@ module Aws
|
|
16
16
|
|
17
17
|
THREAD_COUNT = 10
|
18
18
|
|
19
|
-
# @api private
|
20
19
|
CREATE_OPTIONS = Set.new(
|
21
20
|
Client.api.operation(:create_multipart_upload).input.shape.member_names
|
22
21
|
)
|
@@ -25,11 +24,16 @@ module Aws
|
|
25
24
|
Client.api.operation(:complete_multipart_upload).input.shape.member_names
|
26
25
|
)
|
27
26
|
|
28
|
-
# @api private
|
29
27
|
UPLOAD_PART_OPTIONS = Set.new(
|
30
28
|
Client.api.operation(:upload_part).input.shape.member_names
|
31
29
|
)
|
32
30
|
|
31
|
+
CHECKSUM_KEYS = Set.new(
|
32
|
+
Client.api.operation(:upload_part).input.shape.members.map do |n, s|
|
33
|
+
n if s.location == 'header' && s.location_name.start_with?('x-amz-checksum-')
|
34
|
+
end.compact
|
35
|
+
)
|
36
|
+
|
33
37
|
# @option options [Client] :client
|
34
38
|
# @option options [Integer] :thread_count (THREAD_COUNT)
|
35
39
|
def initialize(options = {})
|
@@ -121,15 +125,27 @@ module Aws
|
|
121
125
|
parts
|
122
126
|
end
|
123
127
|
|
128
|
+
def checksum_key?(key)
|
129
|
+
CHECKSUM_KEYS.include?(key)
|
130
|
+
end
|
131
|
+
|
132
|
+
def has_checksum_key?(keys)
|
133
|
+
keys.any? { |key| checksum_key?(key) }
|
134
|
+
end
|
135
|
+
|
124
136
|
def create_opts(options)
|
125
|
-
|
137
|
+
opts = { checksum_algorithm: Aws::Plugins::ChecksumAlgorithm::DEFAULT_CHECKSUM }
|
138
|
+
opts[:checksum_type] = 'FULL_OBJECT' if has_checksum_key?(options.keys)
|
139
|
+
CREATE_OPTIONS.inject(opts) do |hash, key|
|
126
140
|
hash[key] = options[key] if options.key?(key)
|
127
141
|
hash
|
128
142
|
end
|
129
143
|
end
|
130
144
|
|
131
145
|
def complete_opts(options)
|
132
|
-
|
146
|
+
opts = {}
|
147
|
+
opts[:checksum_type] = 'FULL_OBJECT' if has_checksum_key?(options.keys)
|
148
|
+
COMPLETE_OPTIONS.inject(opts) do |hash, key|
|
133
149
|
hash[key] = options[key] if options.key?(key)
|
134
150
|
hash
|
135
151
|
end
|
@@ -137,7 +153,10 @@ module Aws
|
|
137
153
|
|
138
154
|
def upload_part_opts(options)
|
139
155
|
UPLOAD_PART_OPTIONS.inject({}) do |hash, key|
|
140
|
-
|
156
|
+
if options.key?(key)
|
157
|
+
# don't pass through checksum calculations
|
158
|
+
hash[key] = options[key] unless checksum_key?(key)
|
159
|
+
end
|
141
160
|
hash
|
142
161
|
end
|
143
162
|
end
|
@@ -159,14 +178,13 @@ module Aws
|
|
159
178
|
end
|
160
179
|
resp = @client.upload_part(part)
|
161
180
|
part[:body].close
|
162
|
-
completed_part = {
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
181
|
+
completed_part = {
|
182
|
+
etag: resp.etag,
|
183
|
+
part_number: part[:part_number]
|
184
|
+
}
|
185
|
+
algorithm = resp.context.params[:checksum_algorithm]
|
186
|
+
k = "checksum_#{algorithm.downcase}".to_sym
|
187
|
+
completed_part[k] = resp.send(k)
|
170
188
|
completed.push(completed_part)
|
171
189
|
end
|
172
190
|
nil
|
@@ -70,8 +70,10 @@ module Aws::S3
|
|
70
70
|
|
71
71
|
# The class of storage used to store the object.
|
72
72
|
#
|
73
|
-
# <note markdown="1"> **Directory buckets** -
|
74
|
-
#
|
73
|
+
# <note markdown="1"> **Directory buckets** - Directory buckets only support
|
74
|
+
# `EXPRESS_ONEZONE` (the S3 Express One Zone storage class) in
|
75
|
+
# Availability Zones and `ONEZONE_IA` (the S3 One Zone-Infrequent Access
|
76
|
+
# storage class) in Dedicated Local Zones.
|
75
77
|
#
|
76
78
|
# </note>
|
77
79
|
# @return [String]
|
@@ -103,6 +105,18 @@ module Aws::S3
|
|
103
105
|
data[:checksum_algorithm]
|
104
106
|
end
|
105
107
|
|
108
|
+
# The checksum type that is used to calculate the object’s checksum
|
109
|
+
# value. For more information, see [Checking object integrity][1] in the
|
110
|
+
# *Amazon S3 User Guide*.
|
111
|
+
#
|
112
|
+
#
|
113
|
+
#
|
114
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
115
|
+
# @return [String]
|
116
|
+
def checksum_type
|
117
|
+
data[:checksum_type]
|
118
|
+
end
|
119
|
+
|
106
120
|
# @!endgroup
|
107
121
|
|
108
122
|
# @return [Client]
|
@@ -295,6 +309,7 @@ module Aws::S3
|
|
295
309
|
# etag: "ETag",
|
296
310
|
# checksum_crc32: "ChecksumCRC32",
|
297
311
|
# checksum_crc32c: "ChecksumCRC32C",
|
312
|
+
# checksum_crc64nvme: "ChecksumCRC64NVME",
|
298
313
|
# checksum_sha1: "ChecksumSHA1",
|
299
314
|
# checksum_sha256: "ChecksumSHA256",
|
300
315
|
# part_number: 1,
|
@@ -303,8 +318,11 @@ module Aws::S3
|
|
303
318
|
# },
|
304
319
|
# checksum_crc32: "ChecksumCRC32",
|
305
320
|
# checksum_crc32c: "ChecksumCRC32C",
|
321
|
+
# checksum_crc64nvme: "ChecksumCRC64NVME",
|
306
322
|
# checksum_sha1: "ChecksumSHA1",
|
307
323
|
# checksum_sha256: "ChecksumSHA256",
|
324
|
+
# checksum_type: "COMPOSITE", # accepts COMPOSITE, FULL_OBJECT
|
325
|
+
# mpu_object_size: 1,
|
308
326
|
# request_payer: "requester", # accepts requester
|
309
327
|
# expected_bucket_owner: "AccountId",
|
310
328
|
# if_match: "IfMatch",
|
@@ -319,7 +337,7 @@ module Aws::S3
|
|
319
337
|
# @option options [String] :checksum_crc32
|
320
338
|
# This header can be used as a data integrity check to verify that the
|
321
339
|
# data received is the same data that was originally sent. This header
|
322
|
-
# specifies the
|
340
|
+
# specifies the Base64 encoded, 32-bit `CRC32` checksum of the object.
|
323
341
|
# For more information, see [Checking object integrity][1] in the
|
324
342
|
# *Amazon S3 User Guide*.
|
325
343
|
#
|
@@ -329,17 +347,28 @@ module Aws::S3
|
|
329
347
|
# @option options [String] :checksum_crc32c
|
330
348
|
# This header can be used as a data integrity check to verify that the
|
331
349
|
# data received is the same data that was originally sent. This header
|
332
|
-
# specifies the
|
350
|
+
# specifies the Base64 encoded, 32-bit `CRC32C` checksum of the object.
|
333
351
|
# For more information, see [Checking object integrity][1] in the
|
334
352
|
# *Amazon S3 User Guide*.
|
335
353
|
#
|
336
354
|
#
|
337
355
|
#
|
338
356
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
357
|
+
# @option options [String] :checksum_crc64nvme
|
358
|
+
# This header can be used as a data integrity check to verify that the
|
359
|
+
# data received is the same data that was originally sent. This header
|
360
|
+
# specifies the Base64 encoded, 64-bit `CRC64NVME` checksum of the
|
361
|
+
# object. The `CRC64NVME` checksum is always a full object checksum. For
|
362
|
+
# more information, see [Checking object integrity in the Amazon S3 User
|
363
|
+
# Guide][1].
|
364
|
+
#
|
365
|
+
#
|
366
|
+
#
|
367
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
339
368
|
# @option options [String] :checksum_sha1
|
340
369
|
# This header can be used as a data integrity check to verify that the
|
341
370
|
# data received is the same data that was originally sent. This header
|
342
|
-
# specifies the
|
371
|
+
# specifies the Base64 encoded, 160-bit `SHA1` digest of the object. For
|
343
372
|
# more information, see [Checking object integrity][1] in the *Amazon S3
|
344
373
|
# User Guide*.
|
345
374
|
#
|
@@ -349,13 +378,28 @@ module Aws::S3
|
|
349
378
|
# @option options [String] :checksum_sha256
|
350
379
|
# This header can be used as a data integrity check to verify that the
|
351
380
|
# data received is the same data that was originally sent. This header
|
352
|
-
# specifies the
|
381
|
+
# specifies the Base64 encoded, 256-bit `SHA256` digest of the object.
|
353
382
|
# For more information, see [Checking object integrity][1] in the
|
354
383
|
# *Amazon S3 User Guide*.
|
355
384
|
#
|
356
385
|
#
|
357
386
|
#
|
358
387
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
388
|
+
# @option options [String] :checksum_type
|
389
|
+
# This header specifies the checksum type of the object, which
|
390
|
+
# determines how part-level checksums are combined to create an
|
391
|
+
# object-level checksum for multipart objects. You can use this header
|
392
|
+
# as a data integrity check to verify that the checksum type that is
|
393
|
+
# received is the same checksum that was specified. If the checksum type
|
394
|
+
# doesn’t match the checksum type that was specified for the object
|
395
|
+
# during the `CreateMultipartUpload` request, it’ll result in a
|
396
|
+
# `BadDigest` error. For more information, see Checking object integrity
|
397
|
+
# in the Amazon S3 User Guide.
|
398
|
+
# @option options [Integer] :mpu_object_size
|
399
|
+
# The expected total object size of the multipart upload request. If
|
400
|
+
# there’s a mismatch between the specified object size value and the
|
401
|
+
# actual object size value, it results in an `HTTP 400 InvalidRequest`
|
402
|
+
# error.
|
359
403
|
# @option options [String] :request_payer
|
360
404
|
# Confirms that the requester knows that they will be charged for the
|
361
405
|
# request. Bucket owners need not specify this parameter in their
|
@@ -76,11 +76,10 @@ module Aws::S3
|
|
76
76
|
data[:size]
|
77
77
|
end
|
78
78
|
|
79
|
-
#
|
80
|
-
#
|
81
|
-
#
|
82
|
-
#
|
83
|
-
# *Amazon S3 User Guide*.
|
79
|
+
# The Base64 encoded, 32-bit `CRC32` checksum of the part. This checksum
|
80
|
+
# is present if the object was uploaded with the `CRC32` checksum
|
81
|
+
# algorithm. For more information, see [Checking object integrity][1] in
|
82
|
+
# the *Amazon S3 User Guide*.
|
84
83
|
#
|
85
84
|
#
|
86
85
|
#
|
@@ -90,45 +89,51 @@ module Aws::S3
|
|
90
89
|
data[:checksum_crc32]
|
91
90
|
end
|
92
91
|
|
93
|
-
# The
|
94
|
-
#
|
95
|
-
#
|
96
|
-
#
|
97
|
-
# Instead, it's a calculation based on the checksum values of each
|
98
|
-
# individual part. For more information about how checksums are
|
99
|
-
# calculated with multipart uploads, see [ Checking object integrity][1]
|
100
|
-
# in the *Amazon S3 User Guide*.
|
92
|
+
# The Base64 encoded, 32-bit `CRC32C` checksum of the part. This
|
93
|
+
# checksum is present if the object was uploaded with the `CRC32C`
|
94
|
+
# checksum algorithm. For more information, see [Checking object
|
95
|
+
# integrity][1] in the *Amazon S3 User Guide*.
|
101
96
|
#
|
102
97
|
#
|
103
98
|
#
|
104
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
99
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
105
100
|
# @return [String]
|
106
101
|
def checksum_crc32c
|
107
102
|
data[:checksum_crc32c]
|
108
103
|
end
|
109
104
|
|
110
|
-
# The
|
111
|
-
#
|
112
|
-
#
|
113
|
-
#
|
114
|
-
#
|
115
|
-
#
|
116
|
-
# multipart uploads, see [ Checking object integrity][1] in the *Amazon
|
117
|
-
# S3 User Guide*.
|
105
|
+
# The Base64 encoded, 64-bit `CRC64NVME` checksum of the part. This
|
106
|
+
# checksum is present if the multipart upload request was created with
|
107
|
+
# the `CRC64NVME` checksum algorithm, or if the object was uploaded
|
108
|
+
# without a checksum (and Amazon S3 added the default checksum,
|
109
|
+
# `CRC64NVME`, to the uploaded object). For more information, see
|
110
|
+
# [Checking object integrity][1] in the *Amazon S3 User Guide*.
|
118
111
|
#
|
119
112
|
#
|
120
113
|
#
|
121
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
114
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
115
|
+
# @return [String]
|
116
|
+
def checksum_crc64nvme
|
117
|
+
data[:checksum_crc64nvme]
|
118
|
+
end
|
119
|
+
|
120
|
+
# The Base64 encoded, 160-bit `SHA1` checksum of the part. This checksum
|
121
|
+
# is present if the object was uploaded with the `SHA1` checksum
|
122
|
+
# algorithm. For more information, see [Checking object integrity][1] in
|
123
|
+
# the *Amazon S3 User Guide*.
|
124
|
+
#
|
125
|
+
#
|
126
|
+
#
|
127
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
122
128
|
# @return [String]
|
123
129
|
def checksum_sha1
|
124
130
|
data[:checksum_sha1]
|
125
131
|
end
|
126
132
|
|
127
|
-
#
|
128
|
-
#
|
129
|
-
#
|
130
|
-
#
|
131
|
-
# *Amazon S3 User Guide*.
|
133
|
+
# The Base64 encoded, 256-bit `SHA256` checksum of the part. This
|
134
|
+
# checksum is present if the object was uploaded with the `SHA256`
|
135
|
+
# checksum algorithm. For more information, see [Checking object
|
136
|
+
# integrity][1] in the *Amazon S3 User Guide*.
|
132
137
|
#
|
133
138
|
#
|
134
139
|
#
|
@@ -512,9 +517,10 @@ module Aws::S3
|
|
512
517
|
# body: source_file,
|
513
518
|
# content_length: 1,
|
514
519
|
# content_md5: "ContentMD5",
|
515
|
-
# checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256
|
520
|
+
# checksum_algorithm: "CRC32", # accepts CRC32, CRC32C, SHA1, SHA256, CRC64NVME
|
516
521
|
# checksum_crc32: "ChecksumCRC32",
|
517
522
|
# checksum_crc32c: "ChecksumCRC32C",
|
523
|
+
# checksum_crc64nvme: "ChecksumCRC64NVME",
|
518
524
|
# checksum_sha1: "ChecksumSHA1",
|
519
525
|
# checksum_sha256: "ChecksumSHA256",
|
520
526
|
# sse_customer_algorithm: "SSECustomerAlgorithm",
|
@@ -530,7 +536,7 @@ module Aws::S3
|
|
530
536
|
# Size of the body in bytes. This parameter is useful when the size of
|
531
537
|
# the body cannot be determined automatically.
|
532
538
|
# @option options [String] :content_md5
|
533
|
-
# The
|
539
|
+
# The Base64 encoded 128-bit MD5 digest of the part data. This parameter
|
534
540
|
# is auto-populated when using the command from the CLI. This parameter
|
535
541
|
# is required if object lock parameters are specified.
|
536
542
|
#
|
@@ -558,7 +564,7 @@ module Aws::S3
|
|
558
564
|
# @option options [String] :checksum_crc32
|
559
565
|
# This header can be used as a data integrity check to verify that the
|
560
566
|
# data received is the same data that was originally sent. This header
|
561
|
-
# specifies the
|
567
|
+
# specifies the Base64 encoded, 32-bit `CRC32` checksum of the object.
|
562
568
|
# For more information, see [Checking object integrity][1] in the
|
563
569
|
# *Amazon S3 User Guide*.
|
564
570
|
#
|
@@ -568,7 +574,17 @@ module Aws::S3
|
|
568
574
|
# @option options [String] :checksum_crc32c
|
569
575
|
# This header can be used as a data integrity check to verify that the
|
570
576
|
# data received is the same data that was originally sent. This header
|
571
|
-
# specifies the
|
577
|
+
# specifies the Base64 encoded, 32-bit `CRC32C` checksum of the object.
|
578
|
+
# For more information, see [Checking object integrity][1] in the
|
579
|
+
# *Amazon S3 User Guide*.
|
580
|
+
#
|
581
|
+
#
|
582
|
+
#
|
583
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
|
584
|
+
# @option options [String] :checksum_crc64nvme
|
585
|
+
# This header can be used as a data integrity check to verify that the
|
586
|
+
# data received is the same data that was originally sent. This header
|
587
|
+
# specifies the Base64 encoded, 64-bit `CRC64NVME` checksum of the part.
|
572
588
|
# For more information, see [Checking object integrity][1] in the
|
573
589
|
# *Amazon S3 User Guide*.
|
574
590
|
#
|
@@ -578,7 +594,7 @@ module Aws::S3
|
|
578
594
|
# @option options [String] :checksum_sha1
|
579
595
|
# This header can be used as a data integrity check to verify that the
|
580
596
|
# data received is the same data that was originally sent. This header
|
581
|
-
# specifies the
|
597
|
+
# specifies the Base64 encoded, 160-bit `SHA1` digest of the object. For
|
582
598
|
# more information, see [Checking object integrity][1] in the *Amazon S3
|
583
599
|
# User Guide*.
|
584
600
|
#
|
@@ -588,7 +604,7 @@ module Aws::S3
|
|
588
604
|
# @option options [String] :checksum_sha256
|
589
605
|
# This header can be used as a data integrity check to verify that the
|
590
606
|
# data received is the same data that was originally sent. This header
|
591
|
-
# specifies the
|
607
|
+
# specifies the Base64 encoded, 256-bit `SHA256` digest of the object.
|
592
608
|
# For more information, see [Checking object integrity][1] in the
|
593
609
|
# *Amazon S3 User Guide*.
|
594
610
|
#
|