Interface CfnDataSource.PatternObjectFilterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSource.PatternObjectFilterProperty.Jsii$Proxy
Enclosing class:
CfnDataSource

@Stability(Stable) public static interface CfnDataSource.PatternObjectFilterProperty extends software.amazon.jsii.JsiiSerializable
The specific filters applied to your data source content.

You can filter out or include certain content.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrock.*;
 PatternObjectFilterProperty patternObjectFilterProperty = PatternObjectFilterProperty.builder()
         .objectType("objectType")
         // the properties below are optional
         .exclusionFilters(List.of("exclusionFilters"))
         .inclusionFilters(List.of("inclusionFilters"))
         .build();
 

See Also: