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

SalesforceConnectorProfileCredentials

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

The connector-specific profile credentials required when using Salesforce.

interface SalesforceConnectorProfileCredentials {
accessToken?: string | null;
clientCredentialsArn?: string | null;
oAuthRequest?: ConnectorOAuthRequest | null;
refreshToken?: string | null;
}

§Properties

§
accessToken?: string | null
[src]

The credentials used to access protected Salesforce resources.

§
clientCredentialsArn?: string | null
[src]

The secret manager ARN, which contains the client ID and client secret of the connected app.

§
oAuthRequest?: ConnectorOAuthRequest | null
[src]

The OAuth requirement needed to request security tokens from the connector endpoint.

§
refreshToken?: string | null
[src]

The credentials used to acquire new access tokens.