func NewDestinationPredicate(
destinations []string,
destinationsMap := make(map[string]struct{}, len(destinations))
for _, id := range destinations {
destinationsMap[id] = struct{}{}
}
Destinations: destinationsMap,
}
}