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

QueryExecutionContext

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

The database and data catalog context in which the query execution occurs.

interface QueryExecutionContext {
Catalog?: string | null;
Database?: string | null;
}

§Properties

§
Catalog?: string | null
[src]

The name of the data catalog used in the query execution.

§
Database?: string | null
[src]

The name of the database used in the query execution. The database must exist in the catalog.