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 { ListDataQualityResultsRequest, ListDataQualityResultsResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListDataQualityResultsCommand}. */ export interface ListDataQualityResultsCommandInput extends ListDataQualityResultsRequest { } /** * @public * * The output of {@link ListDataQualityResultsCommand}. */ export interface ListDataQualityResultsCommandOutput extends ListDataQualityResultsResponse, __MetadataBearer { } declare const ListDataQualityResultsCommand_base: { new (input: ListDataQualityResultsCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListDataQualityResultsCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Returns all data quality execution results for your account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, ListDataQualityResultsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, ListDataQualityResultsCommand } = 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 = { // ListDataQualityResultsRequest * Filter: { // DataQualityResultFilterCriteria * DataSource: { // DataSource * GlueTable: { // GlueTable * DatabaseName: "STRING_VALUE", // required * TableName: "STRING_VALUE", // required * CatalogId: "STRING_VALUE", * ConnectionName: "STRING_VALUE", * AdditionalOptions: { // GlueTableAdditionalOptions * "": "STRING_VALUE", * }, * }, * DataQualityGlueTable: { // DataQualityGlueTable * DatabaseName: "STRING_VALUE", // required * TableName: "STRING_VALUE", // required * CatalogId: "STRING_VALUE", * ConnectionName: "STRING_VALUE", * AdditionalOptions: { * "": "STRING_VALUE", * }, * PreProcessingQuery: "STRING_VALUE", * }, * }, * JobName: "STRING_VALUE", * JobRunId: "STRING_VALUE", * StartedAfter: new Date("TIMESTAMP"), * StartedBefore: new Date("TIMESTAMP"), * }, * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new ListDataQualityResultsCommand(input); * const response = await client.send(command); * // { // ListDataQualityResultsResponse * // Results: [ // DataQualityResultDescriptionList // required * // { // DataQualityResultDescription * // ResultId: "STRING_VALUE", * // DataSource: { // DataSource * // GlueTable: { // GlueTable * // DatabaseName: "STRING_VALUE", // required * // TableName: "STRING_VALUE", // required * // CatalogId: "STRING_VALUE", * // ConnectionName: "STRING_VALUE", * // AdditionalOptions: { // GlueTableAdditionalOptions * // "": "STRING_VALUE", * // }, * // }, * // DataQualityGlueTable: { // DataQualityGlueTable * // DatabaseName: "STRING_VALUE", // required * // TableName: "STRING_VALUE", // required * // CatalogId: "STRING_VALUE", * // ConnectionName: "STRING_VALUE", * // AdditionalOptions: { * // "": "STRING_VALUE", * // }, * // PreProcessingQuery: "STRING_VALUE", * // }, * // }, * // JobName: "STRING_VALUE", * // JobRunId: "STRING_VALUE", * // StartedOn: new Date("TIMESTAMP"), * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListDataQualityResultsCommandInput - {@link ListDataQualityResultsCommandInput} * @returns {@link ListDataQualityResultsCommandOutput} * @see {@link ListDataQualityResultsCommandInput} for command's `input` shape. * @see {@link ListDataQualityResultsCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link InternalServiceException} (server fault) *

An internal service error occurred.

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

The input provided was not valid.

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

The operation timed out.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class ListDataQualityResultsCommand extends ListDataQualityResultsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListDataQualityResultsRequest; output: ListDataQualityResultsResponse; }; sdk: { input: ListDataQualityResultsCommandInput; output: ListDataQualityResultsCommandOutput; }; }; }