aws-cdk-lib.aws_iotanalytics.CfnDataset.LateDataRuleProperty

interface LateDataRuleProperty

LanguageType name
.NETAmazon.CDK.AWS.IoTAnalytics.CfnDataset.LateDataRuleProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsiotanalytics#CfnDataset_LateDataRuleProperty
Javasoftware.amazon.awscdk.services.iotanalytics.CfnDataset.LateDataRuleProperty
Pythonaws_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

NameTypeDescription
ruleConfigurationIResolvable | LateDataRuleConfigurationPropertyThe information needed to configure the late data rule.
ruleName?stringThe name of the late data rule.

ruleConfiguration

Type: IResolvable | LateDataRuleConfigurationProperty

The information needed to configure the late data rule.


ruleName?

Type: string (optional)

The name of the late data rule.