update_model_manifest

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

Request Syntax

response = client.update_model_manifest(
    name='string',
    description='string',
    nodesToAdd=[
        'string',
    ],
    nodesToRemove=[
        'string',
    ],
    status='ACTIVE'|'DRAFT'
)
Parameters
  • name (string) --

    [REQUIRED]

    The name of the vehicle model to update.

  • description (string) -- A brief description of the vehicle model.
  • nodesToAdd (list) --

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

    • (string) --
  • nodesToRemove (list) --

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

    • (string) --
  • status (string) -- 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.
Return type

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

  • IoTFleetWise.Client.exceptions.InternalServerException
  • IoTFleetWise.Client.exceptions.ResourceNotFoundException
  • IoTFleetWise.Client.exceptions.ConflictException
  • IoTFleetWise.Client.exceptions.ThrottlingException
  • IoTFleetWise.Client.exceptions.ValidationException
  • IoTFleetWise.Client.exceptions.InvalidSignalsException
  • IoTFleetWise.Client.exceptions.AccessDeniedException