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

*********************
create_model_manifest
*********************



.. py:method:: IoTFleetWise.Client.create_model_manifest(**kwargs)

  

  Creates a vehicle model (model manifest) that specifies signals (attributes, branches, sensors, and actuators).

   

  For more information, see `Vehicle models <https://docs.aws.amazon.com/iot-fleetwise/latest/developerguide/vehicle-models.html>`__ in the *Amazon Web Services IoT FleetWise Developer Guide*.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/iotfleetwise-2021-06-17/CreateModelManifest>`_  


  **Request Syntax**
  ::

    response = client.create_model_manifest(
        name='string',
        description='string',
        nodes=[
            'string',
        ],
        signalCatalogArn='string',
        tags=[
            {
                'Key': 'string',
                'Value': 'string'
            },
        ]
    )
    
  :type name: string
  :param name: **[REQUIRED]** 

    The name of the vehicle model to create.

    

  
  :type description: string
  :param description: 

    A brief description of the vehicle model.

    

  
  :type nodes: list
  :param nodes: **[REQUIRED]** 

    A list of nodes, which are a general abstraction of signals.

    

  
    - *(string) --* 

    

  :type signalCatalogArn: string
  :param signalCatalogArn: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of a signal catalog.

    

  
  :type tags: list
  :param tags: 

    Metadata that can be used to manage the vehicle model.

    

  
    - *(dict) --* 

      A set of key/value pairs that are used to manage the resource.

      

    
      - **Key** *(string) --* **[REQUIRED]** 

        The tag's key.

        

      
      - **Value** *(string) --* **[REQUIRED]** 

        The tag's value.

        

      
    

  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'name': 'string',
          'arn': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **name** *(string) --* 

        The name of the created vehicle model.

        
      

      - **arn** *(string) --* 

        The ARN of the created vehicle model.

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

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

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

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

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

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

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

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

  