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

OneDriveConfiguration

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

Provides the configuration information to connect to OneDrive as your data source.

interface OneDriveConfiguration {
DisableLocalGroups?: boolean | null;
ExclusionPatterns?: string[] | null;
FieldMappings?: DataSourceToIndexFieldMapping[] | null;
InclusionPatterns?: string[] | null;
OneDriveUsers: OneDriveUsers;
SecretArn: string;
TenantDomain: string;
}

§Properties

§
DisableLocalGroups?: boolean | null
[src]

TRUE to disable local groups information.

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

A list of regular expression patterns to exclude certain documents in your OneDrive. 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 inclusion and exclusion pattern, the exclusion pattern takes precedence and the document isn't included in the index.

The pattern is applied to the file name.

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

A list of DataSourceToIndexFieldMapping objects that map OneDrive data source attributes or field names to Amazon Kendra index field names. To create custom fields, use the UpdateIndex API before you map to OneDrive fields. For more information, see Mapping data source fields. The OneDrive data source field names must exist in your OneDrive custom metadata.

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

A list of regular expression patterns to include certain documents in your OneDrive. 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 pattern is applied to the file name.

§
OneDriveUsers: OneDriveUsers
[src]

A list of user accounts whose documents should be indexed.

§
SecretArn: string
[src]

The Amazon Resource Name (ARN) of an Secrets Managersecret that contains the user name and password to connect to OneDrive. The user name should be the application ID for the OneDrive application, and the password is the application key for the OneDrive application.

§
TenantDomain: string
[src]

The Azure Active Directory domain of the organization.