aws-cdk-lib.aws_kendra.CfnDataSource.OneDriveUsersProperty

interface OneDriveUsersProperty

LanguageType name
.NETAmazon.CDK.AWS.Kendra.CfnDataSource.OneDriveUsersProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskendra#CfnDataSource_OneDriveUsersProperty
Javasoftware.amazon.awscdk.services.kendra.CfnDataSource.OneDriveUsersProperty
Pythonaws_cdk.aws_kendra.CfnDataSource.OneDriveUsersProperty
TypeScript aws-cdk-lib » aws_kendra » CfnDataSource » OneDriveUsersProperty

User accounts whose documents should be indexed.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kendra as kendra } from 'aws-cdk-lib';
const oneDriveUsersProperty: kendra.CfnDataSource.OneDriveUsersProperty = {
  oneDriveUserList: ['oneDriveUserList'],
  oneDriveUserS3Path: {
    bucket: 'bucket',
    key: 'key',
  },
};

Properties

NameTypeDescription
oneDriveUserList?string[]A list of users whose documents should be indexed.
oneDriveUserS3Path?IResolvable | S3PathPropertyThe S3 bucket location of a file containing a list of users whose documents should be indexed.

oneDriveUserList?

Type: string[] (optional)

A list of users whose documents should be indexed.

Specify the user names in email format, for example, username@tenantdomain . If you need to index the documents of more than 100 users, use the OneDriveUserS3Path field to specify the location of a file containing a list of users.


oneDriveUserS3Path?

Type: IResolvable | S3PathProperty (optional)

The S3 bucket location of a file containing a list of users whose documents should be indexed.