Values.SalesforceChatterFeedConfigurationSourceThe configuration information for syncing a Salesforce chatter feed. The contents of the object comes from the Salesforce FeedItem table.
type nonrec t = {documentDataFieldName : DataSourceFieldName.t;The name of the column in the Salesforce FeedItem table that contains the content to index. Typically this is the Body column.
*)documentTitleFieldName : DataSourceFieldName.t option;The name of the column in the Salesforce FeedItem table that contains the title of the document. This is typically the Title column.
*)fieldMappings : DataSourceToIndexFieldMappingList.t option;Maps fields from a Salesforce chatter feed into Amazon Kendra index fields.
*)includeFilterTypes : SalesforceChatterFeedIncludeFilterTypes.t option;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.
*)}val make :
?documentTitleFieldName:??? ->
?fieldMappings:??? ->
?includeFilterTypes:??? ->
documentDataFieldName:DataSourceFieldName.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `List of
[> `Enum of string
| `Structure of
(string * [> `String of DataSourceFieldName.t ]) list ]
list
| `String of DataSourceFieldName.t ])
list ]