@Stability(value=Stable)
public static interface CfnDataSource.SharePointConfigurationProperty
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.*;
SharePointConfigurationProperty sharePointConfigurationProperty = SharePointConfigurationProperty.builder()
.secretArn("secretArn")
.sharePointVersion("sharePointVersion")
.urls(List.of("urls"))
// the properties below are optional
.crawlAttachments(false)
.disableLocalGroups(false)
.documentTitleFieldName("documentTitleFieldName")
.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"))
.sslCertificateS3Path(S3PathProperty.builder()
.bucket("bucket")
.key("key")
.build())
.useChangeLog(false)
.vpcConfiguration(DataSourceVpcConfigurationProperty.builder()
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDataSource.SharePointConfigurationProperty.Builder
A builder for
CfnDataSource.SharePointConfigurationProperty |
static class |
CfnDataSource.SharePointConfigurationProperty.Jsii$Proxy
An implementation for
CfnDataSource.SharePointConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDataSource.SharePointConfigurationProperty.Builder |
builder() |
default Object |
getCrawlAttachments()
`CfnDataSource.SharePointConfigurationProperty.CrawlAttachments`.
|
default Object |
getDisableLocalGroups()
`CfnDataSource.SharePointConfigurationProperty.DisableLocalGroups`.
|
default String |
getDocumentTitleFieldName()
`CfnDataSource.SharePointConfigurationProperty.DocumentTitleFieldName`.
|
default List<String> |
getExclusionPatterns()
`CfnDataSource.SharePointConfigurationProperty.ExclusionPatterns`.
|
default Object |
getFieldMappings()
`CfnDataSource.SharePointConfigurationProperty.FieldMappings`.
|
default List<String> |
getInclusionPatterns()
`CfnDataSource.SharePointConfigurationProperty.InclusionPatterns`.
|
String |
getSecretArn()
`CfnDataSource.SharePointConfigurationProperty.SecretArn`.
|
String |
getSharePointVersion()
`CfnDataSource.SharePointConfigurationProperty.SharePointVersion`.
|
default Object |
getSslCertificateS3Path()
`CfnDataSource.SharePointConfigurationProperty.SslCertificateS3Path`.
|
List<String> |
getUrls()
`CfnDataSource.SharePointConfigurationProperty.Urls`.
|
default Object |
getUseChangeLog()
`CfnDataSource.SharePointConfigurationProperty.UseChangeLog`.
|
default Object |
getVpcConfiguration()
`CfnDataSource.SharePointConfigurationProperty.VpcConfiguration`.
|
@Stability(value=Stable) @Nullable default Object getCrawlAttachments()
@Stability(value=Stable) @Nullable default Object getDisableLocalGroups()
@Stability(value=Stable) @Nullable default String getDocumentTitleFieldName()
@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 String getSecretArn()
@Stability(value=Stable) @NotNull String getSharePointVersion()
@Stability(value=Stable) @Nullable default Object getSslCertificateS3Path()
@Stability(value=Stable) @NotNull List<String> getUrls()
@Stability(value=Stable) @Nullable default Object getUseChangeLog()
@Stability(value=Stable) @Nullable default Object getVpcConfiguration()
@Stability(value=Stable) static CfnDataSource.SharePointConfigurationProperty.Builder builder()
Copyright © 2021. All rights reserved.