Values.BatchExecuteStatementRequestSourceThe request parameters represent the input of a SQL statement over an array of data.
type nonrec t = {resourceArn : Arn.t;The Amazon Resource Name (ARN) of the Aurora Serverless DB cluster.
*)secretArn : Arn.t;The ARN of the secret that enables access to the DB cluster. Enter the database user name and password for the credentials in the secret. For information about creating the secret, see Create a database secret.
*)sql : SqlStatement.t;The SQL statement to run. Don't include a semicolon (;) at the end of the SQL statement.
*)database : DbName.t option;The name of the database.
*)schema : DbName.t option;The name of the database schema. Currently, the schema parameter isn't supported.
*)parameterSets : SqlParameterSets.t option;The parameter set for the batch operation. The SQL statement is executed as many times as the number of parameter sets provided. To execute a SQL statement with no parameters, use one of the following options: Specify one or more empty parameter sets. Use the ExecuteStatement operation instead of the BatchExecuteStatement operation. Array parameters are not supported.
*)transactionId : Id.t option;The identifier of a transaction that was started by using the BeginTransaction operation. Specify the transaction ID of the transaction that you want to include the SQL statement in. If the SQL statement is not part of a transaction, don't set this parameter.
*)}val make :
?database:??? ->
?schema:??? ->
?parameterSets:??? ->
?transactionId:??? ->
resourceArn:Arn.t ->
secretArn:Arn.t ->
sql:SqlStatement.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `List of
[> `Structure of
(string
* [> `Enum of string
| `String of ParameterName.t
| `Structure of (string * Awso.Botodata.value) list ])
list ]
list ]
list
| `String of Arn.t ])
list ]