Class: Aws::AuditManager::Types::EvidenceInsights

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#compliant_evidence_countInteger

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.

Returns:

  • (Integer)


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_countInteger

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).

If evidence has a compliance check status of not applicable in the console, it's classified as inconclusive in EvidenceInsights data.

Returns:

  • (Integer)


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_countInteger

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.

Returns:

  • (Integer)


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