Package software.amazon.awscdk
Interface IPolicyValidationPluginBeta1.Jsii$Default
- All Superinterfaces:
IPolicyValidationPluginBeta1
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
IPolicyValidationPluginBeta1.Jsii$Proxy
- Enclosing interface:
IPolicyValidationPluginBeta1
@Internal
public static interface IPolicyValidationPluginBeta1.Jsii$Default
extends IPolicyValidationPluginBeta1
Internal default implementation for
IPolicyValidationPluginBeta1
.-
Nested Class Summary
Nested classes/interfaces inherited from interface software.amazon.awscdk.IPolicyValidationPluginBeta1
IPolicyValidationPluginBeta1.Jsii$Default, IPolicyValidationPluginBeta1.Jsii$Proxy
-
Method Summary
Modifier and TypeMethodDescriptiondefault String
getName()
The name of the plugin that will be displayed in the validation report.The list of rule IDs that the plugin will evaluate.default String
The version of the plugin, following the Semantic Versioning specification (see https://semver.org/).validate
(IPolicyValidationContextBeta1 context) The method that will be called by the CDK framework to perform validations.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the plugin that will be displayed in the validation report.- Specified by:
getName
in interfaceIPolicyValidationPluginBeta1
-
getRuleIds
The list of rule IDs that the plugin will evaluate.Used for analytics purposes.
Default: - No rule is reported
- Specified by:
getRuleIds
in interfaceIPolicyValidationPluginBeta1
-
getVersion
The version of the plugin, following the Semantic Versioning specification (see https://semver.org/). This version is used for analytics purposes, to measure the usage of different plugins and different versions. The value of this property should be kept in sync with the actual version of the software package. If the version is not provided or is not a valid semantic version, it will be reported as0.0.0
.- Specified by:
getVersion
in interfaceIPolicyValidationPluginBeta1
-
validate
@Stability(Stable) @NotNull default PolicyValidationPluginReportBeta1 validate(@NotNull IPolicyValidationContextBeta1 context) The method that will be called by the CDK framework to perform validations.This is where the plugin will evaluate the CloudFormation templates for compliance and report and violations
- Specified by:
validate
in interfaceIPolicyValidationPluginBeta1
- Parameters:
context
- This parameter is required.
-