Class CfnDatasetPropsMixin.LateDataRuleProperty
A structure that contains the name and configuration information of a late data rule.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDatasetPropsMixin.LateDataRuleProperty : CfnDatasetPropsMixin.ILateDataRuleProperty
Syntax (vb)
Public Class CfnDatasetPropsMixin.LateDataRuleProperty Implements CfnDatasetPropsMixin.ILateDataRuleProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins;
var lateDataRuleProperty = new LateDataRuleProperty {
RuleConfiguration = new LateDataRuleConfigurationProperty {
DeltaTimeSessionWindowConfiguration = new DeltaTimeSessionWindowConfigurationProperty {
TimeoutInMinutes = 123
}
},
RuleName = "ruleName"
};
Synopsis
Constructors
| LateDataRuleProperty() | A structure that contains the name and configuration information of a late data rule. |
Properties
| RuleConfiguration | The information needed to configure the late data rule. |
| RuleName | The name of the late data rule. |
Constructors
LateDataRuleProperty()
A structure that contains the name and configuration information of a late data rule.
public LateDataRuleProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins;
var lateDataRuleProperty = new LateDataRuleProperty {
RuleConfiguration = new LateDataRuleConfigurationProperty {
DeltaTimeSessionWindowConfiguration = new DeltaTimeSessionWindowConfigurationProperty {
TimeoutInMinutes = 123
}
},
RuleName = "ruleName"
};
Properties
RuleConfiguration
The information needed to configure the late data rule.
public object? RuleConfiguration { get; set; }
Property Value
Remarks
RuleName
The name of the late data rule.
public string? RuleName { get; set; }