Module Values.ConfluenceAttachmentConfigurationSource

Configuration of attachment settings for the Confluence data source. Attachment settings are optional, if you don't specify settings attachments, Amazon Kendra won't index them.

Sourcetype nonrec t = {
  1. crawlAttachments : Boolean.t option;
    (*

    TRUE to index attachments of pages and blogs in Confluence.

    *)
  2. attachmentFieldMappings : ConfluenceAttachmentFieldMappingsList.t option;
    (*

    Maps attributes or field names of Confluence attachments to Amazon Kendra index field names. To create custom fields, use the UpdateIndex API before you map to Confluence fields. For more information, see Mapping data source fields. The Confluence data source field names must exist in your Confluence custom metadata. If you specify the AttachentFieldMappings parameter, you must specify at least one field mapping.

    *)
}
Sourceval make : ?crawlAttachments:??? -> ?attachmentFieldMappings:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Enum of string | `String of DataSourceDateFieldFormat.t ]) list ] list ]) 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