ServerGroupStickySessionConfig

data class ServerGroupStickySessionConfig(val cookie: String? = null, val cookieTimeout: Int? = null, val stickySessionEnabled: Boolean? = null, val stickySessionType: String? = null)

Constructors

Link copied to clipboard
fun ServerGroupStickySessionConfig(cookie: String? = null, cookieTimeout: Int? = null, stickySessionEnabled: Boolean? = null, stickySessionType: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val cookie: String? = null

the cookie that is configured on the server. NOTE: This parameter exists if the StickySession parameter is set to On and the StickySessionType parameter is set to server.

Link copied to clipboard
val cookieTimeout: Int? = null

The timeout period of a cookie. The timeout period of a cookie. Unit: seconds. Valid values: 1 to 86400. Default value: 1000.

Link copied to clipboard

Indicates whether sticky session is enabled. Values: true and false. Default value: false. NOTE: This parameter exists if the StickySession parameter is set to On.

Link copied to clipboard

The method that is used to handle a cookie. Values: Server and Insert.