Interface CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnDataSourcePropsMixin
@Stability(Stable)
public static interface CfnDataSourcePropsMixin.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.mixins.preview.services.bedrock.mixins.*;
SharePointDataSourceConfigurationProperty sharePointDataSourceConfigurationProperty = SharePointDataSourceConfigurationProperty.builder()
.crawlerConfiguration(SharePointCrawlerConfigurationProperty.builder()
.filterConfiguration(CrawlFilterConfigurationProperty.builder()
.patternObjectFilter(PatternObjectFilterConfigurationProperty.builder()
.filters(List.of(PatternObjectFilterProperty.builder()
.exclusionFilters(List.of("exclusionFilters"))
.inclusionFilters(List.of("inclusionFilters"))
.objectType("objectType")
.build()))
.build())
.type("type")
.build())
.build())
.sourceConfiguration(SharePointSourceConfigurationProperty.builder()
.authType("authType")
.credentialsSecretArn("credentialsSecretArn")
.domain("domain")
.hostType("hostType")
.siteUrls(List.of("siteUrls"))
.tenantId("tenantId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCrawlerConfiguration
The configuration of the SharePoint content.For example, configuring specific types of SharePoint content.
Returns union: either
IResolvableorCfnDataSourcePropsMixin.SharePointCrawlerConfigurationProperty- See Also:
-
getSourceConfiguration
The endpoint information to connect to your SharePoint data source.Returns union: either
IResolvableorCfnDataSourcePropsMixin.SharePointSourceConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnDataSourcePropsMixin.SharePointDataSourceConfigurationProperty.Builder builder()
-