@aligent/cdk-header-change-detection 1.5.0 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -353,6 +353,7 @@ const sendToSns = async (message: string) => {
353
353
  const publishInput: PublishInput = {
354
354
  TopicArn: TOPIC_ARN,
355
355
  Message: message,
356
+ Subject: "Security Header Change detected",
356
357
  };
357
358
  const publishCommand = new PublishCommand(publishInput);
358
359
  await SNS_CLIENT.send(publishCommand);
package/package.json CHANGED
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "name": "@aligent/cdk-header-change-detection",
3
- "version": "1.5.0",
4
3
  "main": "index.js",
5
4
  "license": "MIT",
6
5
  "homepage": "https://github.com/aligent/cdk-constructs/packages/header-change-detection-stack#readme",
@@ -31,5 +30,6 @@
31
30
  "aws-cdk-lib": "^2.113.0",
32
31
  "constructs": "^10.4.2"
33
32
  },
34
- "type": "commonjs"
33
+ "type": "commonjs",
34
+ "version": "1.6.0"
35
35
  }