@wisegpt/awscdk-slack-event-bus
Version:
Exposes a Slack Events API Request URL that validates and sends all received events to an AWS Event Bus
14 lines (13 loc) • 438 B
TypeScript
import * as lambda from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
* Props for SlackHandlerFunction
*/
export interface SlackHandlerFunctionProps extends lambda.FunctionOptions {
}
/**
* An AWS Lambda function which executes src/lambdas/slack-handler.
*/
export declare class SlackHandlerFunction extends lambda.Function {
constructor(scope: Construct, id: string, props?: SlackHandlerFunctionProps);
}