GraphQLApiAdditionalAuthenticationProviderOpenidConnectConfig

data class GraphQLApiAdditionalAuthenticationProviderOpenidConnectConfig(val authTtl: Int? = null, val clientId: String? = null, val iatTtl: Int? = null, val issuer: String)

Constructors

constructor(authTtl: Int? = null, clientId: String? = null, iatTtl: Int? = null, issuer: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val authTtl: Int? = null

Number of milliseconds a token is valid after being authenticated.

Link copied to clipboard
val clientId: String? = null

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 the AWS AppSync can validate against multiple client identifiers at a time.

Link copied to clipboard
val iatTtl: Int? = null

Number of milliseconds a token is valid after being issued to a user.

Link copied to clipboard

Issuer for the OpenID Connect configuration. The issuer returned by discovery MUST exactly match the value of iss in the ID Token.