interface TimeBasedCollectionSchemeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnCampaign.TimeBasedCollectionSchemeProperty |
Java | software.amazon.awscdk.services.iotfleetwise.CfnCampaign.TimeBasedCollectionSchemeProperty |
Python | aws_cdk.aws_iotfleetwise.CfnCampaign.TimeBasedCollectionSchemeProperty |
TypeScript | @aws-cdk/aws-iotfleetwise » CfnCampaign » TimeBasedCollectionSchemeProperty |
Information about a collection scheme that uses a time period to decide how often to collect data.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as iotfleetwise from '@aws-cdk/aws-iotfleetwise';
const timeBasedCollectionSchemeProperty: iotfleetwise.CfnCampaign.TimeBasedCollectionSchemeProperty = {
periodMs: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| period | number | The time period (in milliseconds) to decide how often to collect data. |
periodMs
Type:
number
The time period (in milliseconds) to decide how often to collect data.
For example, if the time period is 60000 , the Edge Agent software collects data once every minute.

.NET
Java
Python
TypeScript