Skip to content

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

glue_get_data_quality_model(StatisticId, ProfileId)

Arguments

StatisticId

The 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"
)

Request syntax

svc$get_data_quality_model(
  StatisticId = "string",
  ProfileId = "string"
)