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

AuthenticationConfig

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

Contains information about the authentication config that the connector supports.

interface AuthenticationConfig {
customAuthConfigs?: CustomAuthConfig[] | null;
isApiKeyAuthSupported?: boolean | null;
isBasicAuthSupported?: boolean | null;
isCustomAuthSupported?: boolean | null;
isOAuth2Supported?: boolean | null;
oAuth2Defaults?: OAuth2Defaults | null;
}

§Properties

§
customAuthConfigs?: CustomAuthConfig[] | null
[src]

Contains information required for custom authentication.

§
isApiKeyAuthSupported?: boolean | null
[src]

Indicates whether API key authentication is supported by the connector

§
isBasicAuthSupported?: boolean | null
[src]

Indicates whether basic authentication is supported by the connector.

§
isCustomAuthSupported?: boolean | null
[src]

Indicates whether custom authentication is supported by the connector

§
isOAuth2Supported?: boolean | null
[src]

Indicates whether OAuth 2.0 authentication is supported by the connector.

§
oAuth2Defaults?: OAuth2Defaults | null
[src]

Contains the default values required for OAuth 2.0 authentication.