ServerGroupStickySessionConfigArgs

data class ServerGroupStickySessionConfigArgs(val cookie: Output<String>? = null, val cookieTimeout: Output<Int>? = null, val stickySessionEnabled: Output<Boolean>? = null, val stickySessionType: Output<String>? = null) : ConvertibleToJava<ServerGroupStickySessionConfigArgs>

Constructors

Link copied to clipboard
fun ServerGroupStickySessionConfigArgs(cookie: Output<String>? = null, cookieTimeout: Output<Int>? = null, stickySessionEnabled: Output<Boolean>? = null, stickySessionType: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): ServerGroupStickySessionConfigArgs

Properties

Link copied to clipboard
val cookie: Output<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: Output<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
val stickySessionEnabled: Output<Boolean>? = null

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
val stickySessionType: Output<String>? = null

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