Interface PolicyViolatingResource

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

@Generated(value="jsii-pacmak/1.129.0 (build eaca441)", date="2026-05-13T16:55:01.887Z") @Stability(Stable) public interface PolicyViolatingResource extends software.amazon.jsii.JsiiSerializable
Resource violating a specific rule.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 PolicyViolatingResource policyViolatingResource = PolicyViolatingResource.builder()
         .locations(List.of("locations"))
         // the properties below are optional
         .constructPath("constructPath")
         .resourceLogicalId("resourceLogicalId")
         .templatePath("templatePath")
         .build();
 
  • Method Details

    • getLocations

      @Stability(Stable) @NotNull List<String> getLocations()
      The locations in the CloudFormation template that pose the violations.
    • getConstructPath

      @Stability(Stable) @Nullable default String getConstructPath()
      The construct path of the violating construct.

      Use this for violations that originate from constructs rather than CloudFormation resources (e.g. annotations added via Annotations.of() or Validations.of()). When provided, the report will use this path directly instead of deriving it from the resource logical ID. Mutually exclusive with resourceLogicalId.

      Default: - construct path is derived from the resource logical ID

    • getResourceLogicalId

      @Stability(Stable) @Nullable default String getResourceLogicalId()
      The logical ID of the resource in the CloudFormation template.

      Required for plugin-sourced violations that operate on CloudFormation templates. Mutually exclusive with constructPath.

      Default: - no resource logical ID

    • getTemplatePath

      @Stability(Stable) @Nullable default String getTemplatePath()
      The path to the CloudFormation template that contains this resource.

      Default: - no template path

    • builder

      @Stability(Stable) static PolicyViolatingResource.Builder builder()
      Returns:
      a PolicyViolatingResource.Builder of PolicyViolatingResource