@gammarers/aws-sns-slack-message-lambda-subscription
Version:
This AWS CDK Construct is designed to post messages sent from an SNS topic to a Slack Webhook via a Lambda function.
14 lines (13 loc) • 457 B
TypeScript
import * as lambda from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
* Props for SendSlackMessageFunction
*/
export interface SendSlackMessageFunctionProps extends lambda.FunctionOptions {
}
/**
* An AWS Lambda function which executes src/funcs/send-slack-message.
*/
export declare class SendSlackMessageFunction extends lambda.Function {
constructor(scope: Construct, id: string, props?: SendSlackMessageFunctionProps);
}