@cdklabs/cdk-appflow
Version:
*Note:* this library is currently in technical preview.
15 lines (14 loc) • 470 B
TypeScript
import { Schedule } from "aws-cdk-lib/aws-events";
import { Construct } from "constructs";
interface FlowTimeUpdaterProps {
readonly schedule: Schedule;
readonly startTime?: Date;
readonly endTime?: Date;
}
export declare class FlowTimeUpdater extends Construct {
readonly scheduleExpression: string;
readonly startTime?: number;
readonly endTime?: number;
constructor(scope: Construct, id: string, props: FlowTimeUpdaterProps);
}
export {};