Interface CfnDataSourcePropsMixin.OneDriveUsersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSourcePropsMixin.OneDriveUsersProperty.Jsii$Proxy
Enclosing class:
CfnDataSourcePropsMixin

@Stability(Stable) public static interface CfnDataSourcePropsMixin.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.cfnpropertymixins.services.kendra.*;
 OneDriveUsersProperty oneDriveUsersProperty = OneDriveUsersProperty.builder()
         .oneDriveUserList(List.of("oneDriveUserList"))
         .oneDriveUserS3Path(S3PathProperty.builder()
                 .bucket("bucket")
                 .key("key")
                 .build())
         .build();
 

See Also: