amazon-qldb-kvs-nodejs
Version:
A helper module, simplifying basic interactions with Amazon Quantum Ledger Database for Node.js through a simple key-value store interface.
9 lines (8 loc) • 405 B
TypeScript
import { GetDigestCommandOutput, QLDB } from "@aws-sdk/client-qldb";
/**
* Get the digest of a ledger's journal.
* @param ledgerName Name of the ledger to operate on.
* @param qldbClient The QLDB control plane client to use.
* @returns Promise which fulfills with a GetDigestResponse.
*/
export declare function getLedgerDigest(ledgerName: string, qldbClient: QLDB): Promise<GetDigestCommandOutput>;