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

*************************
list_lineage_node_history
*************************



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

  

  Lists the history of the specified data lineage node.

  

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


  **Request Syntax**
  ::

    response = client.list_lineage_node_history(
        domainIdentifier='string',
        maxResults=123,
        nextToken='string',
        identifier='string',
        direction='UPSTREAM'|'DOWNSTREAM',
        eventTimestampGTE=datetime(2015, 1, 1),
        eventTimestampLTE=datetime(2015, 1, 1),
        sortOrder='ASCENDING'|'DESCENDING'
    )
    
  :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 maxResults: integer
  :param maxResults: 

    The maximum number of history items to return in a single call to ListLineageNodeHistory. When the number of memberships 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 ListLineageNodeHistory to list the next set of items.

    

  
  :type nextToken: string
  :param nextToken: 

    When the number of history items 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 items, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListLineageNodeHistory to list the next set of items.

    

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

    

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

        When the number of history items 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 items, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListLineageNodeHistory to list the next set of items.

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

  