Disable timers using schedule expression

As per docs: Convox Docs

timers:
  cleanup:
    command: bin/cleanup
    schedule: "*/1 * * * ?"
    service: timers

Is there a way to disable triggering timers without removing the entry from the timers?

When I query:

kubectl get cronjob -n my-namespace

I get the response:

NAME                                 SCHEDULE       SUSPEND   ACTIVE   LAST SCHEDULE     AGE
timer-cleanup                    0 15 * * SAT       False      0         15h             42h

Is there a way to “suspend” the timer?