Interface CfnPipe.FilterCriteriaProperty

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

@Stability(Stable) public static interface CfnPipe.FilterCriteriaProperty extends software.amazon.jsii.JsiiSerializable
The collection of event patterns used to filter events.

To remove a filter, specify a FilterCriteria object with an empty array of Filter objects.

For more information, see Events and Event Patterns in the Amazon EventBridge User Guide .

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.pipes.*;
 FilterCriteriaProperty filterCriteriaProperty = FilterCriteriaProperty.builder()
         .filters(List.of(FilterProperty.builder()
                 .pattern("pattern")
                 .build()))
         .build();