Class: Aws::Backup::Types::ScanSetting

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

Overview

Contains configuration settings for malware scanning, including the scanner type, target resource types, and scanner role.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#malware_scannerString

The malware scanner to use for scanning. Currently only GUARDDUTY is supported.

Returns:

  • (String)


10029
10030
10031
10032
10033
10034
10035
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 10029

class ScanSetting < Struct.new(
  :malware_scanner,
  :resource_types,
  :scanner_role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#resource_typesArray<String>

An array of resource types to be scanned for malware.

Returns:

  • (Array<String>)


10029
10030
10031
10032
10033
10034
10035
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 10029

class ScanSetting < Struct.new(
  :malware_scanner,
  :resource_types,
  :scanner_role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#scanner_role_arnString

The Amazon Resource Name (ARN) of the IAM role that the scanner uses to access resources; for example, arn:aws:iam::123456789012:role/ScannerRole.

Returns:

  • (String)


10029
10030
10031
10032
10033
10034
10035
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 10029

class ScanSetting < Struct.new(
  :malware_scanner,
  :resource_types,
  :scanner_role_arn)
  SENSITIVE = []
  include Aws::Structure
end