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();
 

See Also: