data_quality_model_results
Creates, updates, deletes, gets or lists a data_quality_model_results resource.
Overview
| Name | data_quality_model_results |
| Type | Resource |
| Id | aws.glue.data_quality_model_results |
Fields
The following fields are returned by SELECT queries:
- get_data_quality_model_result
| Name | Datatype | Description |
|---|---|---|
completed_on | string (date-time) | The timestamp when the data quality model training completed. |
model | array | A list of StatisticModelResult |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_data_quality_model_result | select | region | Retrieve a statistic's predictions for a given Profile ID. |
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_result
Retrieve a statistic's predictions for a given Profile ID.
SELECT
completed_on,
model
FROM aws.glue.data_quality_model_results
WHERE region = '{{ region }}' -- required
;