Vehicle
Source:
src/AWS/IoTFleetWise/Vehicle.ts
An AWS IoT FleetWise vehicle — the digital twin of a physical vehicle,
created from an ACTIVE ModelManifest and
DecoderManifest pair and backed by an AWS IoT thing.
Creating a Vehicle
Section titled “Creating a Vehicle”Vehicle with an Auto-Created IoT Thing
const vehicle = yield* Vehicle("TestVehicle", { modelManifestArn: model.modelManifestArn, decoderManifestArn: decoder.decoderManifestArn,});Vehicle with Attributes
const vehicle = yield* Vehicle("TestVehicle", { modelManifestArn: model.modelManifestArn, decoderManifestArn: decoder.decoderManifestArn, attributes: { "Vehicle.VIN": "1HGBH41JXMN109186" }, tags: { plant: "fremont" },});