Skip to main content

data_quality_models

Creates, updates, deletes, gets or lists a data_quality_models resource.

Overview

Namedata_quality_models
TypeResource
Idaws.glue.data_quality_models

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
completed_onstring (date-time)The timestamp when the data quality model training completed.
failure_reasonstringThe training failure reason. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\t]*</code>)
started_onstring (date-time)The timestamp when the data quality model training started.
statusstringThe training status of the data quality model. (RUNNING, SUCCEEDED, FAILED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_data_quality_modelselectregionRetrieve the training status of the model along with more information (CompletedOn, StartedOn, FailureReason).

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieve the training status of the model along with more information (CompletedOn, StartedOn, FailureReason).

SELECT
completed_on,
failure_reason,
started_on,
status
FROM aws.glue.data_quality_models
WHERE region = '{{ region }}' -- required
;