Interface CloudFormationValidatePluginProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CloudFormationValidatePluginProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-08-13T16:19:58.239Z") @Stability(Stable) public interface CloudFormationValidatePluginProps extends software.amazon.jsii.JsiiSerializable
Properties for configuring the CloudFormationValidatePlugin.

Example:

 // Rules text, read from disk perhaps
 String myRules;
 App app = new App();
 Validations.of(app).addPlugins(CloudFormationValidatePlugin.Builder.create()
         .guardRules(List.of(ValidationRuleSource.builder()
                 .name("My rules")
                 .content(myRules)
                 .build()))
         .build());