Class: Aws::Backup::Types::ScanAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::ScanAction
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
Defines a scanning action that specifies the malware scanner and scan mode to use.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#malware_scanner ⇒ String
The malware scanner to use for the scan action.
-
#scan_mode ⇒ String
The scanning mode to use for the scan action.
Instance Attribute Details
#malware_scanner ⇒ String
The malware scanner to use for the scan action. Currently only
GUARDDUTY is supported.
9705 9706 9707 9708 9709 9710 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9705 class ScanAction < Struct.new( :malware_scanner, :scan_mode) SENSITIVE = [] include Aws::Structure end |
#scan_mode ⇒ String
The scanning mode to use for the scan action.
Valid values: FULL_SCAN | INCREMENTAL_SCAN.
9705 9706 9707 9708 9709 9710 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9705 class ScanAction < Struct.new( :malware_scanner, :scan_mode) SENSITIVE = [] include Aws::Structure end |