Module Values.ImageScanFindingAggregationSource

This returns exactly one type of aggregation, based on the filter that Image Builder applies in its API action.

Sourcetype nonrec t = {
  1. accountAggregation : AccountAggregation.t option;
    (*

    Returns an object that contains severity counts based on an account ID.

    *)
  2. imageAggregation : ImageAggregation.t option;
    (*

    Returns an object that contains severity counts based on the Amazon Resource Name (ARN) for a specific image.

    *)
  3. imagePipelineAggregation : ImagePipelineAggregation.t option;
    (*

    Returns an object that contains severity counts based on an image pipeline ARN.

    *)
  4. vulnerabilityIdAggregation : VulnerabilityIdAggregation.t option;
    (*

    Returns an object that contains severity counts based on vulnerability ID.

    *)
}
Sourceval make : ?accountAggregation:??? -> ?imageAggregation:??? -> ?imagePipelineAggregation:??? -> ?vulnerabilityIdAggregation:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of NonEmptyString.t | `Structure of (string * [> `Long of SeverityCountNumber.t ]) list ]) 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