Interface CfnDataset.FilterProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataset.FilterProperty.Jsii$Proxy
Enclosing class:
CfnDataset

@Stability(Stable) public static interface CfnDataset.FilterProperty extends software.amazon.jsii.JsiiSerializable
Information which is used to filter message data, to segregate it according to the time frame in which it arrives.

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()
         .deltaTime(DeltaTimeProperty.builder()
                 .offsetSeconds(123)
                 .timeExpression("timeExpression")
                 .build())
         .build();
 

See Also: