Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

OpenIDConnectConfig

import type { OpenIDConnectConfig } from "https://aws-api.deno.dev/v0.3/services/appsync.ts?docs=full";

Describes an OpenID Connect (OIDC) configuration.

interface OpenIDConnectConfig {
authTTL?: number | null;
clientId?: string | null;
iatTTL?: number | null;
issuer: string;
}

§Properties

§
authTTL?: number | null
[src]

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

§
clientId?: string | null
[src]

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.

§
iatTTL?: number | null
[src]

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

§
issuer: string
[src]

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