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

SlackConnectorProfileCredentials

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

The connector-specific profile credentials required when using Slack.

interface SlackConnectorProfileCredentials {
accessToken?: string | null;
clientId: string;
clientSecret: string;
oAuthRequest?: ConnectorOAuthRequest | null;
}

§Properties

§
accessToken?: string | null
[src]

The credentials used to access protected Slack resources.

§
clientId: string
[src]

The identifier for the client.

§
clientSecret: string
[src]

The client secret used by the OAuth client to authenticate to the authorization server.

§
oAuthRequest?: ConnectorOAuthRequest | null
[src]

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