UNPKG

@cdklabs/cdk-appflow

Version:

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

11 lines (10 loc) 324 B
import { ConnectorType } from "../connectors/connector-type"; /** * An interface representing a vertex, i.e. a source or a destination of an AppFlow flow */ export interface IVertex { /** * The AppFlow type of the connector that this source is implemented for */ readonly connectorType: ConnectorType; }