OpenIDConnectConfigArgs

data class OpenIDConnectConfigArgs(val authTTL: Output<Double>? = null, val clientId: Output<String>? = null, val iatTTL: Output<Double>? = null, val issuer: Output<String>? = null) : ConvertibleToJava<OpenIDConnectConfigArgs>

Definition of OpenIDConnectConfig

Constructors

Link copied to clipboard
constructor(authTTL: Output<Double>? = null, clientId: Output<String>? = null, iatTTL: Output<Double>? = null, issuer: Output<String>? = null)

Properties

Link copied to clipboard
val authTTL: Output<Double>? = null

The number of milliseconds that a token is valid after being authenticated.

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

The client identifier of the relying party at the OpenID identity provider. This identifier is typically obtained when the relying party is registered with the OpenID identity provider. You can specify a regular expression so that AppSync can validate against multiple client identifiers at a time.

Link copied to clipboard
val iatTTL: Output<Double>? = null

The number of milliseconds that a token is valid after it's issued to a user.

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

The issuer for the OIDC configuration. The issuer returned by discovery must exactly match the value of iss in the ID token.

Functions

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