0.19.0 • Published 5 months ago

@ez4/aws-notification v0.19.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

EZ4: AWS Notification

It provides all the components to manage simple notification services on AWS.

Getting started

Install

npm install @ez4/aws-notification -D

Permission

Ensure the user performing deployments has the permissions below:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "NotificationManagement",
      "Effect": "Allow",
      "Action": [
        "sns:CreateTopic",
        "sns:DeleteTopic",
        "sns:Subscribe",
        "sns:Unsubscribe",
        "sns:TagResource",
        "sns:UntagResource"
      ],
      "Resource": ["arn:aws:sns:*:{account-id}:{prefix}-*"]
    }
  ]
}

License

MIT License