OpenIDConnectConfig

public struct OpenIDConnectConfig : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The number of milliseconds a token is valid after being authenticated.

    Declaration

    Swift

    public let authTTL: Int64?
  • 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 the AWS AppSync can validate against multiple client identifiers at a time.

    Declaration

    Swift

    public let clientId: String?
  • The number of milliseconds a token is valid after being issued to a user.

    Declaration

    Swift

    public let iatTTL: Int64?
  • The issuer for the OpenID Connect configuration. The issuer returned by discovery must exactly match the value of iss in the ID token.

    Declaration

    Swift

    public let issuer: String
  • Undocumented

    Declaration

    Swift

    public init(authTTL: Int64? = nil, clientId: String? = nil, iatTTL: Int64? = nil, issuer: String)