interface PatternObjectFilterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Bedrock.CfnDataSource.PatternObjectFilterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrock#CfnDataSource_PatternObjectFilterConfigurationProperty |
Java | software.amazon.awscdk.services.bedrock.CfnDataSource.PatternObjectFilterConfigurationProperty |
Python | aws_cdk.aws_bedrock.CfnDataSource.PatternObjectFilterConfigurationProperty |
TypeScript | aws-cdk-lib » aws_bedrock » CfnDataSource » PatternObjectFilterConfigurationProperty |
The configuration of filtering certain objects or content types of the data source.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from 'aws-cdk-lib';
const patternObjectFilterConfigurationProperty: bedrock.CfnDataSource.PatternObjectFilterConfigurationProperty = {
filters: [{
objectType: 'objectType',
// the properties below are optional
exclusionFilters: ['exclusionFilters'],
inclusionFilters: ['inclusionFilters'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| filters | IResolvable | (IResolvable | Pattern)[] | The configuration of specific filters applied to your data source content. |
filters
Type:
IResolvable | (IResolvable | Pattern)[]
The configuration of specific filters applied to your data source content.
You can filter out or include certain content.

.NET
Go
Java
Python
TypeScript