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

*********************
import_signal_catalog
*********************



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

  

  Creates a signal catalog using your existing VSS formatted content from your local device.

  

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


  **Request Syntax**
  ::

    response = client.import_signal_catalog(
        name='string',
        description='string',
        vss={
            'vssJson': 'string'
        },
        tags=[
            {
                'Key': 'string',
                'Value': 'string'
            },
        ]
    )
    
  :type name: string
  :param name: **[REQUIRED]** 

    The name of the signal catalog to import.

    

  
  :type description: string
  :param description: 

    A brief description of the signal catalog.

    

  
  :type vss: dict
  :param vss: 

    The contents of the Vehicle Signal Specification (VSS) configuration. VSS is a precise language used to describe and model signals in vehicle networks.

    .. note::    This is a Tagged Union structure. Only one of the     following top level keys can be set: ``vssJson``. 

  
    - **vssJson** *(string) --* 

      Provides the VSS in JSON format.

      

    
  
  :type tags: list
  :param tags: 

    Metadata that can be used to manage the signal catalog.

    

  
    - *(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 imported signal catalog.

        
      

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

        The Amazon Resource Name (ARN) of the imported signal catalog.

        
  
  **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`

  