Get Data Source Run
| datazone_get_data_source_run | R Documentation |
Gets an Amazon DataZone data source run¶
Description¶
Gets an Amazon DataZone data source run.
Usage¶
datazone_get_data_source_run(domainIdentifier, identifier)
Arguments¶
domainIdentifier |
[required] The ID of the domain in which this data source run was performed. |
identifier |
[required] The ID of the data source run. |
Value¶
A list with the following syntax:
list(
domainId = "string",
dataSourceId = "string",
id = "string",
projectId = "string",
status = "REQUESTED"|"RUNNING"|"FAILED"|"PARTIALLY_SUCCEEDED"|"SUCCESS",
type = "PRIORITIZED"|"SCHEDULED",
dataSourceConfigurationSnapshot = "string",
runStatisticsForAssets = list(
added = 123,
updated = 123,
unchanged = 123,
skipped = 123,
failed = 123
),
lineageSummary = list(
importStatus = "IN_PROGRESS"|"SUCCESS"|"FAILED"|"PARTIALLY_SUCCEEDED"
),
errorMessage = list(
errorType = "ACCESS_DENIED_EXCEPTION"|"CONFLICT_EXCEPTION"|"INTERNAL_SERVER_EXCEPTION"|"RESOURCE_NOT_FOUND_EXCEPTION"|"SERVICE_QUOTA_EXCEEDED_EXCEPTION"|"THROTTLING_EXCEPTION"|"VALIDATION_EXCEPTION",
errorDetail = "string"
),
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
startedAt = as.POSIXct(
"2015-01-01"
),
stoppedAt = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$get_data_source_run(
domainIdentifier = "string",
identifier = "string"
)