Get Time Series Data Point
datazone_get_time_series_data_point | R Documentation |
Gets the existing data point for the asset¶
Description¶
Gets the existing data point for the asset.
Usage¶
datazone_get_time_series_data_point(domainIdentifier, entityIdentifier,
entityType, formName, identifier)
Arguments¶
domainIdentifier
[required] The ID of the Amazon DataZone domain that houses the asset for which you want to get the data point.
entityIdentifier
[required] The ID of the asset for which you want to get the data point.
entityType
[required] The type of the asset for which you want to get the data point.
formName
[required] The name of the time series form that houses the data point that you want to get.
identifier
[required] The ID of the data point that you want to get.
Value¶
A list with the following syntax:
list(
domainId = "string",
entityId = "string",
entityType = "ASSET"|"LISTING",
form = list(
content = "string",
formName = "string",
id = "string",
timestamp = as.POSIXct(
"2015-01-01"
),
typeIdentifier = "string",
typeRevision = "string"
),
formName = "string"
)