Class: Aws::Backup::Types::AggregatedScanResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::AggregatedScanResult
- 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
-
#failed_scan ⇒ Boolean
A Boolean value indicating whether any of the aggregated scans failed.
-
#findings ⇒ Array<String>
An array of findings discovered across all aggregated scans.
-
#last_computed ⇒ Time
The timestamp when the aggregated scan result was last computed, in Unix format and Coordinated Universal Time (UTC).
Instance Attribute Details
#failed_scan ⇒ Boolean
A Boolean value indicating whether any of the aggregated scans failed.
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 |
#findings ⇒ Array<String>
An array of findings discovered across all aggregated scans.
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_computed ⇒ Time
The timestamp when the aggregated scan result was last computed, in Unix format and Coordinated Universal Time (UTC).
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 |