Table of Contents

Class RedshiftDataParameters

Namespace
Amazon.EventBridge.Model
Assembly
AWSSDK.EventBridge.dll

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

public class RedshiftDataParameters
Inheritance
RedshiftDataParameters
Inherited Members

Constructors

RedshiftDataParameters()

public RedshiftDataParameters()

Properties

Database

Gets and sets the property Database.

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

public string Database { get; set; }

Property Value

string

DbUser

Gets and sets the property DbUser.

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

public string DbUser { get; set; }

Property Value

string

SecretManagerArn

Gets and sets the property SecretManagerArn.

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

public string SecretManagerArn { get; set; }

Property Value

string

Sql

Gets and sets the property Sql.

The SQL statement text to run.

public string Sql { get; set; }

Property Value

string

Sqls

Gets and sets the property Sqls.

One or more SQL statements to run. The SQL statements are run as a single transaction. They run serially in the order of the array. Subsequent SQL statements don't start until the previous statement in the array completes. If any SQL statement fails, then because they are run as one transaction, all work is rolled back.

public List<string> Sqls { get; set; }

Property Value

List<string>

StatementName

Gets and sets the property StatementName.

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

public string StatementName { get; set; }

Property Value

string

WithEvent

Gets and sets the property WithEvent.

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

public bool WithEvent { get; set; }

Property Value

bool