Class: Aws::Backup::Types::ScanResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::ScanResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-backup/types.rb
Overview
Contains the results of a security scan, including scanner information, scan state, and any findings discovered.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#findings ⇒ Array<String>
An array of findings discovered during the scan.
-
#last_scan_timestamp ⇒ Time
The timestamp of when the last scan was performed, in Unix format and Coordinated Universal Time (UTC).
-
#malware_scanner ⇒ String
The malware scanner used to perform the scan.
-
#scan_job_state ⇒ String
The final state of the scan job.
Instance Attribute Details
#findings ⇒ Array<String>
An array of findings discovered during the scan.
9984 9985 9986 9987 9988 9989 9990 9991 |
# File 'lib/aws-sdk-backup/types.rb', line 9984 class ScanResult < Struct.new( :malware_scanner, :scan_job_state, :last_scan_timestamp, :findings) SENSITIVE = [] include Aws::Structure end |
#last_scan_timestamp ⇒ Time
The timestamp of when the last scan was performed, in Unix format and Coordinated Universal Time (UTC).
9984 9985 9986 9987 9988 9989 9990 9991 |
# File 'lib/aws-sdk-backup/types.rb', line 9984 class ScanResult < Struct.new( :malware_scanner, :scan_job_state, :last_scan_timestamp, :findings) SENSITIVE = [] include Aws::Structure end |
#malware_scanner ⇒ String
The malware scanner used to perform the scan. Currently only ‘GUARDDUTY` is supported.
9984 9985 9986 9987 9988 9989 9990 9991 |
# File 'lib/aws-sdk-backup/types.rb', line 9984 class ScanResult < Struct.new( :malware_scanner, :scan_job_state, :last_scan_timestamp, :findings) SENSITIVE = [] include Aws::Structure end |
#scan_job_state ⇒ String
The final state of the scan job.
Valid values: ‘COMPLETED` | `FAILED` | `CANCELED`.
9984 9985 9986 9987 9988 9989 9990 9991 |
# File 'lib/aws-sdk-backup/types.rb', line 9984 class ScanResult < Struct.new( :malware_scanner, :scan_job_state, :last_scan_timestamp, :findings) SENSITIVE = [] include Aws::Structure end |