Module Values.ImageScanFindingsSource

The details of an image scan.

Sourcetype nonrec t = {
  1. imageScanCompletedAt : ScanTimestamp.t option;
    (*

    The time of the last completed image scan.

    *)
  2. vulnerabilitySourceUpdatedAt : VulnerabilitySourceUpdateTimestamp.t option;
    (*

    The time when the vulnerability data was last scanned.

    *)
  3. findingSeverityCounts : FindingSeverityCounts.t option;
    (*

    The image vulnerability counts, sorted by severity.

    *)
  4. findings : ImageScanFindingList.t option;
    (*

    The findings from the image scan.

    *)
  5. enhancedFindings : EnhancedImageScanFindingList.t option;
    (*

    Details about the enhanced scan findings from Amazon Inspector.

    *)
}
Sourceval make : ?imageScanCompletedAt:??? -> ?vulnerabilitySourceUpdatedAt:??? -> ?findingSeverityCounts:??? -> ?findings:??? -> ?enhancedFindings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Score.t | `Enum of string | `List of [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AttributeKey.t | `Structure of (string * [> `Structure of (string * [> `List of [> `String of ImageTag.t ] list | `Long of InUseCount.t | `String of Arch.t | `Timestamp of Date.t ]) list ]) list ]) list ] list | `String of FindingName.t | `Structure of (string * [> `List of [> `String of Url.t | `Structure of (string * [> `Double of BaseScore.t | `Integer of Epoch.t | `String of ScoringVector.t ]) list ] list | `String of Source.t | `Structure of (string * [> `Double of Score.t | `List of [> `Structure of (string * [> `String of Metric.t ]) list ] list | `String of Url.t ]) list | `Timestamp of Date.t ]) list | `Timestamp of Date.t ]) list ] list | `Map of ([> `Enum of string ] * [> `Integer of SeverityCount.t ]) list | `Timestamp of ScanTimestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t