Update multiple AWS IoT FleetWise vehicles - AWS IoT FleetWise

AWS IoT FleetWise will no longer be open to new customers starting April 30, 2026. If you would like to use AWS IoT FleetWise, sign up prior to that date. Existing customers can continue to use the service as normal. For more information, see AWS IoT FleetWise availability change.

Update multiple AWS IoT FleetWise vehicles

You can use the BatchUpdateVehicle API operation to update multiple existing vehicles at one time. The following example uses the AWS CLI.

To update multiple vehicles, run the following command.

Replace file-name with the name of the .json file that contains the configurations of multiple vehicles.

aws iotfleetwise batch-update-vehicle --cli-input-json file://file-name.json
Example– vehicle configurations
{ "vehicles": [ { "vehicleName": "vehicle-name", "modelManifestArn": "model-manifest-arn", "decoderManifestArn": "decoder-manifest-arn", "mergeAttributes": true, "attributes": { "key": "value" } }, { "vehicleName": "vehicle-name", "modelManifestArn": "model-manifest-arn", "decoderManifestArn": "decoder-manifest-arn", "mergeAttributes": true, "attributes": { "key": "value" } } ] }

You can update up to 10 vehicles for each batch operation. For more information about the configuration of each vehicle, see Update an AWS IoT FleetWise vehicle.

If you enabled encryption using a customer managed AWS KMS key, include the following policy statement so that your role can invoke the BatchUpdateVehicle API operation.

JSON
{ "Version":"2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "kms:GenerateDataKey*", "kms:Decrypt" ], "Resource": [ "arn:aws:kms:us-east-1:111122223333:key/KMS_KEY_ID" ] } ] }