Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CommitTransactionResult

import type { CommitTransactionResult } from "https://aws-api.deno.dev/v0.3/services/qldbsession.ts?docs=full";

Contains the details of the committed transaction.

interface CommitTransactionResult {
CommitDigest?: Uint8Array | null;
ConsumedIOs?: IOUsage | null;
TimingInformation?: TimingInformation | null;
TransactionId?: string | null;
}

§Properties

§
CommitDigest?: Uint8Array | null
[src]

The commit digest of the committed transaction.

§
ConsumedIOs?: IOUsage | null
[src]

Contains metrics about the number of I/O requests that were consumed.

§
TimingInformation?: TimingInformation | null
[src]

Contains server-side performance information for the command.

§
TransactionId?: string | null
[src]

The transaction ID of the committed transaction.