Interface CfnPipeline.IFilterProperty
An activity that filters a message based on its attributes.
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFilterProperty
Syntax (vb)
Public Interface IFilterProperty
Remarks
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.AWS.IoTAnalytics;
var filterProperty = new FilterProperty {
Filter = "filter",
Name = "name",
// the properties below are optional
Next = "next"
};
Synopsis
Properties
Filter | An expression that looks like an SQL WHERE clause that must return a Boolean value. |
Name | The name of the 'filter' activity. |
Next | The next activity in the pipeline. |
Properties
Filter
An expression that looks like an SQL WHERE clause that must return a Boolean value.
string Filter { get; }
Property Value
System.
Remarks
Name
The name of the 'filter' activity.
string Name { get; }
Property Value
System.
Remarks
Next
The next activity in the pipeline.
virtual string Next { get; }
Property Value
System.