UNPKG

@cdklabs/cdk-appflow

Version:

*Note:* this library is currently in technical preview.

8 lines (7 loc) 300 B
import { Construct } from "constructs"; import { FlowBase, FlowProps, IFlow } from "./flow-base"; export interface OnDemandFlowProps extends FlowProps { } export declare class OnDemandFlow extends FlowBase implements IFlow { constructor(scope: Construct, id: string, props: OnDemandFlowProps); }