interface LateDataRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTAnalytics.CfnDataset.LateDataRuleProperty |
Java | software.amazon.awscdk.services.iotanalytics.CfnDataset.LateDataRuleProperty |
Python | aws_cdk.aws_iotanalytics.CfnDataset.LateDataRuleProperty |
TypeScript | @aws-cdk/aws-iotanalytics » CfnDataset » LateDataRuleProperty |
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 * as iotanalytics from '@aws-cdk/aws-iotanalytics';
const lateDataRuleProperty: iotanalytics.CfnDataset.LateDataRuleProperty = {
ruleConfiguration: {
deltaTimeSessionWindowConfiguration: {
timeoutInMinutes: 123,
},
},
// the properties below are optional
ruleName: 'ruleName',
};
Properties
| Name | Type | Description |
|---|---|---|
| rule | IResolvable | Late | The information needed to configure the late data rule. |
| rule | string | The name of the late data rule. |
ruleConfiguration
Type:
IResolvable | Late
The information needed to configure the late data rule.
ruleName?
Type:
string
(optional)
The name of the late data rule.

.NET
Java
Python
TypeScript