PluginReportJson
- class aws_cdk.cloud_assembly_schema.PluginReportJson(*, conclusion, plugin_name, violations, metadata=None, plugin_version=None)
Bases:
objectA report from a single validation plugin.
- Parameters:
conclusion (
str) – Whether the plugin’s validation passed or failed.plugin_name (
str) – The name of the plugin that produced this report.violations (
Sequence[Union[PolicyViolationJson,Dict[str,Any]]]) – Violations found by this plugin.metadata (
Optional[Mapping[str,str]]) – Additional plugin-specific metadata. Default: - no metadataplugin_version (
Optional[str]) – Version of the plugin that produced this report. Default: - no version
Attributes
- conclusion
Whether the plugin’s validation passed or failed.
- metadata
Additional plugin-specific metadata.
- Default:
no metadata
- plugin_name
The name of the plugin that produced this report.
- plugin_version
Version of the plugin that produced this report.
- Default:
no version
- violations
Violations found by this plugin.