data_quality_models
Creates, updates, deletes, gets or lists a data_quality_models resource.
Overview
| Name | data_quality_models |
| Type | Resource |
| Id | aws.glue.data_quality_models |
Fields
The following fields are returned by SELECT queries:
- get_data_quality_model
| Name | Datatype | Description |
|---|---|---|
completed_on | string (date-time) | The timestamp when the data quality model training completed. |
failure_reason | string | The training failure reason. (pattern: <code>[\u0020-\uD7FF\uE000-\uFFFD\uD800\uDC00-\uDBFF\uDFFF\t]*</code>) |
started_on | string (date-time) | The timestamp when the data quality model training started. |
status | string | The training status of the data quality model. (RUNNING, SUCCEEDED, FAILED) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_data_quality_model | select | region | Retrieve 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_data_quality_model
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
;