@openhi/constructs 0.0.119 → 0.0.120

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.
package/lib/index.js CHANGED
@@ -1698,6 +1698,17 @@ var DataStoreHistoricalArchive = class extends import_constructs4.Construct {
1698
1698
  autoDeleteObjects: props.removalPolicy === import_aws_cdk_lib6.RemovalPolicy.DESTROY,
1699
1699
  versioned: false
1700
1700
  }) : void 0;
1701
+ if (putEventsFailureDlqBucket) {
1702
+ const appName = OpenHiService.of(this).appName;
1703
+ import_aws_cdk_lib6.Tags.of(putEventsFailureDlqBucket).add(
1704
+ openHiTagKey(appName, "resource-role"),
1705
+ "dead-letter-queue"
1706
+ );
1707
+ import_aws_cdk_lib6.Tags.of(putEventsFailureDlqBucket).add(
1708
+ openHiTagKey(appName, "pipeline"),
1709
+ "data-replication"
1710
+ );
1711
+ }
1701
1712
  this.putEventsFailureDlqBucket = putEventsFailureDlqBucket;
1702
1713
  this.transformFunction = new import_aws_lambda_nodejs4.NodejsFunction(this, "FirehoseTransform", {
1703
1714
  entry: resolveHandlerEntry4(__dirname),