Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ExecuteSqlRequest

import type { ExecuteSqlRequest } from "https://aws-api.deno.dev/v0.3/services/rdsdataservice.ts?docs=full";

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

interface ExecuteSqlRequest {
awsSecretStoreArn: string;
database?: string | null;
dbClusterOrInstanceArn: string;
schema?: string | null;
sqlStatements: string;
}

§Properties

§
awsSecretStoreArn: string
[src]

The Amazon Resource Name (ARN) of the secret that enables access to the DB cluster.

§
database?: string | null
[src]

The name of the database.

§
dbClusterOrInstanceArn: string
[src]

The ARN of the Aurora Serverless DB cluster.

§
schema?: string | null
[src]

The name of the database schema.

§
sqlStatements: string
[src]

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.