Interface CfnVehicleMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVehicleMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:00.431Z")
@Stability(Stable)
public interface CfnVehicleMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnVehiclePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.iotfleetwise.*;
Object onChange;
CfnVehicleMixinProps cfnVehicleMixinProps = CfnVehicleMixinProps.builder()
.associationBehavior("associationBehavior")
.attributes(Map.of(
"attributesKey", "attributes"))
.decoderManifestArn("decoderManifestArn")
.modelManifestArn("modelManifestArn")
.name("name")
.stateTemplates(List.of(StateTemplateAssociationProperty.builder()
.identifier("identifier")
.stateTemplateUpdateStrategy(StateTemplateUpdateStrategyProperty.builder()
.onChange(onChange)
.periodic(PeriodicStateTemplateUpdateStrategyProperty.builder()
.stateTemplateUpdateRate(TimePeriodProperty.builder()
.unit("unit")
.value(123)
.build())
.build())
.build())
.build()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVehicleMixinPropsstatic final classAn implementation forCfnVehicleMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnVehicleMixinProps.Builderbuilder()default StringAn option to create a new AWS IoT thing when creating a vehicle, or to validate an existing thing as a vehicle.default ObjectStatic information about a vehicle in a key-value pair.default StringThe Amazon Resource Name (ARN) of a decoder manifest associated with the vehicle to create.default StringThe Amazon Resource Name (ARN) of the vehicle model (model manifest) to create the vehicle from.default StringgetName()The unique ID of the vehicle.default ObjectAssociate state templates to track the state of the vehicle.getTags()Metadata which can be used to manage the vehicle.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAssociationBehavior
An option to create a new AWS IoT thing when creating a vehicle, or to validate an existing thing as a vehicle.- See Also:
-
getAttributes
Static information about a vehicle in a key-value pair.For example:
"engine Type":"v6"Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getDecoderManifestArn
The Amazon Resource Name (ARN) of a decoder manifest associated with the vehicle to create.- See Also:
-
getModelManifestArn
The Amazon Resource Name (ARN) of the vehicle model (model manifest) to create the vehicle from.- See Also:
-
getName
The unique ID of the vehicle.- See Also:
-
getStateTemplates
Associate state templates to track the state of the vehicle.State templates determine which signal updates the vehicle sends to the cloud.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnVehiclePropsMixin.StateTemplateAssociationProperty>- See Also:
-
getTags
Metadata which can be used to manage the vehicle.- See Also:
-
builder
- Returns:
- a
CfnVehicleMixinProps.BuilderofCfnVehicleMixinProps
-