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

StartQueryExecutionInput

import type { StartQueryExecutionInput } from "https://aws-api.deno.dev/v0.3/services/athena.ts?docs=full";
interface StartQueryExecutionInput {
ClientRequestToken?: string | null;
QueryExecutionContext?: QueryExecutionContext | null;
QueryString: string;
ResultConfiguration?: ResultConfiguration | null;
WorkGroup?: string | null;
}

§Properties

§
ClientRequestToken?: string | null
[src]

A unique case-sensitive string used to ensure the request to create the query is idempotent (executes only once). If another StartQueryExecution request is received, the same response is returned and another query is not created. If a parameter has changed, for example, the QueryString, an error is returned.

! IMPORTANT: ! This token is listed as not required because Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for users. ! If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.

§
QueryExecutionContext?: QueryExecutionContext | null
[src]

The database within which the query executes.

§
QueryString: string
[src]

The SQL query statements to be executed.

§
ResultConfiguration?: ResultConfiguration | null
[src]

Specifies information about where and how to save the results of the query execution. If the query runs in a workgroup, then workgroup's settings may override query settings. This affects the query results location. The workgroup settings override is specified in EnforceWorkGroupConfiguration (true/false) in the WorkGroupConfiguration. See "WorkGroupConfiguration$EnforceWorkGroupConfiguration".

§
WorkGroup?: string | null
[src]

The name of the workgroup in which the query is being started.