Class CfnCampaign.TimeBasedCollectionSchemeProperty
Information about a collection scheme that uses a time period to decide how often to collect data.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCampaign.TimeBasedCollectionSchemeProperty : CfnCampaign.ITimeBasedCollectionSchemeProperty
Syntax (vb)
Public Class CfnCampaign.TimeBasedCollectionSchemeProperty Implements CfnCampaign.ITimeBasedCollectionSchemeProperty
Remarks
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.IoTFleetWise;
var timeBasedCollectionSchemeProperty = new TimeBasedCollectionSchemeProperty {
PeriodMs = 123
};
Synopsis
Constructors
TimeBasedCollectionSchemeProperty() | Information about a collection scheme that uses a time period to decide how often to collect data. |
Properties
PeriodMs | The time period (in milliseconds) to decide how often to collect data. |
Constructors
TimeBasedCollectionSchemeProperty()
Information about a collection scheme that uses a time period to decide how often to collect data.
public TimeBasedCollectionSchemeProperty()
Remarks
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.IoTFleetWise;
var timeBasedCollectionSchemeProperty = new TimeBasedCollectionSchemeProperty {
PeriodMs = 123
};
Properties
PeriodMs
The time period (in milliseconds) to decide how often to collect data.
public double PeriodMs { get; set; }
Property Value
Remarks
For example, if the time period is 60000
, the Edge Agent software collects data once every minute.