Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SharePointConfiguration

import type { SharePointConfiguration } from "https://aws-api.deno.dev/v0.3/services/kendra.ts?docs=full";

Provides configuration information for connecting to a Microsoft SharePoint data source.

interface SharePointConfiguration {
CrawlAttachments?: boolean | null;
DisableLocalGroups?: boolean | null;
DocumentTitleFieldName?: string | null;
ExclusionPatterns?: string[] | null;
FieldMappings?: DataSourceToIndexFieldMapping[] | null;
InclusionPatterns?: string[] | null;
SecretArn: string;
SharePointVersion: SharePointVersion;
SslCertificateS3Path?: S3Path | null;
Urls: string[];
UseChangeLog?: boolean | null;
VpcConfiguration?: DataSourceVpcConfiguration | null;
}

§Properties

§
CrawlAttachments?: boolean | null
[src]

TRUE to include attachments to documents stored in your Microsoft SharePoint site in the index; otherwise, FALSE.

§
DisableLocalGroups?: boolean | null
[src]

A Boolean value that specifies whether local groups are disabled (True) or enabled (False).

§
DocumentTitleFieldName?: string | null
[src]

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

§
ExclusionPatterns?: string[] | null
[src]

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.

§
FieldMappings?: DataSourceToIndexFieldMapping[] | null
[src]

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

§
InclusionPatterns?: string[] | null
[src]

A list of regular expression patterns. 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 pattern and an exclusion pattern, the document is not included in the index.

The regex is applied to the display URL of the SharePoint document.

§
SecretArn: string
[src]

The Amazon Resource Name (ARN) of credentials stored in Secrets Manager. The credentials should be a user/password pair. If you use SharePoint Server, you also need to provide the sever domain name as part of the credentials. For more information, see Using a Microsoft SharePoint Data Source. For more information about Secrets Manager see What Is Secrets Manager in the Secrets Manager user guide.

§
SharePointVersion: SharePointVersion
[src]

The version of Microsoft SharePoint that you are using as a data source.

§
SslCertificateS3Path?: S3Path | null
[src]
§
Urls: string[]
[src]

The URLs of the Microsoft SharePoint site that contains the documents that should be indexed.

§
UseChangeLog?: boolean | null
[src]

Set to TRUE to use the Microsoft SharePoint change log to determine the documents that need to be updated in the index. Depending on the size of the SharePoint change log, it may take longer for Amazon Kendra to use the change log than it takes it to determine the changed documents using the Amazon Kendra document crawler.

§
VpcConfiguration?: DataSourceVpcConfiguration | null
[src]