/// Gets and sets the property AggregationType.
///
/// The aggregation type specifies what type of key is used to group the image scan findings.
/// Image Builder returns results based on the request filter. If you didn't specify a
/// filter in the request, the type defaults to accountId
.
///
/// Aggregation types
///
///
-
///
/// accountId
///
///
-
///
/// imageBuildVersionArn
///
///
-
///
/// imagePipelineArn
///
///
-
///
/// vulnerabilityId
///
///
///
/// Each aggregation includes counts by severity level for medium severity and higher
/// level findings, plus a total for all of the findings for each key value.
///
///
[AWSProperty(Min=1, Max=1024)]
public string AggregationType
{
get { return this._aggregationType; }
set { this._aggregationType = value; }
}
// Check to see if AggregationType property is set
internal bool IsSetAggregationType()
{
return this._aggregationType != null;
}
///