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.3/services/kendra.ts?docs=full";

Provides configuration information for data sources that connect to OneDrive.

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]

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

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

List of regular expressions applied to documents. Items that match the exclusion pattern are not indexed. If you provide both an inclusion pattern and an exclusion pattern, any item that matches the exclusion pattern isn't indexed.

The exclusion pattern is applied to the file name.

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

A list of DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to custom fields in the Amazon Kendra index. You must first create the index fields before you map OneDrive fields.

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

A list of regular expression patterns. Documents that match the pattern are included in the index. Documents that don't match the pattern 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 exclusion 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 namd 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.