Interface PolicyValidationPluginReportBeta1

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:01.633Z") @Stability(Stable) public interface PolicyValidationPluginReportBeta1 extends software.amazon.jsii.JsiiSerializable
The report emitted by the plugin after evaluation.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 PolicyValidationPluginReportBeta1 policyValidationPluginReportBeta1 = PolicyValidationPluginReportBeta1.builder()
         .success(false)
         .violations(List.of(PolicyViolationBeta1.builder()
                 .description("description")
                 .ruleName("ruleName")
                 .violatingResources(List.of(PolicyViolatingResourceBeta1.builder()
                         .locations(List.of("locations"))
                         .resourceLogicalId("resourceLogicalId")
                         .templatePath("templatePath")
                         .build()))
                 // the properties below are optional
                 .fix("fix")
                 .ruleMetadata(Map.of(
                         "ruleMetadataKey", "ruleMetadata"))
                 .severity("severity")
                 .build()))
         // the properties below are optional
         .metadata(Map.of(
                 "metadataKey", "metadata"))
         .pluginVersion("pluginVersion")
         .build();