Data Source Salesforce Chatter Feed Configuration
data class DataSourceSalesforceChatterFeedConfiguration(val documentDataFieldName: String, val documentTitleFieldName: String? = null, val fieldMappings: List<DataSourceToIndexFieldMapping>? = null, val includeFilterTypes: List<DataSourceSalesforceChatterFeedIncludeFilterType>? = null)
Constructors
Link copied to clipboard
constructor(documentDataFieldName: String, documentTitleFieldName: String? = null, fieldMappings: List<DataSourceToIndexFieldMapping>? = null, includeFilterTypes: List<DataSourceSalesforceChatterFeedIncludeFilterType>? = null)
Properties
Link copied to clipboard
The name of the column in the Salesforce FeedItem table that contains the content to index. Typically this is the Body
column.
Link copied to clipboard
The name of the column in the Salesforce FeedItem table that contains the title of the document. This is typically the Title
column.
Link copied to clipboard
Maps fields from a Salesforce chatter feed into Amazon Kendra index fields.
Link copied to clipboard
Filters the documents in the feed based on status of the user. When you specify ACTIVE_USERS
only documents from users who have an active account are indexed. When you specify STANDARD_USER
only documents for Salesforce standard users are documented. You can specify both.