@Stability(value=Stable)
public static interface CfnDataSource.OneDriveConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
// 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSource.OneDriveConfigurationProperty.Builder
A builder for
CfnDataSource.OneDriveConfigurationProperty |
static class |
CfnDataSource.OneDriveConfigurationProperty.Jsii$Proxy
An implementation for
CfnDataSource.OneDriveConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSource.OneDriveConfigurationProperty.Builder |
builder() |
default Object |
getDisableLocalGroups()
`CfnDataSource.OneDriveConfigurationProperty.DisableLocalGroups`.
|
default List<String> |
getExclusionPatterns()
`CfnDataSource.OneDriveConfigurationProperty.ExclusionPatterns`.
|
default Object |
getFieldMappings()
`CfnDataSource.OneDriveConfigurationProperty.FieldMappings`.
|
default List<String> |
getInclusionPatterns()
`CfnDataSource.OneDriveConfigurationProperty.InclusionPatterns`.
|
Object |
getOneDriveUsers()
`CfnDataSource.OneDriveConfigurationProperty.OneDriveUsers`.
|
String |
getSecretArn()
`CfnDataSource.OneDriveConfigurationProperty.SecretArn`.
|
String |
getTenantDomain()
`CfnDataSource.OneDriveConfigurationProperty.TenantDomain`.
|
@Stability(value=Stable) @Nullable default Object getDisableLocalGroups()
@Stability(value=Stable) @Nullable default List<String> getExclusionPatterns()
@Stability(value=Stable) @Nullable default Object getFieldMappings()
@Stability(value=Stable) @Nullable default List<String> getInclusionPatterns()
@Stability(value=Stable) @NotNull Object getOneDriveUsers()
@Stability(value=Stable) @NotNull String getSecretArn()
@Stability(value=Stable) @NotNull String getTenantDomain()
@Stability(value=Stable) static CfnDataSource.OneDriveConfigurationProperty.Builder builder()
Copyright © 2021. All rights reserved.