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

RegisterClientResponse

import type { RegisterClientResponse } from "https://aws-api.deno.dev/v0.4/services/ssooidc.ts?docs=full";
interface RegisterClientResponse {
authorizationEndpoint?: string | null;
clientId?: string | null;
clientIdIssuedAt?: number | null;
clientSecret?: string | null;
clientSecretExpiresAt?: number | null;
tokenEndpoint?: string | null;
}

§Properties

§
authorizationEndpoint?: string | null
[src]

The endpoint where the client can request authorization.

§
clientId?: string | null
[src]

The unique identifier string for each client. This client uses this identifier to get authenticated by the service in subsequent calls.

§
clientIdIssuedAt?: number | null
[src]

Indicates the time at which the clientId and clientSecret were issued.

§
clientSecret?: string | null
[src]

A secret string generated for the client. The client will use this string to get authenticated by the service in subsequent calls.

§
clientSecretExpiresAt?: number | null
[src]

Indicates the time at which the clientId and clientSecret will become invalid.

§
tokenEndpoint?: string | null
[src]

The endpoint where the client can get an access token.