interface TimeBasedCollectionSchemeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTFleetWise.CfnCampaignPropsMixin.TimeBasedCollectionSchemeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotfleetwise#CfnCampaignPropsMixin_TimeBasedCollectionSchemeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotfleetwise.CfnCampaignPropsMixin.TimeBasedCollectionSchemeProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotfleetwise.CfnCampaignPropsMixin.TimeBasedCollectionSchemeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotfleetwise » 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 { aws_iotfleetwise as iotfleetwise } from '@aws-cdk/cfn-property-mixins';
const timeBasedCollectionSchemeProperty: iotfleetwise.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