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

StatementOutput

import type { StatementOutput } from "https://aws-api.deno.dev/v0.4/services/glue.ts?docs=full";

The code execution output in JSON format.

interface StatementOutput {
Data?: StatementOutputData | null;
ErrorName?: string | null;
ErrorValue?: string | null;
ExecutionCount?: number | null;
Status?: StatementState | null;
Traceback?: string[] | null;
}

§Properties

§

The code execution output.

§
ErrorName?: string | null
[src]

The name of the error in the output.

§
ErrorValue?: string | null
[src]

The error value of the output.

§
ExecutionCount?: number | null
[src]

The execution count of the output.

§
Status?: StatementState | null
[src]

The status of the code execution output.

§
Traceback?: string[] | null
[src]

The traceback of the output.