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: