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

ServiceNowServiceCatalogConfiguration

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

Provides configuration information for crawling service catalog items in the ServiceNow site

interface ServiceNowServiceCatalogConfiguration {
CrawlAttachments?: boolean | null;
DocumentDataFieldName: string;
DocumentTitleFieldName?: string | null;
ExcludeAttachmentFilePatterns?: string[] | null;
FieldMappings?: DataSourceToIndexFieldMapping[] | null;
IncludeAttachmentFilePatterns?: string[] | null;
}

§Properties

§
CrawlAttachments?: boolean | null
[src]

Indicates whether Amazon Kendra should crawl attachments to the service catalog items.

§
DocumentDataFieldName: string
[src]

The name of the ServiceNow field that is mapped to the index document contents field in the Amazon Kendra index.

§
DocumentTitleFieldName?: string | null
[src]

The name of the ServiceNow field that is mapped to the index document title field.

§
ExcludeAttachmentFilePatterns?: 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 file name of the attachment.

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

Mapping between ServiceNow fields and Amazon Kendra index fields. You must create the index field before you map the field.

§
IncludeAttachmentFilePatterns?: 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 exclusion pattern and an inclusion pattern, the document is not included in the index.

The regex is applied to the file name of the attachment.