Sha256: 7c26ab9b6bfc9589024987524673aa6550e7a3ceabe82f6662ae8ac668c844f0
Contents?: true
Size: 530 Bytes
Versions: 35
Compression:
Stored size: 530 Bytes
Contents
import {Service} from '../service'; export class GlacierCustomizations extends Service { /** * Computes the SHA-256 linear and tree hash checksums for a given * block of Buffer data. Pass the tree hash of the computed checksums * as the checksum input to the {completeMultipartUpload} when performing * a multi-part upload. */ computeChecksums(data: Buffer|string): GlacierComputeChecksumsOutput; } export interface GlacierComputeChecksumsOutput { linearHash: string; treeHash: string; }
Version data entries
35 entries across 35 versions & 1 rubygems