0.0.12 • Published 2 years ago

@wheatstalk/cdk-sns-log-group-subscription v0.0.12

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
2 years ago

SNS Log Group Subscription

This AWS CDK construct library provides LogGroupSubscription, which subscribes a CloudWatch LogGroup to an SNS topic. Uses for this construct might include:

  • Logging AWS SES Notifications via SNS Topic
  • Debugging an application that publishes to an SNS Topic
  • Logging events not published other than to an SNS Topic

Example Usage

const topic = new aws_sns.Topic(stack, 'Topic');
const logGroup = new aws_logs.LogGroup(stack, 'LogGroup');

topic.addSubscription(
  new LogGroupSubscription({
    logGroup,
    logFormat: LogFormat.MESSAGE,
  }),
);
0.0.12

2 years ago

0.0.11

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago

0.0.0

3 years ago