Method: Aws::S3::Types::ObjectPart#checksum_sha256
- Defined in:
- lib/aws-sdk-s3/types.rb
#checksum_sha256 ⇒ String
The Base64 encoded, 256-bit SHA256 checksum of the part. This checksum is present if the multipart upload request was created with the SHA256 checksum algorithm. For more information, see [Checking object integrity] in the *Amazon S3 User Guide*.
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/checking-object-integrity.html
13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 |
# File 'lib/aws-sdk-s3/types.rb', line 13840 class ObjectPart < Struct.new( :part_number, :size, :checksum_crc32, :checksum_crc32c, :checksum_crc64nvme, :checksum_sha1, :checksum_sha256) SENSITIVE = [] include Aws::Structure end |