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(dataSourceIdentifier, domainIdentifier,
  maxResults, nextToken, status)
Arguments¶
dataSourceIdentifier | 
[required] The identifier of the data source.  | 
domainIdentifier | 
[required] The identifier of the Amazon DataZone domain in which
to invoke the   | 
maxResults | 
The maximum number of runs to return in a single call to
  | 
nextToken | 
When the number of runs is greater than the default value for the
  | 
status | 
The status of the data source.  | 
Value¶
A list with the following syntax:
list(
  items = list(
    list(
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      dataSourceId = "string",
      errorMessage = list(
        errorDetail = "string",
        errorType = "ACCESS_DENIED_EXCEPTION"|"CONFLICT_EXCEPTION"|"INTERNAL_SERVER_EXCEPTION"|"RESOURCE_NOT_FOUND_EXCEPTION"|"SERVICE_QUOTA_EXCEEDED_EXCEPTION"|"THROTTLING_EXCEPTION"|"VALIDATION_EXCEPTION"
      ),
      id = "string",
      lineageSummary = list(
        importStatus = "IN_PROGRESS"|"SUCCESS"|"FAILED"|"PARTIALLY_SUCCEEDED"
      ),
      projectId = "string",
      runStatisticsForAssets = list(
        added = 123,
        failed = 123,
        skipped = 123,
        unchanged = 123,
        updated = 123
      ),
      startedAt = as.POSIXct(
        "2015-01-01"
      ),
      status = "REQUESTED"|"RUNNING"|"FAILED"|"PARTIALLY_SUCCEEDED"|"SUCCESS",
      stoppedAt = as.POSIXct(
        "2015-01-01"
      ),
      type = "PRIORITIZED"|"SCHEDULED",
      updatedAt = as.POSIXct(
        "2015-01-01"
      )
    )
  ),
  nextToken = "string"
)
Request syntax¶
svc$list_data_source_runs(
  dataSourceIdentifier = "string",
  domainIdentifier = "string",
  maxResults = 123,
  nextToken = "string",
  status = "REQUESTED"|"RUNNING"|"FAILED"|"PARTIALLY_SUCCEEDED"|"SUCCESS"
)