Class: Aws::Backup::Types::AggregatedScanResult

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-backup/types.rb

Overview

Contains aggregated scan results across multiple scan operations, providing a summary of scan status and findings.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#failed_scanBoolean

A Boolean value indicating whether any of the aggregated scans failed.

Returns:

  • (Boolean)


85
86
87
88
89
90
91
# File 'lib/aws-sdk-backup/types.rb', line 85

class AggregatedScanResult < Struct.new(
  :failed_scan,
  :findings,
  :last_computed)
  SENSITIVE = []
  include Aws::Structure
end

#findingsArray<String>

An array of findings discovered across all aggregated scans.

Returns:

  • (Array<String>)


85
86
87
88
89
90
91
# File 'lib/aws-sdk-backup/types.rb', line 85

class AggregatedScanResult < Struct.new(
  :failed_scan,
  :findings,
  :last_computed)
  SENSITIVE = []
  include Aws::Structure
end

#last_computedTime

The timestamp when the aggregated scan result was last computed, in Unix format and Coordinated Universal Time (UTC).

Returns:

  • (Time)


85
86
87
88
89
90
91
# File 'lib/aws-sdk-backup/types.rb', line 85

class AggregatedScanResult < Struct.new(
  :failed_scan,
  :findings,
  :last_computed)
  SENSITIVE = []
  include Aws::Structure
end