import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; import type { ListDataQualityStatisticsRequest, ListDataQualityStatisticsResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListDataQualityStatisticsCommand}. */ export interface ListDataQualityStatisticsCommandInput extends ListDataQualityStatisticsRequest { } /** * @public * * The output of {@link ListDataQualityStatisticsCommand}. */ export interface ListDataQualityStatisticsCommandOutput extends ListDataQualityStatisticsResponse, __MetadataBearer { } declare const ListDataQualityStatisticsCommand_base: { new (input: ListDataQualityStatisticsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListDataQualityStatisticsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves a list of data quality statistics.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, ListDataQualityStatisticsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, ListDataQualityStatisticsCommand } = require("@aws-sdk/client-glue"); // CommonJS import * // import type { GlueClientConfig } from "@aws-sdk/client-glue"; * const config = {}; // type is GlueClientConfig * const client = new GlueClient(config); * const input = { // ListDataQualityStatisticsRequest * StatisticId: "STRING_VALUE", * ProfileId: "STRING_VALUE", * TimestampFilter: { // TimestampFilter * RecordedBefore: new Date("TIMESTAMP"), * RecordedAfter: new Date("TIMESTAMP"), * }, * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListDataQualityStatisticsCommand(input); * const response = await client.send(command); * // { // ListDataQualityStatisticsResponse * // Statistics: [ // StatisticSummaryList * // { // StatisticSummary * // StatisticId: "STRING_VALUE", * // ProfileId: "STRING_VALUE", * // RunIdentifier: { // RunIdentifier * // RunId: "STRING_VALUE", * // JobRunId: "STRING_VALUE", * // }, * // StatisticName: "STRING_VALUE", * // DoubleValue: Number("double"), * // EvaluationLevel: "Dataset" || "Column" || "Multicolumn", * // ColumnsReferenced: [ // ColumnNameList * // "STRING_VALUE", * // ], * // ReferencedDatasets: [ // ReferenceDatasetsList * // "STRING_VALUE", * // ], * // StatisticProperties: { // StatisticPropertiesMap * // "": "STRING_VALUE", * // }, * // RecordedOn: new Date("TIMESTAMP"), * // InclusionAnnotation: { // TimestampedInclusionAnnotation * // Value: "INCLUDE" || "EXCLUDE", * // LastModifiedOn: new Date("TIMESTAMP"), * // }, * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListDataQualityStatisticsCommandInput - {@link ListDataQualityStatisticsCommandInput} * @returns {@link ListDataQualityStatisticsCommandOutput} * @see {@link ListDataQualityStatisticsCommandInput} for command's `input` shape. * @see {@link ListDataQualityStatisticsCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link EntityNotFoundException} (client fault) *

A specified entity does not exist

* * @throws {@link InternalServiceException} (server fault) *

An internal service error occurred.

* * @throws {@link InvalidInputException} (client fault) *

The input provided was not valid.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class ListDataQualityStatisticsCommand extends ListDataQualityStatisticsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListDataQualityStatisticsRequest; output: ListDataQualityStatisticsResponse; }; sdk: { input: ListDataQualityStatisticsCommandInput; output: ListDataQualityStatisticsCommandOutput; }; }; }