To check if backup ran:
LIST HISTORY BACKUP SINCE 20111101 for MyDB
To check runstats:
select tabschema,tabname,stats_time from syscat.tables where stats_time > {last check time}
Now a comment on performing backups with automaint. I think it is a bad idea because you have better control of everything if you do it differently. What happens if automaint determines a backup is not needed for an extended time? This would greatly increase your risk and recovery time from a disaster. Can automaint do the backup exactly as you need?
I have found it is just easier to use cron to schedule a regular backup. That way you know it always gets done.
Andy