interface OneDriveUsersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Kendra.CfnDataSourcePropsMixin.OneDriveUsersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskendra#CfnDataSourcePropsMixin_OneDriveUsersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.kendra.CfnDataSourcePropsMixin.OneDriveUsersProperty |
Python | aws_cdk.cfn_property_mixins.aws_kendra.CfnDataSourcePropsMixin.OneDriveUsersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kendra » 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 { aws_kendra as kendra } from '@aws-cdk/cfn-property-mixins';
const oneDriveUsersProperty: kendra.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