Update a vehicle model (AWS CLI) - AWS IoT FleetWise

Update a vehicle model (AWS CLI)

You can use the UpdateModelManifest API operation to update an existing vehicle model (model manifests). The following example uses the AWS CLI.

To update an existing vehicle model, run the following command.

Replace update-vehicle-model-configuration with the name of the JSON file that contains the configuration.

aws iotfleetwise update-model-manifest --cli-input-json file://update-vehicle-model-configuration.json
  • Replace vehicle-model-name with the name of the vehicle model that you're updating.

  • (Optional) To activate the vehicle model, replace vehicle-model-status with ACTIVE.

    Important

    After the vehicle model is activated, you can't change the vehicle model.

  • (Optional) Replace description with an updated description to help you identify the vehicle model.

{ "name": "vehicle-model-name", "status": "vehicle-model-status", "description": "description", "nodesToAdd": ["Vehicle.Front.Left"], "nodesToRemove": ["Vehicle.Chassis.SteeringWheel"], }