NonceArgs

data class NonceArgs(val nonceExpirationInterval: Output<String>? = null, val validateNonce: Output<Boolean>? = null) : ConvertibleToJava<NonceArgs>

The configuration settings of the nonce used in the login flow.

Constructors

Link copied to clipboard
constructor(nonceExpirationInterval: Output<String>? = null, validateNonce: Output<Boolean>? = null)

Properties

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

The time after the request is made when the nonce should expire.

Link copied to clipboard
val validateNonce: Output<Boolean>? = null

false if the nonce should not be validated while completing the login flow; otherwise, true.

Functions

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