Values.AutoStopConfigSourceThe configuration for an application to automatically stop after a certain amount of time being idle.
type nonrec t = {enabled : Boolean.t option;Enables the application to automatically stop after a certain amount of time being idle. Defaults to true.
*)idleTimeoutMinutes : AutoStopConfigIdleTimeoutMinutesInteger.t option;The amount of idle time in minutes after which your application will automatically stop. Defaults to 15 minutes.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Integer of AutoStopConfigIdleTimeoutMinutesInteger.t ])
list ]