Show / Hide Table of Contents

Class CfnDataset.RetentionPeriodProperty

How long, in days, message data is kept.

Inheritance
object
CfnDataset.RetentionPeriodProperty
Implements
CfnDataset.IRetentionPeriodProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataset.RetentionPeriodProperty : CfnDataset.IRetentionPeriodProperty
Syntax (vb)
Public Class CfnDataset.RetentionPeriodProperty Implements CfnDataset.IRetentionPeriodProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.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.AWS.IoTAnalytics;

             var retentionPeriodProperty = new RetentionPeriodProperty {
                 NumberOfDays = 123,
                 Unlimited = false
             };

Synopsis

Constructors

RetentionPeriodProperty()

How long, in days, message data is kept.

Properties

NumberOfDays

The number of days that message data is kept.

Unlimited

If true, message data is kept indefinitely.

Constructors

RetentionPeriodProperty()

How long, in days, message data is kept.

public RetentionPeriodProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-retentionperiod.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.AWS.IoTAnalytics;

             var retentionPeriodProperty = new RetentionPeriodProperty {
                 NumberOfDays = 123,
                 Unlimited = false
             };

Properties

NumberOfDays

The number of days that message data is kept.

public double? NumberOfDays { get; set; }
Property Value

double?

Remarks

The unlimited parameter must be false.

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

Unlimited

If true, message data is kept indefinitely.

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

object

Remarks

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

Implements

CfnDataset.IRetentionPeriodProperty
Back to top Generated by DocFX