interface FilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnPipelinePropsMixin.FilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnPipelinePropsMixin_FilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnPipelinePropsMixin.FilterProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnPipelinePropsMixin.FilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnPipelinePropsMixin » FilterProperty |
An activity that filters a message based on its attributes.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const filterProperty: iotanalytics_mixins.CfnPipelinePropsMixin.FilterProperty = {
filter: 'filter',
name: 'name',
next: 'next',
};
Properties
| Name | Type | Description |
|---|---|---|
| filter? | string | An expression that looks like an SQL WHERE clause that must return a Boolean value. |
| name? | string | The name of the 'filter' activity. |
| next? | string | The next activity in the pipeline. |
filter?
Type:
string
(optional)
An expression that looks like an SQL WHERE clause that must return a Boolean value.
name?
Type:
string
(optional)
The name of the 'filter' activity.
next?
Type:
string
(optional)
The next activity in the pipeline.

.NET
Go
Java
Python
TypeScript