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

OAuth2Defaults

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

Contains the default values required for OAuth 2.0 authentication.

interface OAuth2Defaults {
authCodeUrls?: string[] | null;
oauth2CustomProperties?: OAuth2CustomParameter[] | null;
oauth2GrantTypesSupported?: OAuth2GrantType[] | null;
oauthScopes?: string[] | null;
tokenUrls?: string[] | null;
}

§Properties

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

Auth code URLs that can be used for OAuth 2.0 authentication.

§
oauth2CustomProperties?: OAuth2CustomParameter[] | null
[src]

List of custom parameters required for OAuth 2.0 authentication.

§
oauth2GrantTypesSupported?: OAuth2GrantType[] | null
[src]

OAuth 2.0 grant types supported by the connector.

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

OAuth 2.0 scopes that the connector supports.

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

Token URLs that can be used for OAuth 2.0 authentication.