Get Lineage Node
datazone_get_lineage_node | R Documentation |
Gets the data lineage node¶
Description¶
Gets the data lineage node.
Usage¶
Arguments¶
domainIdentifier
[required] The ID of the domain in which you want to get the data lineage node.
eventTimestamp
The event time stamp for which you want to get the data lineage node.
identifier
[required] The 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. IfsourceIdentifier
is greater than 1800 characters, you can use lineage node identifier generated by Amazon DataZone to get the node details.
Value¶
A list with the following syntax:
list(
createdAt = as.POSIXct(
"2015-01-01"
),
createdBy = "string",
description = "string",
domainId = "string",
downstreamNodes = list(
list(
eventTimestamp = as.POSIXct(
"2015-01-01"
),
id = "string"
)
),
eventTimestamp = as.POSIXct(
"2015-01-01"
),
formsOutput = list(
list(
content = "string",
formName = "string",
typeName = "string",
typeRevision = "string"
)
),
id = "string",
name = "string",
sourceIdentifier = "string",
typeName = "string",
typeRevision = "string",
updatedAt = as.POSIXct(
"2015-01-01"
),
updatedBy = "string",
upstreamNodes = list(
list(
eventTimestamp = as.POSIXct(
"2015-01-01"
),
id = "string"
)
)
)