cdk-sns-notify
Project description
cdk-sns-notify
A CDK construct library to send line notify or discord webhook
Sample
import * as sns from "@aws-cdk/aws-sns";
import * as cloudwatch from "@aws-cdk/aws-cloudwatch";
import * as cw_actions from "@aws-cdk/aws-cloudwatch-actions";
import { SnsNotify } from "cdk-sns-notify";
const topic = new sns.Topic(stack, "Topic");
const metric = new cloudwatch.Metric({
namespace: "AWS/EC2",
metricName: "CPUUtilization",
dimensions: {
InstanceId: instance.instanceId,
},
period: cdk.Duration.minutes(1),
});
const alarm = new cloudwatch.Alarm(stack, "Alarm", {
metric,
threshold: 5,
evaluationPeriods: 1,
});
alarm.addAlarmAction(new cw_actions.SnsAction(topic));
const snsLineNotify = new SnsNotify(stack, "sns-line-notify", {
lineNotifyToken: "lineNotifyToken",
});
topic.addSubscription(snsLineNotify.lambdaSubscription);
Deploy
cdk deploy
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cdk_sns_notify-0.0.948.tar.gz
(27.5 kB
view details)
Built Distribution
File details
Details for the file cdk_sns_notify-0.0.948.tar.gz
.
File metadata
- Download URL: cdk_sns_notify-0.0.948.tar.gz
- Upload date:
- Size: 27.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34951e13e1cb82e78ade2c87c0505eedd4d9b91b5956afc7dfe76ce5c8142dc1 |
|
MD5 | c43ecfb1796f45e411c435a5b11b7a8b |
|
BLAKE2b-256 | 0b0a451223fedef66cd675c51bfbbdd3a08e4cefce9b93c0278eced01622a7b1 |
File details
Details for the file cdk_sns_notify-0.0.948-py3-none-any.whl
.
File metadata
- Download URL: cdk_sns_notify-0.0.948-py3-none-any.whl
- Upload date:
- Size: 26.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70920e50b7c287e2cc119efd5cfb250a90221e538d7dd539b1f6da08503fdcf0 |
|
MD5 | 9ddeaadcb90d74a06b9672bcaa3130ce |
|
BLAKE2b-256 | d31a1230388cf816685c29b16196e51b9bfa3458d861bd18c751e134ab8a7365 |