interface SharePointCrawlerConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataSourcePropsMixin.SharePointCrawlerConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataSourcePropsMixin_SharePointCrawlerConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataSourcePropsMixin.SharePointCrawlerConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataSourcePropsMixin.SharePointCrawlerConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataSourcePropsMixin » SharePointCrawlerConfigurationProperty |
The configuration of the SharePoint content.
For example, configuring specific types of SharePoint content.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const sharePointCrawlerConfigurationProperty: bedrock_mixins.CfnDataSourcePropsMixin.SharePointCrawlerConfigurationProperty = {
filterConfiguration: {
patternObjectFilter: {
filters: [{
exclusionFilters: ['exclusionFilters'],
inclusionFilters: ['inclusionFilters'],
objectType: 'objectType',
}],
},
type: 'type',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| filter | IResolvable | Crawl | The configuration of filtering the SharePoint content. |
filterConfiguration?
Type:
IResolvable | Crawl
(optional)
The configuration of filtering the SharePoint content.
For example, configuring regular expression patterns to include or exclude certain content.

.NET
Go
Java
Python
TypeScript