reveal-sdk-node
Version:
RevealBI Node.js SDK
29 lines (28 loc) • 838 B
TypeScript
import { RVDataSourceItem } from "../AbstractClasses/RVDataSourceItem";
import { RVAthenaDataSource } from "./RVAthenaDataSource";
import { nullableString } from "../types";
/**
* Amazon Athena data source item.
*/
export declare class RVAthenaDataSourceItem extends RVDataSourceItem {
/** @hidden */
constructor(json: any);
constructor(dataSource: RVAthenaDataSource);
/** @hidden */
toJson(): any;
private _table;
/**
* Table or view for this datasource item.
*/
get table(): nullableString;
set table(value: nullableString);
private _customQuery;
/** @hidden */
get customQuery(): nullableString;
/** @hidden */
set customQuery(value: nullableString);
/** @hidden */
getType(): string;
/** @hidden */
_getWrapper(): any;
}