Skip to main content

lineage_nodes

Creates, updates, deletes, gets or lists a lineage_nodes resource.

Overview

Namelineage_nodes
TypeResource
Idaws.datazone.lineage_nodes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the data lineage node. (pattern: <code>[a-zA-Z0-9_-]{1,36}</code>)
namestringThe name of the data lineage node.
created_atstring (date-time)The timestamp at which the data lineage node was created.
created_bystringThe user who created the data lineage node.
descriptionstringThe description of the data lineage node.
domain_idstringThe ID of the domain where you're getting the data lineage node. (pattern: <code>dzd[-][a-zA-Z0-9-]{1,36}</code>)
downstream_nodesarrayThe downsteam nodes of the specified data lineage node.
event_timestampstring (date-time)The timestamp of the event described in the data lineage node.
forms_outputarrayThe metadata of the specified data lineage node.
source_identifierstringThe source identifier of the data lineage node.
type_namestringThe name of the type of the specified data lineage node.
type_revisionstringThe revision type of the specified data lineage node.
updated_atstring (date-time)The timestamp at which the data lineage node was updated.
updated_bystringThe user who updated the data lineage node.
upstream_nodesarrayThe upstream nodes of the specified data lineage node.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_lineage_nodeselectdomain_identifier, identifier, regiontimestampGets the data lineage node.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
domain_identifierstringThe ID of the domain in which you want to get the data lineage node.
identifierstringThe ID of the data lineage node that you want to get. Both, a lineage node identifier generated by Amazon DataZone and a sourceIdentifier of the lineage node are supported. If sourceIdentifier is greater than 1800 characters, you can use lineage node identifier generated by Amazon DataZone to get the node details.
regionstringAWS region (default: us-east-1)
timestampstring (date-time)The event time stamp for which you want to get the data lineage node.

SELECT examples

Gets the data lineage node.

SELECT
id,
name,
created_at,
created_by,
description,
domain_id,
downstream_nodes,
event_timestamp,
forms_output,
source_identifier,
type_name,
type_revision,
updated_at,
updated_by,
upstream_nodes
FROM aws.datazone.lineage_nodes
WHERE domain_identifier = '{{ domain_identifier }}' -- required
AND identifier = '{{ identifier }}' -- required
AND region = '{{ region }}' -- required
AND timestamp = '{{ timestamp }}'
;