ApplicationAutoStopConfiguration

data class ApplicationAutoStopConfiguration(val enabled: Boolean? = null, val idleTimeoutMinutes: Int? = null)

Configuration for Auto Stop of Application

Constructors

Link copied to clipboard
constructor(enabled: Boolean? = null, idleTimeoutMinutes: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val enabled: Boolean? = null

If set to true, the Application will automatically stop after being idle. Defaults to true.

Link copied to clipboard
val idleTimeoutMinutes: Int? = null

The amount of time in minutes to wait before auto stopping the Application when idle. Defaults to 15 minutes.