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

StatementData

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

The SQL statement to run.

interface StatementData {
CreatedAt?: Date | number | null;
Id: string;
IsBatchStatement?: boolean | null;
QueryParameters?: SqlParameter[] | null;
QueryString?: string | null;
QueryStrings?: string[] | null;
SecretArn?: string | null;
StatementName?: string | null;
Status?: StatusString | null;
UpdatedAt?: Date | number | null;
}

§Properties

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

The date and time (UTC) the statement was created.

§
Id: string
[src]

The SQL statement identifier. This value is a universally unique identifier (UUID) generated by Amazon Redshift Data API.

§
IsBatchStatement?: boolean | null
[src]

A value that indicates whether the statement is a batch query request.

§
QueryParameters?: SqlParameter[] | null
[src]

The parameters used in a SQL statement.

§
QueryString?: string | null
[src]

The SQL statement.

§
QueryStrings?: string[] | null
[src]

One or more SQL statements. Each query string in the array corresponds to one of the queries in a batch query request.

§
SecretArn?: string | null
[src]

The name or Amazon Resource Name (ARN) of the secret that enables access to the database.

§
StatementName?: string | null
[src]

The name of the SQL statement.

§
Status?: StatusString | null
[src]

The status of the SQL statement. An example is the that the SQL statement finished.

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

The date and time (UTC) that the statement metadata was last updated.