Interface CfnDataSource.SharePointDataSourceConfigurationProperty

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

@Stability(Stable) public static interface CfnDataSource.SharePointDataSourceConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration information to connect to SharePoint 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.bedrock.*;
 SharePointDataSourceConfigurationProperty sharePointDataSourceConfigurationProperty = SharePointDataSourceConfigurationProperty.builder()
         .sourceConfiguration(SharePointSourceConfigurationProperty.builder()
                 .authType("authType")
                 .credentialsSecretArn("credentialsSecretArn")
                 .domain("domain")
                 .hostType("hostType")
                 .siteUrls(List.of("siteUrls"))
                 // the properties below are optional
                 .tenantId("tenantId")
                 .build())
         // the properties below are optional
         .crawlerConfiguration(SharePointCrawlerConfigurationProperty.builder()
                 .filterConfiguration(CrawlFilterConfigurationProperty.builder()
                         .type("type")
                         // the properties below are optional
                         .patternObjectFilter(PatternObjectFilterConfigurationProperty.builder()
                                 .filters(List.of(PatternObjectFilterProperty.builder()
                                         .objectType("objectType")
                                         // the properties below are optional
                                         .exclusionFilters(List.of("exclusionFilters"))
                                         .inclusionFilters(List.of("inclusionFilters"))
                                         .build()))
                                 .build())
                         .build())
                 .build())
         .build();
 

See Also: