本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。
创建多 FleetWise 辆 AWS 物联网车辆
您可以使用该BatchCreateVehicleAPI操作一次创建多辆车辆。下面的示例使用了 AWS CLI。
要创建多辆车,请运行以下命令。
Replace(替换) file-name
使用包含多辆车配置的JSON文件的名称。
aws iotfleetwise batch-create-vehicle --cli-input-json file://
file-name
.json
例 车辆配置
{ "vehicles": [ { "associationBehavior": "
associationBehavior
", "vehicleName": "vehicle-name
", "modelManifestArn": "model-manifest-ARN
", "decoderManifestArn": "decoder-manifest-ARN
", "attributes": { "key
": "value
" } }, { "associationBehavior": "associationBehavior
", "vehicleName": "vehicle-name
", "modelManifestArn": "model-manifest-ARN
", "decoderManifestArn": "decoder-manifest-ARN
", "attributes": { "key
": "value
" } } ] }
可以为每个批处理操作创建最多 10 辆车。有关配置文件的更多信息,请参阅创建车辆 (AWS CLI)。