interface PatternObjectFilterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Bedrock.Mixins.CfnDataSourcePropsMixin.PatternObjectFilterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsbedrock/mixins#CfnDataSourcePropsMixin_PatternObjectFilterConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.bedrock.mixins.CfnDataSourcePropsMixin.PatternObjectFilterConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_bedrock.mixins.CfnDataSourcePropsMixin.PatternObjectFilterConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_bedrock » mixins » CfnDataSourcePropsMixin » 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 { mixins as bedrock_mixins } from '@aws-cdk/mixins-preview/aws-bedrock';
const patternObjectFilterConfigurationProperty: bedrock_mixins.CfnDataSourcePropsMixin.PatternObjectFilterConfigurationProperty = {
filters: [{
exclusionFilters: ['exclusionFilters'],
inclusionFilters: ['inclusionFilters'],
objectType: 'objectType',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| filters? | IResolvable | (IResolvable | Pattern)[] | The configuration of specific filters applied to your data source content. |
filters?
Type:
IResolvable | (IResolvable | Pattern)[]
(optional)
The configuration of specific filters applied to your data source content.
You can filter out or include certain content.

.NET
Go
Java
Python
TypeScript