Is it possible to specify a UTC time when deleting data in a table in Azure Data Explorer?
For example:
My Table is constantly being ingested with an Event Hub. I want my Table retention policy to only keep data from 00:15:00 UTC to 00:15:00 UTC of next day.
I tried this, but I'm not sure about it.
.alter table TableName policy retention
```
{
"SoftDeletePeriod": "1.00:15:00",
"Recoverability": "Enabled"
}
```
I didn't find anything related to time in the Microsoft ADX documentation.