interface LateDataRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnDatasetPropsMixin.LateDataRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnDatasetPropsMixin_LateDataRuleProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnDatasetPropsMixin.LateDataRuleProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnDatasetPropsMixin.LateDataRuleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnDatasetPropsMixin » 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 { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const lateDataRuleProperty: iotanalytics_mixins.CfnDatasetPropsMixin.LateDataRuleProperty = {
ruleConfiguration: {
deltaTimeSessionWindowConfiguration: {
timeoutInMinutes: 123,
},
},
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
(optional)
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