:doc:`DataZone <../../datazone>` / Paginator / ListTimeSeriesDataPoints

************************
ListTimeSeriesDataPoints
************************



.. py:class:: DataZone.Paginator.ListTimeSeriesDataPoints

  ::

    
    paginator = client.get_paginator('list_time_series_data_points')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`DataZone.Client.list_time_series_data_points`.

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          domainIdentifier='string',
          entityIdentifier='string',
          entityType='ASSET'|'LISTING',
          formName='string',
          startedAt=datetime(2015, 1, 1),
          endedAt=datetime(2015, 1, 1),
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :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 PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

      
    
    
    :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) --* 

          A token to resume pagination.

          
    