:doc:`IoTFleetWise <../../iotfleetwise>` / Client / update_model_manifest

*********************
update_model_manifest
*********************



.. py:method:: IoTFleetWise.Client.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 <https://docs.aws.amazon.com/goto/WebAPI/iotfleetwise-2021-06-17/UpdateModelManifest>`_  


  **Request Syntax**
  ::

    response = client.update_model_manifest(
        name='string',
        description='string',
        nodesToAdd=[
            'string',
        ],
        nodesToRemove=[
            'string',
        ],
        status='ACTIVE'|'DRAFT'|'INVALID'|'VALIDATING'
    )
    
  :type name: string
  :param name: **[REQUIRED]** 

    The name of the vehicle model to update.

    

  
  :type description: string
  :param description: 

    A brief description of the vehicle model.

    

  
  :type nodesToAdd: list
  :param nodesToAdd: 

    A list of ``fullyQualifiedName`` of nodes, which are a general abstraction of signals, to add to the vehicle model.

    

  
    - *(string) --* 

    

  :type nodesToRemove: list
  :param nodesToRemove: 

    A list of ``fullyQualifiedName`` of nodes, which are a general abstraction of signals, to remove from the vehicle model.

    

  
    - *(string) --* 

    

  :type status: string
  :param status: 

    The state of the vehicle model. If the status is ``ACTIVE``, the vehicle model can't be edited. If the status is ``DRAFT``, you can edit the vehicle model.

    

  
  
  :rtype: dict
  :returns: 
    
    **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**
  
  *   :py:class:`IoTFleetWise.Client.exceptions.InternalServerException`

  
  *   :py:class:`IoTFleetWise.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`IoTFleetWise.Client.exceptions.ConflictException`

  
  *   :py:class:`IoTFleetWise.Client.exceptions.ThrottlingException`

  
  *   :py:class:`IoTFleetWise.Client.exceptions.ValidationException`

  
  *   :py:class:`IoTFleetWise.Client.exceptions.InvalidSignalsException`

  
  *   :py:class:`IoTFleetWise.Client.exceptions.AccessDeniedException`

  