interface FilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTAnalytics.CfnPipeline.FilterProperty |
Java | software.amazon.awscdk.services.iotanalytics.CfnPipeline.FilterProperty |
Python | aws_cdk.aws_iotanalytics.CfnPipeline.FilterProperty |
TypeScript | @aws-cdk/aws-iotanalytics » CfnPipeline » 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 * as iotanalytics from '@aws-cdk/aws-iotanalytics';
const filterProperty: iotanalytics.CfnPipeline.FilterProperty = {
filter: 'filter',
name: 'name',
// the properties below are optional
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
An expression that looks like an SQL WHERE clause that must return a Boolean value.
name
Type:
string
The name of the 'filter' activity.
next?
Type:
string
(optional)
The next activity in the pipeline.

.NET
Java
Python
TypeScript