README
cdk-events-notify
cdk-events-notify is an AWS CDK Construct Library that provides you know who login in your aws console.
Why
Itβs just a small feature at the moment, Provides you to trigger Lambda Function push notifications to Line Notify or Slack when you discover Console Login event or swith role event through Cloudtrail.
Welcome to contribute another event notify case you want.
Overview

Now support
- Line Notify
- Slack (webhooks)
You need enable one Management events in your account.
You need Line Notify access token
more see line notify docs

Install
Use the npm dist tag to opt in CDKv1 or CDKv2:
// for CDKv2
npm install cdk-events-notify
or
npm install cdk-events-notify@latest
// for CDKv1
npm install cdk-events-notify@cdkv1
π‘π‘π‘ please click here, if you are using aws-cdk v1.x.x version.π‘π‘π‘
Usage
import * as cdk from 'aws-cdk-lib';
import { EventNotify } from 'cdk-events-notify';
const app = new cdk.App();
const stack = new cdk.Stack(app, 'integ-stack', { env });
new EventNotify(stack, 'LineEventNotify', { lineNotifyToken: process.env.LINE_NOTIFY_TOKEN });
To deploy
cdk deploy
To destroy
cdk destroy
Finally
- line

- slack

More about EventBridge and Lambda
Note: Event Bridge can not cross region , if you console sign in not the cdk-events-notify region will not get the evnet in cloudtrail see this docs
