deleteFindingAggregator
The aggregation Region is now called the home Region.
Deletes a finding aggregator. When you delete the finding aggregator, you stop cross-Region aggregation. Finding replication stops occurring from the linked Regions to the home Region.
When you stop cross-Region aggregation, findings that were already replicated and sent to the home Region are still visible from the home Region. However, new findings and finding updates are no longer replicated and sent to the home Region.
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
}