Waiting Room Cookie Attributes Args
data class WaitingRoomCookieAttributesArgs(val samesite: Output<String>? = null, val secure: Output<String>? = null) : ConvertibleToJava<WaitingRoomCookieAttributesArgs>
Properties
Link copied to clipboard
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
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".