WaitingRoomCookieAttributesArgs

data class WaitingRoomCookieAttributesArgs(val samesite: Output<String>? = null, val secure: Output<String>? = null) : ConvertibleToJava<WaitingRoomCookieAttributesArgs>

Constructors

Link copied to clipboard
constructor(samesite: Output<String>? = null, secure: Output<String>? = null)

Properties

Link copied to clipboard
val samesite: Output<String>? = null

Configures the SameSite attribute on the waiting room cookie. Value auto will be translated to lax or none depending if Always Use HTTPS is enabled. Note that when using value none, the secure attribute cannot be set to never. Available values: "auto", "lax", "none", "strict".

Link copied to clipboard
val secure: Output<String>? = null

Configures the Secure attribute on the waiting room cookie. Value always indicates that the Secure attribute will be set in the Set-Cookie header, never indicates that the Secure attribute will not be set, and auto will set the Secure attribute depending if Always Use HTTPS is enabled. Available values: "auto", "always", "never".

Functions

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