interface CrawlFilterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataSourcePropsMixin.CrawlFilterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataSourcePropsMixin_CrawlFilterConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataSourcePropsMixin.CrawlFilterConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataSourcePropsMixin.CrawlFilterConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataSourcePropsMixin » CrawlFilterConfigurationProperty |
The configuration of filtering the data source content.
For example, configuring regular expression patterns to include or exclude certain 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 crawlFilterConfigurationProperty: bedrock_mixins.CfnDataSourcePropsMixin.CrawlFilterConfigurationProperty = {
patternObjectFilter: {
filters: [{
exclusionFilters: ['exclusionFilters'],
inclusionFilters: ['inclusionFilters'],
objectType: 'objectType',
}],
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| pattern | IResolvable | Pattern | The configuration of filtering certain objects or content types of the data source. |
| type? | string | The type of filtering that you want to apply to certain objects or content of the data source. |
patternObjectFilter?
Type:
IResolvable | Pattern
(optional)
The configuration of filtering certain objects or content types of the data source.
type?
Type:
string
(optional)
The type of filtering that you want to apply to certain objects or content of the data source.
For example, the PATTERN type is regular expression patterns you can apply to filter your content.

.NET
Go
Java
Python
TypeScript