interface LateDataRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTAnalytics.CfnDataset.LateDataRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnDataset_LateDataRuleProperty |
Java | software.amazon.awscdk.services.iotanalytics.CfnDataset.LateDataRuleProperty |
Python | aws_cdk.aws_iotanalytics.CfnDataset.LateDataRuleProperty |
TypeScript | aws-cdk-lib » 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 { aws_iotanalytics as iotanalytics } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript