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

QueryPlanningContext

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

A structure containing information about the query plan.

interface QueryPlanningContext {
CatalogId?: string | null;
DatabaseName: string;
QueryAsOfTime?: Date | number | null;
QueryParameters?: {
[key: string]: string | null | undefined;
}
| null;
TransactionId?: string | null;
}

§Properties

§
CatalogId?: string | null
[src]

The ID of the Data Catalog where the partition in question resides. If none is provided, the Amazon Web Services account ID is used by default.

§
DatabaseName: string
[src]

The database containing the table.

§
QueryAsOfTime?: Date | number | null
[src]

The time as of when to read the table contents. If not set, the most recent transaction commit time will be used. Cannot be specified along with TransactionId.

§
QueryParameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

A map consisting of key-value pairs.

§
TransactionId?: string | null
[src]

The transaction ID at which to read the table contents. If this transaction is not committed, the read will be treated as part of that transaction and will see its writes. If this transaction has aborted, an error will be returned. If not set, defaults to the most recent committed transaction. Cannot be specified along with QueryAsOfTime.