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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataSource.SharePointDataSourceConfigurationProperty
static final class
An implementation forCfnDataSource.SharePointDataSourceConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSourceConfiguration
The endpoint information to connect to your SharePoint data source.- See Also:
-
getCrawlerConfiguration
The configuration of the SharePoint content.For example, configuring specific types of SharePoint content.
- See Also:
-
builder
-