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

PostgresqlProfile

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

PostgreSQL database profile.

interface PostgresqlProfile {
database?: string;
hostname?: string;
password?: string;
port?: number;
username?: string;
}

§Properties

§
database?: string
[src]

Required. Database for the PostgreSQL connection.

§
hostname?: string
[src]

Required. Hostname for the PostgreSQL connection.

§
password?: string
[src]

Required. Password for the PostgreSQL connection.

§
port?: number
[src]

Port for the PostgreSQL connection, default value is 5432.

§
username?: string
[src]

Required. Username for the PostgreSQL connection.