UNPKG

@cdklabs/cdk-appflow

Version:

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

10 lines (9 loc) 278 B
import { CfnFlow } from "aws-cdk-lib/aws-appflow"; import { IVertex } from "./vertex"; import { IFlow } from "../flows"; /** * A destination of an AppFlow flow */ export interface IDestination extends IVertex { bind(scope: IFlow): CfnFlow.DestinationFlowConfigProperty; }