Interface CfnPipeline.FilterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPipeline.FilterProperty.Jsii$Proxy
- Enclosing class:
- CfnPipeline
@Stability(Stable)
public static interface CfnPipeline.FilterProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.iotanalytics.*; FilterProperty filterProperty = FilterProperty.builder() .filter("filter") .name("name") // the properties below are optional .next("next") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPipeline.FilterProperty
static final class
An implementation forCfnPipeline.FilterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFilter
An expression that looks like an SQL WHERE clause that must return a Boolean value. -
getName
The name of the 'filter' activity. -
getNext
The next activity in the pipeline. -
builder
- Returns:
- a
CfnPipeline.FilterProperty.Builder
ofCfnPipeline.FilterProperty
-