Values.ScanSummarySourceInformation about a scan.
type nonrec t = {scanState : ScanState.t option;The state of the scan. A scan can be In Progress, Complete, or Failed.
*)createdAt : Timestamp.t option;The time when the scan was created.
*)updatedAt : Timestamp.t option;The time the scan was last updated. A scan is updated when it is re-run.
*)scanName : ScanName.t option;The name of the scan.
*)runId : Uuid.t option;The identifier for the scan run.
*)scanNameArn : ScanNameArn.t option;The ARN for the scan name.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Enum of string
| `String of ScanName.t
| `Timestamp of Timestamp.t ])
list ]