update_model_manifest(**kwargs)¶Updates a vehicle model (model manifest). If created vehicles are associated with a vehicle model, it can't be updated.
See also: AWS API Documentation
Request Syntax
response = client.update_model_manifest(
name='string',
description='string',
nodesToAdd=[
'string',
],
nodesToRemove=[
'string',
],
status='ACTIVE'|'DRAFT'
)
[REQUIRED]
The name of the vehicle model to update.
A list of fullyQualifiedName of nodes, which are a general abstraction of signals, to add to the vehicle model.
A list of fullyQualifiedName of nodes, which are a general abstraction of signals, to remove from the vehicle model.
ACTIVE , the vehicle model can't be edited. If the status is DRAFT , you can edit the vehicle model.dict
Response Syntax
{
'name': 'string',
'arn': 'string'
}
Response Structure
(dict) --
name (string) --
The name of the updated vehicle model.
arn (string) --
The Amazon Resource Name (ARN) of the updated vehicle model.
Exceptions
IoTFleetWise.Client.exceptions.InternalServerExceptionIoTFleetWise.Client.exceptions.ResourceNotFoundExceptionIoTFleetWise.Client.exceptions.ConflictExceptionIoTFleetWise.Client.exceptions.ThrottlingExceptionIoTFleetWise.Client.exceptions.ValidationExceptionIoTFleetWise.Client.exceptions.InvalidSignalsExceptionIoTFleetWise.Client.exceptions.AccessDeniedException