Skip to content

Get Malware Scan Settings

guardduty_get_malware_scan_settings R Documentation

Returns the details of the malware scan settings

Description

Returns the details of the malware scan settings.

There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.

Usage

guardduty_get_malware_scan_settings(DetectorId)

Arguments

DetectorId

[required] The unique ID of the detector that the scan setting is associated with.

Value

A list with the following syntax:

list(
  ScanResourceCriteria = list(
    Include = list(
      list(
        MapEquals = list(
          list(
            Key = "string",
            Value = "string"
          )
        )
      )
    ),
    Exclude = list(
      list(
        MapEquals = list(
          list(
            Key = "string",
            Value = "string"
          )
        )
      )
    )
  ),
  EbsSnapshotPreservation = "NO_RETENTION"|"RETENTION_WITH_FINDING"
)

Request syntax

svc$get_malware_scan_settings(
  DetectorId = "string"
)