Class: Aws::Backup::Types::ScanAction

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

Instance Attribute Details

#malware_scannerString

The malware scanner to use for the scan action. Currently only GUARDDUTY is supported.

Returns:

  • (String)


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_modeString

The scanning mode to use for the scan action.

Valid values: FULL_SCAN | INCREMENTAL_SCAN.

Returns:

  • (String)


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