interface FilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pipes.Mixins.CfnPipePropsMixin.FilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspipes/mixins#CfnPipePropsMixin_FilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.pipes.mixins.CfnPipePropsMixin.FilterProperty |
Python | aws_cdk.mixins_preview.aws_pipes.mixins.CfnPipePropsMixin.FilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_pipes » mixins » CfnPipePropsMixin » FilterProperty |
Filter events using an event pattern.
For more information, see Events and Event Patterns in the Amazon EventBridge User Guide .
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pipes-pipe-filter.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as pipes_mixins } from '@aws-cdk/mixins-preview/aws-pipes';
const filterProperty: pipes_mixins.CfnPipePropsMixin.FilterProperty = {
pattern: 'pattern',
};
Properties
| Name | Type | Description |
|---|---|---|
| pattern? | string | The event pattern. |
pattern?
Type:
string
(optional)
The event pattern.

.NET
Go
Java
Python
TypeScript