Interface PostgreSQLConnectionSettings

interface PostgreSQLConnectionSettings {
    connection_retry_count?: number;
    database: string;
    host?: string;
    implicit_apply_schemas?: boolean;
    is_default?: boolean;
    logger?: Logger | "console" | "color-console" | "empty";
    password?: string | Promise<string>;
    port?: number;
    redis_cache?: RedisCacheSettings;
    user?: string | Promise<string>;
}

Hierarchy

  • ConnectionSettings
  • AdapterSettingsPostgreSQL
    • PostgreSQLConnectionSettings

Properties

connection_retry_count?: number
database: string
host?: string
implicit_apply_schemas?: boolean
is_default?: boolean
logger?: Logger | "console" | "color-console" | "empty"
password?: string | Promise<string>
port?: number
redis_cache?: RedisCacheSettings
user?: string | Promise<string>

Generated using TypeDoc