Values.ExecuteSqlRequestSourceThe request parameters represent the input of a request to run one or more SQL statements.
type nonrec t = {dbClusterOrInstanceArn : Arn.t;The ARN of the Aurora Serverless DB cluster.
*)awsSecretStoreArn : Arn.t;The Amazon Resource Name (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.
*)sqlStatements : SqlStatement.t;One or more SQL statements to run on the DB cluster. You can separate SQL statements from each other with a semicolon (;). Any valid SQL statement is permitted, including data definition, data manipulation, and commit statements.
*)database : DbName.t option;The name of the database.
*)schema : DbName.t option;The name of the database schema.
*)}val make :
?database:??? ->
?schema:??? ->
dbClusterOrInstanceArn:Arn.t ->
awsSecretStoreArn:Arn.t ->
sqlStatements:SqlStatement.t ->
unit ->
t