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

RegisterClientRequest

import type { RegisterClientRequest } from "https://aws-api.deno.dev/v0.4/services/ssooidc.ts?docs=full";
interface RegisterClientRequest {
clientName: string;
clientType: string;
scopes?: string[] | null;
}

§Properties

§
clientName: string
[src]

The friendly name of the client.

§
clientType: string
[src]

The type of client. The service supports only public as a client type. Anything other than public will be rejected by the service.

§
scopes?: string[] | null
[src]

The list of scopes that are defined by the client. Upon authorization, this list is used to restrict permissions when granting an access token.