Show / Hide Table of Contents

Class CfnVehicle.StateTemplateUpdateStrategyProperty

The update strategy for the state template.

Inheritance
object
CfnVehicle.StateTemplateUpdateStrategyProperty
Implements
CfnVehicle.IStateTemplateUpdateStrategyProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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> .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-statetemplateupdatestrategy.html

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> .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-statetemplateupdatestrategy.html

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-statetemplateupdatestrategy.html#cfn-iotfleetwise-vehicle-statetemplateupdatestrategy-onchange

Periodic

The update strategy for the state template.

public object? Periodic { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleetwise-vehicle-statetemplateupdatestrategy.html#cfn-iotfleetwise-vehicle-statetemplateupdatestrategy-periodic

Implements

CfnVehicle.IStateTemplateUpdateStrategyProperty
Back to top Generated by DocFX