interface OneDriveUsersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Kendra.Mixins.CfnDataSourcePropsMixin.OneDriveUsersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskendra/mixins#CfnDataSourcePropsMixin_OneDriveUsersProperty |
Java | software.amazon.awscdk.mixins.preview.services.kendra.mixins.CfnDataSourcePropsMixin.OneDriveUsersProperty |
Python | aws_cdk.mixins_preview.aws_kendra.mixins.CfnDataSourcePropsMixin.OneDriveUsersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kendra » mixins » CfnDataSourcePropsMixin » 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 { mixins as kendra_mixins } from '@aws-cdk/mixins-preview/aws-kendra';
const oneDriveUsersProperty: kendra_mixins.CfnDataSourcePropsMixin.OneDriveUsersProperty = {
oneDriveUserList: ['oneDriveUserList'],
oneDriveUserS3Path: {
bucket: 'bucket',
key: 'key',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| one | string[] | A list of users whose documents should be indexed. |
| one | IResolvable | S3 | The 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 10 users, use the OneDriveUserS3Path field to specify the location of a file containing a list of users.
oneDriveUserS3Path?
Type:
IResolvable | S3
(optional)
The S3 bucket location of a file containing a list of users whose documents should be indexed.

.NET
Go
Java
Python
TypeScript