UNPKG

@cdklabs/cdk-appflow

Version:

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

14 lines (13 loc) 475 B
import * as lambda from 'aws-cdk-lib/aws-lambda'; import { Construct } from 'constructs'; /** * Props for FlowTimeUpdaterFunction */ export interface FlowTimeUpdaterFunctionProps extends lambda.FunctionOptions { } /** * An AWS Lambda function which executes src/core/flows/flow-time-updater/flow-time-updater. */ export declare class FlowTimeUpdaterFunction extends lambda.Function { constructor(scope: Construct, id: string, props?: FlowTimeUpdaterFunctionProps); }