
Tag: cdk
23 posts found
Showing 23 of 23 posts







Monitor multiple resources using a single CloudWatch Alarm (with CDK)
Introduction CloudWatch Metrics Insights query alarms (aka “multi-metric alarms”) let one alarm evaluate many _individual_ resources. You write a Metrics Insights SQL query (with GROUP BY), and...

Use cdk-notifier to check CloudFormation predeployment validations in pull requests
Overview This post builds on the previous example on using cdk-notifier to compare changes in pull requests. It demonstrates how to extend the workflow by adding CloudFormation change set validation...




Cleanup Resources from Ephemeral Stacks in AWS CDK with Aspects and Property Injectors
Overview When using AWS CDK, Aspects allow us to apply a RemovalPolicy.DESTROY to all resources within an ephemeral stack. This works well for many resources but isn't sufficient for S3 buckets that...


Configure AWS CloudWatch Application Signals Transaction Search with CDK
Update 2025-06-18: Provisioning with CloudFormation Recently, AWS added native CloudFormation support for provisioning Application Signals Transaction Search. You can find the official documentation...

AWS Application Signals for Node.js Lambda with CDK
Update 2025-06-18: Provisioning with CloudFormation It can now also be configured using CloudFormation....

Run vs code on a private AWS ec2 instance without ssh (with AWS CDK examples)
Use case You have a private EC2 instance in your AWS account and you want to edit files outside of the terminal or just with the help of vs code and vs code extensions on this instance without using...

Consideration about cdk-notifier and Tags
Use case As described here Use cdk-notifier to compare changes in pull requests, the cdk-notifier displays the diff between the feature branch and the main branch. In case of using tags in the CDK...

Use cdk-notifier to compare changes in pull requests
Use case Especially in serverless environments, features will be created with ephemeral stacks, which will be deleted after merging to the main branch. Comparing the cdk diff between the feature...


Example how to trigger a Dynamodb export and create an Athena saved query with CDK
In this post is described how to get the data to analyze the changes in the dynamodb data. This post describes how to (semi) automate the export of the dynamodb table data and analyze it with Athena....

Example how to visualize DynamoDB item changes with Quicksight (S3 source) created with CDK
This post is about how to visualize the DynamoDb data changes with Quicksight. It's an extension of this post, which describes how to analyze the data with Athena. The setting for creating the...

Example how to create Athena saved queries with CDK
In this post is a example of a Athena query to get the the current data of the DynamoDb table. This post explains how to provide this query with CDK as a saved query in Athena to have the query...

Example how to analyze DynamoDB item changes with Kinesis and Athena created with CDK
This is the same like described here, but instead of terraform it's build with CDK. To bootstrap the project run this command: cdk init app --language typescript Further information are here All...