Skip to main content

data_quality_statistics

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

Overview

Namedata_quality_statistics
TypeResource
Idaws.glue.data_quality_statistics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringA pagination token to request the next page of results.
statisticsarrayA StatisticSummaryList.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_data_quality_statisticsselectregionRetrieves a list of data quality statistics.

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 a list of data quality statistics.

SELECT
next_token,
statistics
FROM aws.glue.data_quality_statistics
WHERE region = '{{ region }}' -- required
;