import { Rule, CronOptions } from 'aws-cdk-lib/aws-events'; import { Construct } from 'constructs'; export interface FetchJobProps { readonly emailAddr: string; readonly sessionInitializationUrl: string; readonly startTime: CronOptions; readonly intervalInSeconds: number; readonly fetchCount: number; readonly indexOfRenditions?: number; } export declare class FetchJob extends Construct { rule: Rule; constructor(scope: Construct, id: string, { emailAddr, sessionInitializationUrl, startTime, intervalInSeconds, fetchCount, indexOfRenditions, }: FetchJobProps); }