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

OidcConfig

import type { OidcConfig } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Use this parameter to configure your OIDC Identity Provider (IdP).

interface OidcConfig {
AuthorizationEndpoint: string;
ClientId: string;
ClientSecret: string;
Issuer: string;
JwksUri: string;
LogoutEndpoint: string;
TokenEndpoint: string;
UserInfoEndpoint: string;
}

§Properties

§
AuthorizationEndpoint: string
[src]

The OIDC IdP authorization endpoint used to configure your private workforce.

§
ClientId: string
[src]

The OIDC IdP client ID used to configure your private workforce.

§
ClientSecret: string
[src]

The OIDC IdP client secret used to configure your private workforce.

§
Issuer: string
[src]

The OIDC IdP issuer used to configure your private workforce.

§
JwksUri: string
[src]

The OIDC IdP JSON Web Key Set (Jwks) URI used to configure your private workforce.

§
LogoutEndpoint: string
[src]

The OIDC IdP logout endpoint used to configure your private workforce.

§
TokenEndpoint: string
[src]

The OIDC IdP token endpoint used to configure your private workforce.

§
UserInfoEndpoint: string
[src]

The OIDC IdP user information endpoint used to configure your private workforce.