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

CreateNamedQueryInput

import type { CreateNamedQueryInput } from "https://aws-api.deno.dev/v0.3/services/athena.ts?docs=full";
interface CreateNamedQueryInput {
ClientRequestToken?: string | null;
Database: string;
Description?: string | null;
Name: string;
QueryString: string;
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 CreateNamedQuery 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.

§
Database: string
[src]

The database to which the query belongs.

§
Description?: string | null
[src]

The query description.

§
Name: string
[src]

The query name.

§
QueryString: string
[src]

The contents of the query with all query statements.

§
WorkGroup?: string | null
[src]

The name of the workgroup in which the named query is being created.