import { IntegrationInvocationConfig, IntegrationStepInvocationEvent } from '../types'; import { IntegrationStepExecutionResult } from '../types/step-functions'; /** * @param context AWS Lambda context, having the `awsRequestId` associated with * the invocation. In the case where an integration is implemented as * multiple steps, this will not be the same in constituent invocations. */ export default function executeIntegrationStep(invocationConfig: IntegrationInvocationConfig, event: IntegrationStepInvocationEvent, context: any): Promise;