Interface CfnDataSource.OneDriveUsersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSource.OneDriveUsersProperty.Jsii$Proxy
- Enclosing class:
CfnDataSource
@Stability(Stable)
public static interface CfnDataSource.OneDriveUsersProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.kendra.*; OneDriveUsersProperty oneDriveUsersProperty = OneDriveUsersProperty.builder() .oneDriveUserList(List.of("oneDriveUserList")) .oneDriveUserS3Path(S3PathProperty.builder() .bucket("bucket") .key("key") .build()) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.OneDriveUsersProperty
static final class
An implementation forCfnDataSource.OneDriveUsersProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getOneDriveUserList
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 theOneDriveUserS3Path
field to specify the location of a file containing a list of users.- See Also:
-
getOneDriveUserS3Path
The S3 bucket location of a file containing a list of users whose documents should be indexed.- See Also:
-
builder
-