import { IntegrationExecutionHandler } from './execution'; import { IntegrationInvocationContext } from './invocation'; /** * The context of an invocation, extending the `IntegrationInvocationContext` to * provide an `IntegrationExecutionHandler`. */ export interface LambdaInvocationContext extends IntegrationInvocationContext { /** * The integration function that serves as the entry point of implementing * synchronization with the data provider. */ readonly executionHandler: IntegrationExecutionHandler; }