Module Values.ExecuteSqlRequestSource

The request parameters represent the input of a request to run one or more SQL statements.

Sourcetype nonrec t = {
  1. dbClusterOrInstanceArn : Arn.t;
    (*

    The ARN of the Aurora Serverless DB cluster.

    *)
  2. 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.

    *)
  3. 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.

    *)
  4. database : DbName.t option;
    (*

    The name of the database.

    *)
  5. schema : DbName.t option;
    (*

    The name of the database schema.

    *)
}
Sourceval context_ : string
Sourceval make : ?database:??? -> ?schema:??? -> dbClusterOrInstanceArn:Arn.t -> awsSecretStoreArn:Arn.t -> sqlStatements:SqlStatement.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Arn.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t