Start Data Source Run
datazone_start_data_source_run | R Documentation |
Start the run of the specified data source in Amazon DataZone¶
Description¶
Start the run of the specified data source in Amazon DataZone.
Usage¶
datazone_start_data_source_run(clientToken, dataSourceIdentifier,
domainIdentifier)
Arguments¶
clientToken |
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request. |
dataSourceIdentifier |
[required] The identifier of the data source. |
domainIdentifier |
[required] The identifier of the Amazon DataZone domain in which to start a 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$start_data_source_run(
clientToken = "string",
dataSourceIdentifier = "string",
domainIdentifier = "string"
)