interface IPolicyValidationContext
| Language | Type name |
|---|---|
.NET | Amazon.CDK.IPolicyValidationContext |
Go | github.com/aws/aws-cdk-go/awscdk/v2#IPolicyValidationContext |
Java | software.amazon.awscdk.IPolicyValidationContext |
Python | aws_cdk.IPolicyValidationContext |
TypeScript (source) | aws-cdk-lib » IPolicyValidationContext |
Context available to the validation plugin.
Properties
| Name | Type | Description |
|---|---|---|
| app | IConstruct | The root construct of the app being validated. |
| template | string[] | The absolute path of all templates to be processed. |
appConstruct
Type:
IConstruct
The root construct of the app being validated.
Plugins may walk this tree for typed L1 property access and token
resolution via Stack.of(node).resolve(). The tree is finalized and
should be treated as read-only; mutations have no effect on synthesized
output.
templatePaths
Type:
string[]
The absolute path of all templates to be processed.

.NET
Go
Java
Python
TypeScript (