List Data Source Run Activities
| datazone_list_data_source_run_activities | R Documentation |
Lists data source run activities¶
Description¶
Lists data source run activities.
Usage¶
datazone_list_data_source_run_activities(domainIdentifier, identifier,
maxResults, nextToken, status)
Arguments¶
domainIdentifier[required] The identifier of the Amazon DataZone domain in which to list data source run activities.
identifier[required] The identifier of the data source run.
maxResultsThe maximum number of activities to return in a single call to
list_data_source_run_activities. When the number of activities to be listed is greater than the value ofMaxResults, the response contains aNextTokenvalue that you can use in a subsequent call tolist_data_source_run_activitiesto list the next set of activities.nextTokenWhen the number of activities is greater than the default value for the
MaxResultsparameter, or if you explicitly specify a value forMaxResultsthat is less than the number of activities, the response includes a pagination token namedNextToken. You can specify thisNextTokenvalue in a subsequent call tolist_data_source_run_activitiesto list the next set of activities.statusThe status of the data source run.
Value¶
A list with the following syntax:
list(
items = list(
list(
createdAt = as.POSIXct(
"2015-01-01"
),
dataAssetId = "string",
dataAssetStatus = "FAILED"|"PUBLISHING_FAILED"|"SUCCEEDED_CREATED"|"SUCCEEDED_UPDATED"|"SKIPPED_ALREADY_IMPORTED"|"SKIPPED_ARCHIVED"|"SKIPPED_NO_ACCESS"|"UNCHANGED",
dataSourceRunId = "string",
database = "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"
),
projectId = "string",
technicalDescription = "string",
technicalName = "string",
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)