UNPKG

reveal-sdk-node

Version:

RevealBI Node.js SDK

23 lines (22 loc) 844 B
import { RVSqlBasedDataSource } from "../AbstractClasses/RVSqlBasedDataSource"; import { nullableString } from "../types"; /** Amazon Redshift data source, it adds the database name property to the base properties inherited from the abstract class RVSqlBasedDataSource. */ export declare class RVRedshiftDataSource extends RVSqlBasedDataSource { private _database; private _schema; constructor(); /** @hidden */ constructor(json: any); /** @hidden */ toJson(): any; /** @hidden */ getProviderKey(): string; /** Name of the database to connect to. */ get database(): nullableString; set database(value: nullableString); /** Name of the schema to use. */ get schema(): nullableString; set schema(value: nullableString); /** @hidden */ getType(): string; }