Describe Dataset Export Job
personalize_describe_dataset_export_job | R Documentation |
Describes the dataset export job created by CreateDatasetExportJob, including the export job status¶
Description¶
Describes the dataset export job created by create_dataset_export_job
,
including the export job status.
Usage¶
Arguments¶
datasetExportJobArn
[required] The Amazon Resource Name (ARN) of the dataset export job to describe.
Value¶
A list with the following syntax:
list(
datasetExportJob = list(
jobName = "string",
datasetExportJobArn = "string",
datasetArn = "string",
ingestionMode = "BULK"|"PUT"|"ALL",
roleArn = "string",
status = "string",
jobOutput = list(
s3DataDestination = list(
path = "string",
kmsKeyArn = "string"
)
),
creationDateTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedDateTime = as.POSIXct(
"2015-01-01"
),
failureReason = "string"
)
)