RDS instances with DeletionProtection property is not present or set to false. Make sure that RDS instances with DeletionProtection property sets to true.
1Resources:
2 ExampleRDS:
3 Type: "AWS::RDS::DBInstance"
4 Properties:
5 DBInstanceClass: !Ref DBInstanceType
6 SourceDBInstanceIdentifier: !Ref SourceDBInstanceIdentifier
7 SourceRegion: !Ref SourceRegion
8 KmsKeyId: !Ref MyKey
9 MonitoringInterval: 60
10 MultiAZ: true
11 StorageEncrypted: true
12 # Noncompliant: `DeletionProtection` is set to false
13 DeletionProtection: false