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();
 
  • Method Details

    • getOneDriveUserList

      @Stability(Stable) @Nullable default List<String> 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 100 users, use the OneDriveUserS3Path field to specify the location of a file containing a list of users.

    • getOneDriveUserS3Path

      @Stability(Stable) @Nullable default Object getOneDriveUserS3Path()
      The S3 bucket location of a file containing a list of users whose documents should be indexed.
    • builder

      @Stability(Stable) static CfnDataSource.OneDriveUsersProperty.Builder builder()
      Returns:
      a CfnDataSource.OneDriveUsersProperty.Builder of CfnDataSource.OneDriveUsersProperty