Interface CfnDataSource.OneDriveConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSource.OneDriveConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Provides the configuration information to connect to OneDrive as your data source.

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.*;
 OneDriveConfigurationProperty oneDriveConfigurationProperty = OneDriveConfigurationProperty.builder()
         .oneDriveUsers(OneDriveUsersProperty.builder()
                 .oneDriveUserList(List.of("oneDriveUserList"))
                 .oneDriveUserS3Path(S3PathProperty.builder()
                         .bucket("bucket")
                         .key("key")
                         .build())
                 .build())
         .secretArn("secretArn")
         .tenantDomain("tenantDomain")
         // the properties below are optional
         .disableLocalGroups(false)
         .exclusionPatterns(List.of("exclusionPatterns"))
         .fieldMappings(List.of(DataSourceToIndexFieldMappingProperty.builder()
                 .dataSourceFieldName("dataSourceFieldName")
                 .indexFieldName("indexFieldName")
                 // the properties below are optional
                 .dateFieldFormat("dateFieldFormat")
                 .build()))
         .inclusionPatterns(List.of("inclusionPatterns"))
         .build();
 

See Also: