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

**********************
ListLineageNodeHistory
**********************



.. py:class:: DataZone.Paginator.ListLineageNodeHistory

  ::

    
    paginator = client.get_paginator('list_lineage_node_history')

  
  

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

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

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


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          domainIdentifier='string',
          identifier='string',
          direction='UPSTREAM'|'DOWNSTREAM',
          eventTimestampGTE=datetime(2015, 1, 1),
          eventTimestampLTE=datetime(2015, 1, 1),
          sortOrder='ASCENDING'|'DESCENDING',
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type domainIdentifier: string
    :param domainIdentifier: **[REQUIRED]** 

      The ID of the domain where you want to list the history of the specified data lineage node.

      

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

      The ID of the data lineage node whose history you want to list.

      

    
    :type direction: string
    :param direction: 

      The direction of the data lineage node refers to the lineage node having neighbors in that direction. For example, if direction is ``UPSTREAM``, the ``ListLineageNodeHistory`` API responds with historical versions with upstream neighbors only.

      

    
    :type eventTimestampGTE: datetime
    :param eventTimestampGTE: 

      Specifies whether the action is to return data lineage node history from the time after the event timestamp.

      

    
    :type eventTimestampLTE: datetime
    :param eventTimestampLTE: 

      Specifies whether the action is to return data lineage node history from the time prior of the event timestamp.

      

    
    :type sortOrder: string
    :param sortOrder: 

      The order by which you want data lineage node history to be sorted.

      

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

      
      ::

        {
            'nodes': [
                {
                    'domainId': 'string',
                    'name': 'string',
                    'description': 'string',
                    'createdAt': datetime(2015, 1, 1),
                    'createdBy': 'string',
                    'updatedAt': datetime(2015, 1, 1),
                    'updatedBy': 'string',
                    'id': 'string',
                    'typeName': 'string',
                    'typeRevision': 'string',
                    'sourceIdentifier': 'string',
                    'eventTimestamp': datetime(2015, 1, 1)
                },
            ],
            'NextToken': 'string'
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **nodes** *(list) --* 

          The nodes returned by the ListLineageNodeHistory action.

          
          

          - *(dict) --* 

            The summary of the data lineage node.

            
            

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

              The ID of the domain of the data lineage node.

              
            

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

              The name of the data lineage node.

              
            

            - **description** *(string) --* 

              The description of the data lineage node.

              
            

            - **createdAt** *(datetime) --* 

              The timestamp at which the data lineage node was created.

              
            

            - **createdBy** *(string) --* 

              The user who created the data lineage node.

              
            

            - **updatedAt** *(datetime) --* 

              The timestamp at which the data lineage node was updated.

              
            

            - **updatedBy** *(string) --* 

              The user who updated the data lineage node.

              
            

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

              The ID of the data lineage node.

              
            

            - **typeName** *(string) --* 

              The name of the type of the data lineage node.

              
            

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

              The type of the revision of the data lineage node.

              
            

            - **sourceIdentifier** *(string) --* 

              The alternate ID of the data lineage node.

              
            

            - **eventTimestamp** *(datetime) --* 

              The event timestamp of the data lineage node.

              
        
      
        

        - **NextToken** *(string) --* 

          A token to resume pagination.

          
    