Module Values.SalesforceStandardObjectAttachmentConfigurationSource

Provides the configuration information for processing attachments to Salesforce standard objects.

Sourcetype nonrec t = {
  1. documentTitleFieldName : DataSourceFieldName.t option;
    (*

    The name of the field used for the document title.

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

    One or more objects that map fields in attachments to Amazon Kendra index fields.

    *)
}
Sourceval make : ?documentTitleFieldName:??? -> ?fieldMappings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure 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