Interface CfnDataset.LateDataRuleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDataset.LateDataRuleProperty.Jsii$Proxy
- Enclosing class:
- CfnDataset
@Stability(Stable)
public static interface CfnDataset.LateDataRuleProperty
extends software.amazon.jsii.JsiiSerializable
A structure that contains the name and configuration information of a late data rule.
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.*;
LateDataRuleProperty lateDataRuleProperty = LateDataRuleProperty.builder()
.ruleConfiguration(LateDataRuleConfigurationProperty.builder()
.deltaTimeSessionWindowConfiguration(DeltaTimeSessionWindowConfigurationProperty.builder()
.timeoutInMinutes(123)
.build())
.build())
// the properties below are optional
.ruleName("ruleName")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDataset.LateDataRulePropertystatic final classAn implementation forCfnDataset.LateDataRuleProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getRuleConfiguration
The information needed to configure the late data rule. -
getRuleName
The name of the late data rule. -
builder
-