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

BatchExecuteStatementInput

import type { BatchExecuteStatementInput } from "https://aws-api.deno.dev/v0.3/services/redshiftdata.ts?docs=full";
interface BatchExecuteStatementInput {
ClusterIdentifier?: string | null;
Database: string;
DbUser?: string | null;
SecretArn?: string | null;
Sqls: 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.

§
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.

§
Sqls: string[]
[src]

One or more SQL statements to run.

§
StatementName?: string | null
[src]

The name of the SQL statements. You can name the SQL statements when you create them 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 statements run.