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

PipeTargetRedshiftDataParameters

import type { PipeTargetRedshiftDataParameters } from "https://aws-api.deno.dev/v0.4/services/pipes.ts?docs=full";

These are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the Amazon Redshift Data API ExecuteStatement.

interface PipeTargetRedshiftDataParameters {
Database: string;
DbUser?: string | null;
SecretManagerArn?: string | null;
Sqls: string[];
StatementName?: string | null;
WithEvent?: boolean | null;
}

§Properties

§
Database: string
[src]

The name of the database. Required when authenticating using temporary credentials.

§
DbUser?: string | null
[src]

The database user name. Required when authenticating using temporary credentials.

§
SecretManagerArn?: string | null
[src]

The name or ARN of the secret that enables access to the database. Required when authenticating using SageMaker.

§
Sqls: 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]

Indicates whether to send an event back to EventBridge after the SQL statement runs.