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:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDataset.FilterProperty
static final class
An implementation forCfnDataset.FilterProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeltaTime
Used to limit data to that which has arrived since the last execution of the action.- See Also:
-
builder
- Returns:
- a
CfnDataset.FilterProperty.Builder
ofCfnDataset.FilterProperty
-