Module Values.ImagePipelineAggregationSource

Contains vulnerability counts for a specific image pipeline.

Sourcetype nonrec t = {
  1. imagePipelineArn : ImagePipelineArn.t option;
    (*

    The Amazon Resource Name (ARN) that identifies the image pipeline for this aggregation.

    *)
  2. severityCounts : SeverityCounts.t option;
    (*

    Counts by severity level for medium severity and higher level findings, plus a total for all of the findings for the specified image pipeline.

    *)
}
Sourceval make : ?imagePipelineArn:??? -> ?severityCounts:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ImagePipelineArn.t | `Structure of (string * [> `Long of SeverityCountNumber.t ]) list ]) 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