Class: Aws::AuditManager::Types::EvidenceInsights
- Inherits:
-
Struct
- Object
- Struct
- Aws::AuditManager::Types::EvidenceInsights
- Includes:
- Structure
- Defined in:
- 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.
2406 2407 2408 2409 2410 2411 2412 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 2406 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).
<note markdown=“1”> If evidence has a compliance check status of *not applicable* in the console, it’s classified as inconclusive in ‘EvidenceInsights` data.
</note>
2406 2407 2408 2409 2410 2411 2412 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 2406 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.
2406 2407 2408 2409 2410 2411 2412 |
# File 'lib/aws-sdk-auditmanager/types.rb', line 2406 class EvidenceInsights < Struct.new( :noncompliant_evidence_count, :compliant_evidence_count, :inconclusive_evidence_count) SENSITIVE = [] include Aws::Structure end |