aws-cdk-lib.aws_iotanalytics.CfnPipeline.FilterProperty

interface FilterProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTAnalytics.CfnPipeline.FilterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnPipeline_FilterProperty
Javasoftware.amazon.awscdk.services.iotanalytics.CfnPipeline.FilterProperty
Pythonaws_cdk.aws_iotanalytics.CfnPipeline.FilterProperty
TypeScript aws-cdk-lib » 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 { aws_iotanalytics as iotanalytics } from 'aws-cdk-lib';
const filterProperty: iotanalytics.CfnPipeline.FilterProperty = {
  filter: 'filter',
  name: 'name',

  // the properties below are optional
  next: 'next',
};

Properties

NameTypeDescription
filterstringAn expression that looks like an SQL WHERE clause that must return a Boolean value.
namestringThe name of the 'filter' activity.
next?stringThe 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.