interface TimeBasedCollectionSchemeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.IoTFleetWise.CfnCampaign.TimeBasedCollectionSchemeProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsiotfleetwise#CfnCampaign_TimeBasedCollectionSchemeProperty |
Java | software.amazon.awscdk.services.iotfleetwise.CfnCampaign.TimeBasedCollectionSchemeProperty |
Python | aws_cdk.aws_iotfleetwise.CfnCampaign.TimeBasedCollectionSchemeProperty |
TypeScript | aws-cdk-lib » 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 { aws_iotfleetwise as iotfleetwise } from 'aws-cdk-lib';
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
Go
Java
Python
TypeScript