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

ExecuteStatementInput

import type { ExecuteStatementInput } from "https://aws-api.deno.dev/v0.3/services/redshiftdata.ts?docs=full";
interface ExecuteStatementInput {
ClusterIdentifier?: string | null;
Database: string;
DbUser?: string | null;
Parameters?: SqlParameter[] | null;
SecretArn?: string | null;
Sql: string;
StatementName?: string | null;
WithEvent?: boolean | null;
}

§Properties

§
ClusterIdentifier?: string | null
[src]

The cluster identifier. This parameter is required when connecting to a cluster and authenticating using either Secrets Manager or temporary credentials.

§
Database: string
[src]

The name of the database. This parameter is required when authenticating using either Secrets Manager or temporary credentials.

§
DbUser?: string | null
[src]

The database user name. This parameter is required when connecting to a cluster and authenticating using temporary credentials.

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

The parameters for the SQL statement.

§
SecretArn?: string | null
[src]

The name or ARN of the secret that enables access to the database. This parameter is required when authenticating using Secrets Manager.

§
Sql: string
[src]

The SQL statement text to run.

§
StatementName?: string | null
[src]

The name of the SQL statement. You can name the SQL statement when you create it to identify the query.

§
WithEvent?: boolean | null
[src]

A value that indicates whether to send an event to the Amazon EventBridge event bus after the SQL statement runs.