@Stability(value=Stable)
public static interface CfnDataSource.OneDriveUsersProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSource.OneDriveUsersProperty.Builder
A builder for
CfnDataSource.OneDriveUsersProperty |
static class |
CfnDataSource.OneDriveUsersProperty.Jsii$Proxy
An implementation for
CfnDataSource.OneDriveUsersProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSource.OneDriveUsersProperty.Builder |
builder() |
default List<String> |
getOneDriveUserList()
A list of users whose documents should be indexed.
|
default Object |
getOneDriveUserS3Path()
The S3 bucket location of a file containing a list of users whose documents should be indexed.
|
@Stability(value=Stable) @Nullable default List<String> getOneDriveUserList()
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.
@Stability(value=Stable) @Nullable default Object getOneDriveUserS3Path()
@Stability(value=Stable) static CfnDataSource.OneDriveUsersProperty.Builder builder()
Copyright © 2022. All rights reserved.