Module Values.SalesforceStandardObjectConfigurationSource

Provides the configuration information for indexing a single standard object.

Sourcetype nonrec t = {
  1. name : SalesforceStandardObjectName.t;
    (*

    The name of the standard object.

    *)
  2. documentDataFieldName : DataSourceFieldName.t;
    (*

    The name of the field in the standard object table that contains the document contents.

    *)
  3. documentTitleFieldName : DataSourceFieldName.t option;
    (*

    The name of the field in the standard object table that contains the document title.

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

    Maps attributes or field names of the standard object to Amazon Kendra index field names. To create custom fields, use the UpdateIndex API before you map to Salesforce fields. For more information, see Mapping data source fields. The Salesforce data source field names must exist in your Salesforce custom metadata.

    *)
}
Sourceval context_ : string
Sourceval make : ?documentTitleFieldName:??? -> ?fieldMappings:??? -> name:SalesforceStandardObjectName.t -> documentDataFieldName:DataSourceFieldName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `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