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