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

SendCommandResult

import type { SendCommandResult } from "https://aws-api.deno.dev/v0.3/services/qldbsession.ts?docs=full";
interface SendCommandResult {
AbortTransaction?: AbortTransactionResult | null;
CommitTransaction?: CommitTransactionResult | null;
EndSession?: EndSessionResult | null;
ExecuteStatement?: ExecuteStatementResult | null;
FetchPage?: FetchPageResult | null;
StartSession?: StartSessionResult | null;
StartTransaction?: StartTransactionResult | null;
}

§Properties

§
AbortTransaction?: AbortTransactionResult | null
[src]

Contains the details of the aborted transaction.

§
CommitTransaction?: CommitTransactionResult | null
[src]

Contains the details of the committed transaction.

§
EndSession?: EndSessionResult | null
[src]

Contains the details of the ended session.

§
ExecuteStatement?: ExecuteStatementResult | null
[src]

Contains the details of the executed statement.

§
FetchPage?: FetchPageResult | null
[src]

Contains the details of the fetched page.

§
StartSession?: StartSessionResult | null
[src]

Contains the details of the started session that includes a session token. This SessionToken is required for every subsequent command that is issued during the current session.

§
StartTransaction?: StartTransactionResult | null
[src]

Contains the details of the started transaction.