interface PatternObjectFilterConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnDataSourcePropsMixin.PatternObjectFilterConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnDataSourcePropsMixin_PatternObjectFilterConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnDataSourcePropsMixin.PatternObjectFilterConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnDataSourcePropsMixin.PatternObjectFilterConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » 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 { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
const patternObjectFilterConfigurationProperty: bedrock.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