Values.ScanSettingSourceContains configuration settings for malware scanning, including the scanner type, target resource types, and scanner role.
type nonrec t = {malwareScanner : MalwareScanner.t option;The malware scanner to use for scanning. Currently only GUARDDUTY is supported.
*)resourceTypes : ResourceTypes.t option;An array of resource types to be scanned for malware.
*)scannerRoleArn : IAMRoleArn.t option;The Amazon Resource Name (ARN) of the IAM role that the scanner uses to access resources; for example, arn:aws:iam::123456789012:role/ScannerRole.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `List of [> `String of ResourceType.t ] list
| `String of IAMRoleArn.t ])
list ]