Values.PipeTargetRedshiftDataParametersSourceThese are custom parameters to be used when the target is a Amazon Redshift cluster to invoke the Amazon Redshift Data API BatchExecuteStatement.
type nonrec t = {secretManagerArn : SecretManagerArnOrJsonPath.t option;The name or ARN of the secret that enables access to the database. Required when authenticating using Secrets Manager.
*)database : Database.t;The name of the database. Required when authenticating using temporary credentials.
*)dbUser : DbUser.t option;The database user name. Required when authenticating using temporary credentials.
*)statementName : StatementName.t option;The name of the SQL statement. You can name the SQL statement when you create it to identify the query.
*)withEvent : Boolean.t option;Indicates whether to send an event back to EventBridge after the SQL statement runs.
*)sqls : Sqls.t;The SQL statement text to run.
*)}val make :
?secretManagerArn:??? ->
?dbUser:??? ->
?statementName:??? ->
?withEvent:??? ->
database:Database.t ->
sqls:Sqls.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `List of [> `String of Sql.t ] list
| `String of SecretManagerArnOrJsonPath.t ])
list ]