:doc:`DataZone <../../datazone>` / Client / get_time_series_data_point

**************************
get_time_series_data_point
**************************



.. py:method:: DataZone.Client.get_time_series_data_point(**kwargs)

  

  Gets the existing data point for the asset.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/datazone-2018-05-10/GetTimeSeriesDataPoint>`_  


  **Request Syntax**
  ::

    response = client.get_time_series_data_point(
        domainIdentifier='string',
        entityIdentifier='string',
        entityType='ASSET'|'LISTING',
        identifier='string',
        formName='string'
    )
    
  :type domainIdentifier: string
  :param domainIdentifier: **[REQUIRED]** 

    The ID of the Amazon DataZone domain that houses the asset for which you want to get the data point.

    

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

    The ID of the asset for which you want to get the data point.

    

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

    The type of the asset for which you want to get the data point.

    

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

    The ID of the data point that you want to get.

    

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

    The name of the time series form that houses the data point that you want to get.

    

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

    
    ::

      {
          'domainId': 'string',
          'entityId': 'string',
          'entityType': 'ASSET'|'LISTING',
          'formName': 'string',
          'form': {
              'formName': 'string',
              'typeIdentifier': 'string',
              'typeRevision': 'string',
              'timestamp': datetime(2015, 1, 1),
              'content': 'string',
              'id': 'string'
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **domainId** *(string) --* 

        The ID of the Amazon DataZone domain that houses the asset data point that you want to get.

        
      

      - **entityId** *(string) --* 

        The ID of the asset for which you want to get the data point.

        
      

      - **entityType** *(string) --* 

        The type of the asset for which you want to get the data point.

        
      

      - **formName** *(string) --* 

        The name of the time series form that houses the data point that you want to get.

        
      

      - **form** *(dict) --* 

        The time series form that houses the data point that you want to get.

        
        

        - **formName** *(string) --* 

          The name of the time series data points form.

          
        

        - **typeIdentifier** *(string) --* 

          The ID of the type of the time series data points form.

          
        

        - **typeRevision** *(string) --* 

          The revision type of the time series data points form.

          
        

        - **timestamp** *(datetime) --* 

          The timestamp of the time series data points form.

          
        

        - **content** *(string) --* 

          The content of the time series data points form.

          
        

        - **id** *(string) --* 

          The ID of the time series data points form.

          
    
  
  **Exceptions**
  
  *   :py:class:`DataZone.Client.exceptions.InternalServerException`

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

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

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

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

  
  *   :py:class:`DataZone.Client.exceptions.UnauthorizedException`

  