Class CfnVehicle.StateTemplateUpdateStrategyProperty
The update strategy for the state template.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTFleetWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVehicle.StateTemplateUpdateStrategyProperty : CfnVehicle.IStateTemplateUpdateStrategyProperty
Syntax (vb)
Public Class CfnVehicle.StateTemplateUpdateStrategyProperty Implements CfnVehicle.IStateTemplateUpdateStrategyProperty
Remarks
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 <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html">AWS Region and feature availability</a> in the <em>AWS IoT FleetWise Developer Guide</em> .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTFleetWise;
var onChange;
var stateTemplateUpdateStrategyProperty = new StateTemplateUpdateStrategyProperty {
OnChange = onChange,
Periodic = new PeriodicStateTemplateUpdateStrategyProperty {
StateTemplateUpdateRate = new TimePeriodProperty {
Unit = "unit",
Value = 123
}
}
};
Synopsis
Constructors
StateTemplateUpdateStrategyProperty() | The update strategy for the state template. |
Properties
OnChange | The update strategy for the state template. |
Periodic | The update strategy for the state template. |
Constructors
StateTemplateUpdateStrategyProperty()
The update strategy for the state template.
public StateTemplateUpdateStrategyProperty()
Remarks
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 <a href="https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/fleetwise-regions.html">AWS Region and feature availability</a> in the <em>AWS IoT FleetWise Developer Guide</em> .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTFleetWise;
var onChange;
var stateTemplateUpdateStrategyProperty = new StateTemplateUpdateStrategyProperty {
OnChange = onChange,
Periodic = new PeriodicStateTemplateUpdateStrategyProperty {
StateTemplateUpdateRate = new TimePeriodProperty {
Unit = "unit",
Value = 123
}
}
};
Properties
OnChange
The update strategy for the state template.
public object? OnChange { get; set; }
Property Value
Remarks
Periodic
The update strategy for the state template.
public object? Periodic { get; set; }