Interface CfnVehicle.StateTemplateAssociationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVehicle.StateTemplateAssociationProperty.Jsii$Proxy
- Enclosing class:
CfnVehicle
@Stability(Stable)
public static interface CfnVehicle.StateTemplateAssociationProperty
extends software.amazon.jsii.JsiiSerializable
The state template associated with a vehicle.
State templates contain state properties, which are signals that belong to a signal catalog that is synchronized between the AWS IoT FleetWise Edge and the AWS Cloud .
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 software.amazon.awscdk.services.iotfleetwise.*;
Object onChange;
StateTemplateAssociationProperty stateTemplateAssociationProperty = StateTemplateAssociationProperty.builder()
.identifier("identifier")
.stateTemplateUpdateStrategy(StateTemplateUpdateStrategyProperty.builder()
.onChange(onChange)
.periodic(PeriodicStateTemplateUpdateStrategyProperty.builder()
.stateTemplateUpdateRate(TimePeriodProperty.builder()
.unit("unit")
.value(123)
.build())
.build())
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVehicle.StateTemplateAssociationPropertystatic final classAn implementation forCfnVehicle.StateTemplateAssociationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The unique ID of the state template.Returns union: eitherIResolvableorCfnVehicle.StateTemplateUpdateStrategyPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIdentifier
The unique ID of the state template.- See Also:
-
getStateTemplateUpdateStrategy
Returns union: eitherIResolvableorCfnVehicle.StateTemplateUpdateStrategyProperty- See Also:
-
builder
-