pub trait PolicyEnforcer: Send + Sync {
// Required methods
fn name(&self) -> &str;
fn enforce(&self, alert: &Alert) -> Result<bool, IronpostError>;
}Expand description
격리 정책을 구현하는 trait
보안 알림에 대한 자동 대응 정책을 정의합니다. 알림의 심각도와 유형에 따라 격리 여부를 결정합니다.