Interface CfnDataSource.ISharePointCrawlerConfigurationProperty
The configuration of the SharePoint content.
Namespace: Amazon.CDK.AwsBedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ISharePointCrawlerConfigurationProperty
Syntax (vb)
Public Interface ISharePointCrawlerConfigurationProperty
Remarks
For example, configuring specific types of SharePoint content.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Aws_bedrock;
var sharePointCrawlerConfigurationProperty = new SharePointCrawlerConfigurationProperty {
FilterConfiguration = new CrawlFilterConfigurationProperty {
Type = "type",
// the properties below are optional
PatternObjectFilter = new PatternObjectFilterConfigurationProperty {
Filters = new [] { new PatternObjectFilterProperty {
ObjectType = "objectType",
// the properties below are optional
ExclusionFilters = new [] { "exclusionFilters" },
InclusionFilters = new [] { "inclusionFilters" }
} }
}
}
};
Synopsis
Properties
Filter |
The configuration of filtering the SharePoint content. |
Properties
FilterConfiguration
The configuration of filtering the SharePoint content.
virtual object FilterConfiguration { get; }
Property Value
System.
Remarks
For example, configuring regular expression patterns to include or exclude certain content.