reveal-sdk-node
Version:
RevealBI Node.js SDK
20 lines (19 loc) • 697 B
TypeScript
import { RVDataSourceItem } from "../AbstractClasses/RVDataSourceItem";
import { RVS3DataSource } from "./RVS3DataSource";
import { nullableString } from "../types";
/** Amazon S3 data source item. */
export declare class RVS3DataSourceItem extends RVDataSourceItem {
constructor(dataSource: RVS3DataSource);
/** @hidden */
constructor(json: any);
/** @hidden */
toJson(): any;
private _path;
/** S3 path for the file represented by this item. For example: 's3://my-bucket/path/to/file.csv' */
get path(): nullableString;
set path(value: nullableString);
/** @hidden */
getType(): string;
/** @hidden */
_getWrapper(): any;
}