Skip to content

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(
  createdAt = as.POSIXct(
    "2015-01-01"
  ),
  dataSourceConfigurationSnapshot = "string",
  dataSourceId = "string",
  domainId = "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",
  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"
  )
)

Request syntax

svc$get_data_source_run(
  domainIdentifier = "string",
  identifier = "string"
)