DataSourceSharePointConfiguration

data class DataSourceSharePointConfiguration(val crawlAttachments: Boolean? = null, val disableLocalGroups: Boolean? = null, val documentTitleFieldName: String? = null, val exclusionPatterns: List<String>? = null, val fieldMappings: List<DataSourceToIndexFieldMapping>? = null, val inclusionPatterns: List<String>? = null, val secretArn: String, val sharePointVersion: DataSourceSharePointConfigurationSharePointVersion, val sslCertificateS3Path: DataSourceS3Path? = null, val urls: List<String>, val useChangeLog: Boolean? = null, val vpcConfiguration: DataSourceVpcConfiguration? = null)

SharePoint configuration

Constructors

Link copied to clipboard
constructor(crawlAttachments: Boolean? = null, disableLocalGroups: Boolean? = null, documentTitleFieldName: String? = null, exclusionPatterns: List<String>? = null, fieldMappings: List<DataSourceToIndexFieldMapping>? = null, inclusionPatterns: List<String>? = null, secretArn: String, sharePointVersion: DataSourceSharePointConfigurationSharePointVersion, sslCertificateS3Path: DataSourceS3Path? = null, urls: List<String>, useChangeLog: Boolean? = null, vpcConfiguration: DataSourceVpcConfiguration? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

TRUE to index document attachments.

Link copied to clipboard

TRUE to disable local groups information.

Link copied to clipboard

The Microsoft SharePoint attribute field that contains the title of the document.

Link copied to clipboard

A list of regular expression patterns. Documents that match the patterns are excluded from the index. Documents that don't match the patterns are included in the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index. The regex is applied to the display URL of the SharePoint document.

Link copied to clipboard

A list of DataSourceToIndexFieldMapping objects that map Microsoft SharePoint attributes or fields to Amazon Kendra index fields. You must first create the index fields using the UpdateIndex operation before you map SharePoint attributes. For more information, see Mapping Data Source Fields .

Link copied to clipboard

A list of regular expression patterns to include certain documents in your SharePoint. Documents that match the patterns are included in the index. Documents that don't match the patterns are excluded from the index. If a document matches both an inclusion and exclusion pattern, the exclusion pattern takes precedence and the document isn't included in the index. The regex applies to the display URL of the SharePoint document.

Link copied to clipboard

The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the user name and password required to connect to the SharePoint instance. For more information, see Microsoft SharePoint .

Link copied to clipboard

The version of Microsoft SharePoint that you use.

Link copied to clipboard

Information required to find a specific file in an Amazon S3 bucket.

Link copied to clipboard

The Microsoft SharePoint site URLs for the documents you want to index.

Link copied to clipboard
val useChangeLog: Boolean? = null

TRUE to use the SharePoint change log to determine which documents require updating in the index. Depending on the change log's size, it may take longer for Amazon Kendra to use the change log than to scan all of your documents in SharePoint.

Link copied to clipboard

Provides information for connecting to an Amazon VPC.