cdk-insights 1.38.0 → 1.40.1

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/README.md CHANGED
@@ -74,7 +74,7 @@ CDK Insights scans for real problems across **35+ AWS services**:
74
74
 
75
75
  | Category | Examples |
76
76
  |----------|---------|
77
- | **Security** | Public S3 buckets, wildcard IAM policies, unencrypted RDS/DynamoDB/SQS, open security groups, self-locking bucket and KMS key policies (Deny without root carveout) |
77
+ | **Security** | Public S3 buckets, wildcard IAM policies, unencrypted RDS/DynamoDB/SQS, open security groups, self-locking S3 bucket / KMS key / SQS queue / SNS topic policies (Deny without root carveout) |
78
78
  | **Cost** | Over-provisioned Lambda memory, missing S3 lifecycle policies, unused resources |
79
79
  | **Best Practices** | Missing CloudWatch alarms, no VPC flow logs, missing point-in-time recovery |
80
80
  | **Compliance** | Encryption at rest, logging enabled, backup configuration |
@@ -0,0 +1,2 @@
1
+ import type { AnalysisResults, CloudFormationStack, CreateFindingFunction, RuleContext } from '../../../../../types/analysis.types';
2
+ export declare const checkSNSTopicPolicySelfLockout: (template: CloudFormationStack, createFinding: CreateFindingFunction, ruleContext?: RuleContext) => AnalysisResults;
@@ -0,0 +1,2 @@
1
+ import type { AnalysisResults, CloudFormationStack, CreateFindingFunction, RuleContext } from '../../../../../types/analysis.types';
2
+ export declare const checkSQSQueuePolicySelfLockout: (template: CloudFormationStack, createFinding: CreateFindingFunction, ruleContext?: RuleContext) => AnalysisResults;