Show / Hide Table of Contents

Class CfnDatasetPropsMixin.LateDataRuleProperty

A structure that contains the name and configuration information of a late data rule.

Inheritance
object
CfnDatasetPropsMixin.LateDataRuleProperty
Implements
CfnDatasetPropsMixin.ILateDataRuleProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDatasetPropsMixin.LateDataRuleProperty : CfnDatasetPropsMixin.ILateDataRuleProperty
Syntax (vb)
Public Class CfnDatasetPropsMixin.LateDataRuleProperty Implements CfnDatasetPropsMixin.ILateDataRuleProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-latedatarule.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins;

             var lateDataRuleProperty = new LateDataRuleProperty {
                 RuleConfiguration = new LateDataRuleConfigurationProperty {
                     DeltaTimeSessionWindowConfiguration = new DeltaTimeSessionWindowConfigurationProperty {
                         TimeoutInMinutes = 123
                     }
                 },
                 RuleName = "ruleName"
             };

Synopsis

Constructors

LateDataRuleProperty()

A structure that contains the name and configuration information of a late data rule.

Properties

RuleConfiguration

The information needed to configure the late data rule.

RuleName

The name of the late data rule.

Constructors

LateDataRuleProperty()

A structure that contains the name and configuration information of a late data rule.

public LateDataRuleProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-latedatarule.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins;

             var lateDataRuleProperty = new LateDataRuleProperty {
                 RuleConfiguration = new LateDataRuleConfigurationProperty {
                     DeltaTimeSessionWindowConfiguration = new DeltaTimeSessionWindowConfigurationProperty {
                         TimeoutInMinutes = 123
                     }
                 },
                 RuleName = "ruleName"
             };

Properties

RuleConfiguration

The information needed to configure the late data rule.

public object? RuleConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-latedatarule.html#cfn-iotanalytics-dataset-latedatarule-ruleconfiguration

Type union: either IResolvable or CfnDatasetPropsMixin.ILateDataRuleConfigurationProperty

RuleName

The name of the late data rule.

public string? RuleName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-latedatarule.html#cfn-iotanalytics-dataset-latedatarule-rulename

Implements

CfnDatasetPropsMixin.ILateDataRuleProperty
Back to top Generated by DocFX