Class CfnPipePropsMixin.FilterCriteriaProperty
The collection of event patterns used to filter events.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Pipes
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnPipePropsMixin.FilterCriteriaProperty : CfnPipePropsMixin.IFilterCriteriaProperty
Syntax (vb)
Public Class CfnPipePropsMixin.FilterCriteriaProperty Implements CfnPipePropsMixin.IFilterCriteriaProperty
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Pipes;
var filterCriteriaProperty = new FilterCriteriaProperty {
Filters = new [] { new FilterProperty {
Pattern = "pattern"
} }
};
Synopsis
Constructors
| FilterCriteriaProperty() | The collection of event patterns used to filter events. |
Properties
| Filters | The event patterns. |
Constructors
FilterCriteriaProperty()
The collection of event patterns used to filter events.
public FilterCriteriaProperty()
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Pipes;
var filterCriteriaProperty = new FilterCriteriaProperty {
Filters = new [] { new FilterProperty {
Pattern = "pattern"
} }
};
Properties
Filters
The event patterns.
public object? Filters { get; set; }