Skip to main content

data_quality_ruleset_evaluation_runs

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

Overview

Namedata_quality_ruleset_evaluation_runs
TypeResource
Idaws.glue.data_quality_ruleset_evaluation_runs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
runsarrayA list of evaluation run details for the requested run IDs.
runs_not_foundarrayA list of run IDs that were not found.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
batch_get_data_quality_ruleset_evaluation_runselectregionRetrieves the details of multiple evaluation runs in a single request.
get_data_quality_ruleset_evaluation_runselectregionRetrieves a specific run where a ruleset is evaluated against a data source.
list_data_quality_ruleset_evaluation_runsselectregionLists all the runs meeting the filter criteria, where a ruleset is evaluated against a data source.

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

Retrieves the details of multiple evaluation runs in a single request.

SELECT
runs,
runs_not_found
FROM aws.glue.data_quality_ruleset_evaluation_runs
WHERE region = '{{ region }}' -- required
;