PipeTargetParametersRedshiftDataParameters

data class PipeTargetParametersRedshiftDataParameters(val database: String, val dbUser: String? = null, val secretManagerArn: String? = null, val sqls: List<String>, val statementName: String? = null, val withEvent: Boolean? = null)

Constructors

constructor(database: String, dbUser: String? = null, secretManagerArn: String? = null, sqls: List<String>, statementName: String? = null, withEvent: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard
val dbUser: String? = null

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

Link copied to clipboard

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

Link copied to clipboard

List of SQL statements text to run, each of maximum length of 100,000.

Link copied to clipboard
val statementName: String? = null

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

Link copied to clipboard
val withEvent: Boolean? = null

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