interface StateTemplateUpdateStrategyProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTFleetWise.Mixins.CfnVehiclePropsMixin.StateTemplateUpdateStrategyProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotfleetwise/mixins#CfnVehiclePropsMixin_StateTemplateUpdateStrategyProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotfleetwise.mixins.CfnVehiclePropsMixin.StateTemplateUpdateStrategyProperty |
Python | aws_cdk.mixins_preview.aws_iotfleetwise.mixins.CfnVehiclePropsMixin.StateTemplateUpdateStrategyProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotfleetwise » mixins » CfnVehiclePropsMixin » StateTemplateUpdateStrategyProperty |
The update strategy for the state template.
Vehicles associated with the state template can stream telemetry data with either an onChange or periodic update strategy.
Access to certain AWS IoT FleetWise features is currently gated. For more information, see AWS Region and feature availability in the AWS IoT FleetWise Developer Guide .
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';
declare const onChange: any;
const stateTemplateUpdateStrategyProperty: iotfleetwise_mixins.CfnVehiclePropsMixin.StateTemplateUpdateStrategyProperty = {
onChange: onChange,
periodic: {
stateTemplateUpdateRate: {
unit: 'unit',
value: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| on | any | |
| periodic? | IResolvable | Periodic |
onChange?
Type:
any
(optional)
periodic?
Type:
IResolvable | Periodic
(optional)

.NET
Go
Java
Python
TypeScript