Interface PolicyViolatingResource
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PolicyViolatingResource.Jsii$Proxy
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forPolicyViolatingResourcestatic final classAn implementation forPolicyViolatingResource -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe construct path of the violating construct.The locations in the CloudFormation template that pose the violations.default StringThe logical ID of the resource in the CloudFormation template.default StringThe path to the CloudFormation template that contains this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocations
The locations in the CloudFormation template that pose the violations.This is a location in the CloudFormation template, relative to the resource that this violation is about. For example, if the violation is about a property of a resource, this will contain something like
Properties.MyProperty. If the violation is about the Stack itself, it will contain something likeParameters.MyParameter. -
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()orValidations.of()). When provided, the report will use this path directly instead of deriving it from the resource logical ID. Mutually exclusive withresourceLogicalId.Default: - construct path is derived from the resource logical ID
-
getResourceLogicalId
The logical ID of the resource in the CloudFormation template.Intended for plugin-sourced violations that operate on CloudFormation templates.
If set, the
constructPathwill be added later.Default: - no resource logical ID
-
getTemplatePath
The path to the CloudFormation template that contains this resource.Default: - no template path
-
builder
- Returns:
- a
PolicyViolatingResource.BuilderofPolicyViolatingResource
-