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

****************************
list_time_series_data_points
****************************



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

  

  Lists time series data points.

  

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


  **Request Syntax**
  ::

    response = client.list_time_series_data_points(
        domainIdentifier='string',
        entityIdentifier='string',
        entityType='ASSET'|'LISTING',
        formName='string',
        startedAt=datetime(2015, 1, 1),
        endedAt=datetime(2015, 1, 1),
        nextToken='string',
        maxResults=123
    )
    
  :type domainIdentifier: string
  :param domainIdentifier: **[REQUIRED]** 

    The ID of the Amazon DataZone domain that houses the assets for which you want to list time series data points.

    

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

    The ID of the asset for which you want to list data points.

    

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

    The type of the asset for which you want to list data points.

    

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

    The name of the time series data points form.

    

  
  :type startedAt: datetime
  :param startedAt: 

    The timestamp at which the data points that you want to list started.

    

  
  :type endedAt: datetime
  :param endedAt: 

    The timestamp at which the data points that you wanted to list ended.

    

  
  :type nextToken: string
  :param nextToken: 

    When the number of data points is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of data points, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListTimeSeriesDataPoints to list the next set of data points.

    

  
  :type maxResults: integer
  :param maxResults: 

    The maximum number of data points to return in a single call to ListTimeSeriesDataPoints. When the number of data points to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListTimeSeriesDataPoints to list the next set of data points.

    

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

    
    ::

      {
          'items': [
              {
                  'formName': 'string',
                  'typeIdentifier': 'string',
                  'typeRevision': 'string',
                  'timestamp': datetime(2015, 1, 1),
                  'contentSummary': 'string',
                  'id': 'string'
              },
          ],
          'nextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **items** *(list) --* 

        The results of the ListTimeSeriesDataPoints action.

        
        

        - *(dict) --* 

          The summary of the time series data points form.

          
          

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

            The name of the time series data points summary form.

            
          

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

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

            
          

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

            The type revision of the time series data points summary form.

            
          

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

            The timestamp of the time series data points summary form.

            
          

          - **contentSummary** *(string) --* 

            The content of the summary of the time series data points form.

            
          

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

            The ID of the time series data points summary form.

            
      
    
      

      - **nextToken** *(string) --* 

        When the number of data points is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of data points, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListTimeSeriesDataPoints to list the next set of data points.

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

  