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

CustomConnectorProfileCredentials

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

The connector-specific profile credentials that are required when using the custom connector.

interface CustomConnectorProfileCredentials {
apiKey?: ApiKeyCredentials | null;
authenticationType: AuthenticationType;
basic?: BasicAuthCredentials | null;
custom?: CustomAuthCredentials | null;
oauth2?: OAuth2Credentials | null;
}

§Properties

§
apiKey?: ApiKeyCredentials | null
[src]

The API keys required for the authentication of the user.

§
authenticationType: AuthenticationType
[src]

The authentication type that the custom connector uses for authenticating while creating a connector profile.

§

The basic credentials that are required for the authentication of the user.

§

If the connector uses the custom authentication mechanism, this holds the required credentials.

§
oauth2?: OAuth2Credentials | null
[src]

The OAuth 2.0 credentials required for the authentication of the user.