@go-to-k/cdkd 0.59.1 → 0.60.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.
Binary file
package/dist/index.js CHANGED
@@ -513,6 +513,32 @@ var FALLBACK_NAME_RULES = {
513
513
  nameProperty: "DBInstanceIdentifier",
514
514
  options: { maxLength: 63, lowercase: true }
515
515
  },
516
+ // DocumentDB — RDS-shaped API; same name constraints.
517
+ "AWS::DocDB::DBSubnetGroup": {
518
+ nameProperty: "DBSubnetGroupName",
519
+ options: { maxLength: 255, lowercase: true }
520
+ },
521
+ "AWS::DocDB::DBCluster": {
522
+ nameProperty: "DBClusterIdentifier",
523
+ options: { maxLength: 63, lowercase: true }
524
+ },
525
+ "AWS::DocDB::DBInstance": {
526
+ nameProperty: "DBInstanceIdentifier",
527
+ options: { maxLength: 63, lowercase: true }
528
+ },
529
+ // Neptune — RDS-shaped API; same name constraints.
530
+ "AWS::Neptune::DBSubnetGroup": {
531
+ nameProperty: "DBSubnetGroupName",
532
+ options: { maxLength: 255, lowercase: true }
533
+ },
534
+ "AWS::Neptune::DBCluster": {
535
+ nameProperty: "DBClusterIdentifier",
536
+ options: { maxLength: 63, lowercase: true }
537
+ },
538
+ "AWS::Neptune::DBInstance": {
539
+ nameProperty: "DBInstanceIdentifier",
540
+ options: { maxLength: 63, lowercase: true }
541
+ },
516
542
  "AWS::ElasticLoadBalancingV2::LoadBalancer": {
517
543
  nameProperty: "Name",
518
544
  options: { maxLength: 32 }