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

PrepareQueryRequest

import type { PrepareQueryRequest } from "https://aws-api.deno.dev/v0.3/services/timestreamquery.ts?docs=full";
interface PrepareQueryRequest {
QueryString: string;
ValidateOnly?: boolean | null;
}

§Properties

§
QueryString: string
[src]

The Timestream query string that you want to use as a prepared statement. Parameter names can be specified in the query string @ character followed by an identifier.

§
ValidateOnly?: boolean | null
[src]

By setting this value to true, Timestream will only validate that the query string is a valid Timestream query, and not store the prepared query for later use.