deleteFindingAggregator

Deletes a finding aggregator. When you delete the finding aggregator, you stop finding aggregation.

When you stop finding aggregation, findings that were already aggregated to the aggregation Region are still visible from the aggregation Region. New findings and finding updates are not aggregated.

Samples


fun main() { 
   //sampleStart 
   // The following example deletes a finding aggregator in Security Hub. Deleting the finding aggregator
// stops cross Region aggregation. This operation produces no output.
securityHubClient.deleteFindingAggregator {
    findingAggregatorArn = "arn:aws:securityhub:us-east-1:123456789012:finding-aggregator/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111"
} 
   //sampleEnd
}