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

See Also: