Get Data Quality Model
| glue_get_data_quality_model | R Documentation |
Retrieve the training status of the model along with more information (CompletedOn, StartedOn, FailureReason)¶
Description¶
Retrieve the training status of the model along with more information (CompletedOn, StartedOn, FailureReason).
Usage¶
Arguments¶
StatisticIdThe Statistic ID.
ProfileId[required] The Profile ID.
Value¶
A list with the following syntax:
list(
Status = "RUNNING"|"SUCCEEDED"|"FAILED",
StartedOn = as.POSIXct(
"2015-01-01"
),
CompletedOn = as.POSIXct(
"2015-01-01"
),
FailureReason = "string"
)