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

OAuth2Properties

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

The OAuth 2.0 properties required for OAuth 2.0 authentication.

interface OAuth2Properties {
oAuth2GrantType: OAuth2GrantType;
tokenUrl: string;
tokenUrlCustomProperties?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
oAuth2GrantType: OAuth2GrantType
[src]

The OAuth 2.0 grant type used by connector for OAuth 2.0 authentication.

§
tokenUrl: string
[src]

The token URL required for OAuth 2.0 authentication.

§
tokenUrlCustomProperties?: {
[key: string]: string | null | undefined;
}
| null
[src]

Associates your token URL with a map of properties that you define. Use this parameter to provide any additional details that the connector requires to authenticate your request.