Creates a GuardDuty filter to archive findings based on specific criteria such as region, threat list name, update time, and severity.

Terraform Template

resource "aws_guardduty_filter" "MyFilter" {
  action = "ARCHIVE"
  detector_id = "aws_guardduty_detector.example.id"
  name = "MyFilter"
  rank = 1
}