Values.MalwareScanSourceContains information about a particular malware scan.
type nonrec t = {resourceArn : NonEmptyString.t option;Amazon Resource Name (ARN) of the resource for the given malware scan.
*)resourceType : MalwareProtectionResourceType.t option;The type of resource that was scanned for malware.
*)scanId : NonEmptyString.t option;A unique identifier that gets generated when you invoke the API without any error. Each malware scan has a corresponding scan ID. Using this scan ID, you can monitor the status of your malware scan.
*)scanStatus : MalwareProtectionScanStatus.t option;An enum value representing the current status of the malware scan.
*)scanResultStatus : ScanResultStatus.t option;An enum value representing the result of the malware scan.
*)scanType : MalwareProtectionScanType.t option;An enum value representing the type of scan that was initiated.
*)scanStartedAt : Timestamp.t option;The timestamp representing when the malware scan was started.
*)scanCompletedAt : Timestamp.t option;The timestamp representing when the malware scan was completed.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of NonEmptyString.t
| `Timestamp of Timestamp.t ])
list ]