View Job Filters as code DSL job

I have a DSL job that sets the views. It is working fine but I would like to create a new view via code that will utilize the “View Job Filters” plugin. Specifically I’m trying to create a tab that will only show jobs that are currently running. I have about 7k jobs and I use the “Build Statuses Filter” with Currently Building checked. I’ve checked everywhere and I see the View Job Filter is supported by DSL. Below was my attempt that is failing.

nestedView(activityT) {
description(activityTDesc)
views {
listView(activityTdashboardS) {
description(activityTDesc)
recurse(true)
jobFilters {
regex {
matchType(MatchType.EXCLUDE_MATCHED)
matchValue(RegexMatchValue.NAME)
regex(activityTdashboardSRegX)
}
status {
matchType(MatchType.INCLUDE_MATCHED)
status(Status.BUILDING) //I KNOW BUILDING IS NOT AN OPTION…
}
}
columns {
name()
}
}
configure { view →
view / defaultView(activityTdashboardS)
}
}
}