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

MysqlProfile

import type { MysqlProfile } from "https://googleapis.deno.dev/v1/datastream:v1.ts";

MySQL database profile.

interface MysqlProfile {
hostname?: string;
password?: string;
port?: number;
sslConfig?: MysqlSslConfig;
username?: string;
}

§Properties

§
hostname?: string
[src]

Required. Hostname for the MySQL connection.

§
password?: string
[src]

Required. Input only. Password for the MySQL connection.

§
port?: number
[src]

Port for the MySQL connection, default value is 3306.

§

SSL configuration for the MySQL connection.

§
username?: string
[src]

Required. Username for the MySQL connection.