interface LateDataRuleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTAnalytics.CfnDatasetPropsMixin.LateDataRuleProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotanalytics#CfnDatasetPropsMixin_LateDataRuleProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotanalytics.CfnDatasetPropsMixin.LateDataRuleProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotanalytics.CfnDatasetPropsMixin.LateDataRuleProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotanalytics » 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 { aws_iotanalytics as iotanalytics } from '@aws-cdk/cfn-property-mixins';
const lateDataRuleProperty: iotanalytics.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