0.0.12 • Published 11 months ago

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

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
11 months 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

11 months ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago

0.0.0

2 years ago