UNPKG

756 BTypeScriptView Raw
1import { FileJob } from "./fileJob";
2import { File } from "./file";
3import { Environment } from "./../environment/environment";
4export declare class S3FileJob extends FileJob {
5 protected file: File;
6 private _bucket;
7 private _key;
8 private _eTag;
9 constructor(e: Environment, basename: any);
10 /**
11 * Get remote bucket location.
12 * @returns {string}
13 */
14 /**
15 * Set remote bucket location.
16 * @param bucket
17 */
18 bucket: string;
19 /**
20 * Get remote key
21 * @returns {string}
22 */
23 /**
24 * Set remote key.
25 * @param key
26 */
27 key: string;
28 /**
29 * Get remote ETag
30 * @returns {string}
31 */
32 /**
33 * Set remote ETag
34 * @param eTag
35 */
36 eTag: string;
37}