Class: Aws::AuditManager::Types::EvidenceInsights
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::EvidenceInsights
- Defined in:
- gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb
Overview
A breakdown of the latest compliance check status for the evidence in your Audit Manager assessments.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#compliant_evidence_count ⇒ Integer
The number of compliance check evidence that Audit Manager classified as compliant.
-
#inconclusive_evidence_count ⇒ Integer
The number of evidence that a compliance check ruling isn't available for.
-
#noncompliant_evidence_count ⇒ Integer
The number of compliance check evidence that Audit Manager classified as non-compliant.
Instance Attribute Details
#compliant_evidence_count ⇒ Integer
The number of compliance check evidence that Audit Manager classified as compliant. This includes evidence that was collected from Security Hub with a Pass ruling, or collected from Config with a Compliant ruling.
2455 2456 2457 2458 2459 2460 2461 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 2455 class EvidenceInsights < Struct.new( :noncompliant_evidence_count, :compliant_evidence_count, :inconclusive_evidence_count) SENSITIVE = [] include Aws::Structure end |
#inconclusive_evidence_count ⇒ Integer
The number of evidence that a compliance check ruling isn't available for. Evidence is inconclusive when the associated control uses Security Hub or Config as a data source but you didn't enable those services. This is also the case when a control uses a data source that doesn’t support compliance checks (for example, manual evidence, API calls, or CloudTrail).
EvidenceInsights
data.
2455 2456 2457 2458 2459 2460 2461 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 2455 class EvidenceInsights < Struct.new( :noncompliant_evidence_count, :compliant_evidence_count, :inconclusive_evidence_count) SENSITIVE = [] include Aws::Structure end |
#noncompliant_evidence_count ⇒ Integer
The number of compliance check evidence that Audit Manager classified as non-compliant. This includes evidence that was collected from Security Hub with a Fail ruling, or collected from Config with a Non-compliant ruling.
2455 2456 2457 2458 2459 2460 2461 |
# File 'gems/aws-sdk-auditmanager/lib/aws-sdk-auditmanager/types.rb', line 2455 class EvidenceInsights < Struct.new( :noncompliant_evidence_count, :compliant_evidence_count, :inconclusive_evidence_count) SENSITIVE = [] include Aws::Structure end |