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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataset.FilterPropertystatic final classAn 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.Returns union: either
IResolvableorCfnDataset.DeltaTimeProperty- See Also:
-
builder
- Returns:
- a
CfnDataset.FilterProperty.BuilderofCfnDataset.FilterProperty
-