List Data Source Runs
| datazone_list_data_source_runs | R Documentation |
Lists data source runs in Amazon DataZone¶
Description¶
Lists data source runs in Amazon DataZone.
Usage¶
datazone_list_data_source_runs(domainIdentifier, dataSourceIdentifier,
status, nextToken, maxResults)
Arguments¶
domainIdentifier |
[required] The identifier of the Amazon DataZone domain in which
to invoke the |
dataSourceIdentifier |
[required] The identifier of the data source. |
status |
The status of the data source. |
nextToken |
When the number of runs is greater than the default value for the
|
maxResults |
The maximum number of runs to return in a single call to
|
Value¶
A list with the following syntax:
list(
items = list(
list(
id = "string",
dataSourceId = "string",
type = "PRIORITIZED"|"SCHEDULED",
status = "REQUESTED"|"RUNNING"|"FAILED"|"PARTIALLY_SUCCEEDED"|"SUCCESS",
projectId = "string",
runStatisticsForAssets = list(
added = 123,
updated = 123,
unchanged = 123,
skipped = 123,
failed = 123
),
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"
),
lineageSummary = list(
importStatus = "IN_PROGRESS"|"SUCCESS"|"FAILED"|"PARTIALLY_SUCCEEDED"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_data_source_runs(
domainIdentifier = "string",
dataSourceIdentifier = "string",
status = "REQUESTED"|"RUNNING"|"FAILED"|"PARTIALLY_SUCCEEDED"|"SUCCESS",
nextToken = "string",
maxResults = 123
)