Module Values.SalesforceChatterFeedConfigurationSource

The configuration information for syncing a Salesforce chatter feed. The contents of the object comes from the Salesforce FeedItem table.

Sourcetype nonrec t = {
  1. 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.

    *)
  2. 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.

    *)
  3. fieldMappings : DataSourceToIndexFieldMappingList.t option;
    (*

    Maps fields from a Salesforce chatter feed into Amazon Kendra index fields.

    *)
  4. 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.

    *)
}
Sourceval context_ : string
Sourceval make : ?documentTitleFieldName:??? -> ?fieldMappings:??? -> ?includeFilterTypes:??? -> documentDataFieldName:DataSourceFieldName.t -> unit -> t
Sourceval 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 ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t