interface TimeBasedCollectionSchemeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnCampaignPropsMixin.TimeBasedCollectionSchemeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnCampaignPropsMixin_TimeBasedCollectionSchemeProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnCampaignPropsMixin.TimeBasedCollectionSchemeProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnCampaignPropsMixin.TimeBasedCollectionSchemeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnCampaignPropsMixin » 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 { mixins as iotfleetwise_mixins } from '@aws-cdk/mixins-preview/aws-iotfleetwise';
const timeBasedCollectionSchemeProperty: iotfleetwise_mixins.CfnCampaignPropsMixin.TimeBasedCollectionSchemeProperty = {
periodMs: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| period | number | The time period (in milliseconds) to decide how often to collect data. |
periodMs?
Type:
number
(optional)
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