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

SalesforceConfiguration

import type { SalesforceConfiguration } from "https://aws-api.deno.dev/v0.3/services/kendra.ts?docs=full";

Provides configuration information for connecting to a Salesforce data source.

interface SalesforceConfiguration {
ChatterFeedConfiguration?: SalesforceChatterFeedConfiguration | null;
CrawlAttachments?: boolean | null;
ExcludeAttachmentFilePatterns?: string[] | null;
IncludeAttachmentFilePatterns?: string[] | null;
KnowledgeArticleConfiguration?: SalesforceKnowledgeArticleConfiguration | null;
SecretArn: string;
ServerUrl: string;
StandardObjectAttachmentConfiguration?: SalesforceStandardObjectAttachmentConfiguration | null;
StandardObjectConfigurations?: SalesforceStandardObjectConfiguration[] | null;
}

§Properties

§
ChatterFeedConfiguration?: SalesforceChatterFeedConfiguration | null
[src]

Specifies configuration information for Salesforce chatter feeds.

§
CrawlAttachments?: boolean | null
[src]

Indicates whether Amazon Kendra should index attachments to Salesforce objects.

§
ExcludeAttachmentFilePatterns?: string[] | null
[src]

A list of regular expression patterns. Documents that match the patterns are excluded from the index. Documents that don't match the patterns are included in the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index.

The regex is applied to the name of the attached file.

§
IncludeAttachmentFilePatterns?: string[] | null
[src]

A list of regular expression patterns. Documents that match the patterns are included in the index. Documents that don't match the patterns are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.

The regex is applied to the name of the attached file.

§
KnowledgeArticleConfiguration?: SalesforceKnowledgeArticleConfiguration | null
[src]

Specifies configuration information for the knowledge article types that Amazon Kendra indexes. Amazon Kendra indexes standard knowledge articles and the standard fields of knowledge articles, or the custom fields of custom knowledge articles, but not both.

§
SecretArn: string
[src]

The Amazon Resource Name (ARN) of an Secrets Managersecret that contains the key/value pairs required to connect to your Salesforce instance. The secret must contain a JSON structure with the following keys:

  • authenticationUrl - The OAUTH endpoint that Amazon Kendra connects to get an OAUTH token.
  • consumerKey - The application public key generated when you created your Salesforce application.
  • consumerSecret - The application private key generated when you created your Salesforce application.
  • password - The password associated with the user logging in to the Salesforce instance.
  • securityToken - The token associated with the user account logging in to the Salesforce instance.
  • username - The user name of the user logging in to the Salesforce instance.
§
ServerUrl: string
[src]

The instance URL for the Salesforce site that you want to index.

§
StandardObjectAttachmentConfiguration?: SalesforceStandardObjectAttachmentConfiguration | null
[src]

Provides configuration information for processing attachments to Salesforce standard objects.

§
StandardObjectConfigurations?: SalesforceStandardObjectConfiguration[] | null
[src]

Specifies the Salesforce standard objects that Amazon Kendra indexes.