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 { BatchGetDataQualityResultRequest, BatchGetDataQualityResultResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link BatchGetDataQualityResultCommand}. */ export interface BatchGetDataQualityResultCommandInput extends BatchGetDataQualityResultRequest { } /** * @public * * The output of {@link BatchGetDataQualityResultCommand}. */ export interface BatchGetDataQualityResultCommandOutput extends BatchGetDataQualityResultResponse, __MetadataBearer { } declare const BatchGetDataQualityResultCommand_base: { new (input: BatchGetDataQualityResultCommandInput): import("@smithy/core/client").CommandImpl; new (input: BatchGetDataQualityResultCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves a list of data quality results for the specified result IDs.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, BatchGetDataQualityResultCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, BatchGetDataQualityResultCommand } = 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 = { // BatchGetDataQualityResultRequest * ResultIds: [ // DataQualityResultIds // required * "STRING_VALUE", * ], * }; * const command = new BatchGetDataQualityResultCommand(input); * const response = await client.send(command); * // { // BatchGetDataQualityResultResponse * // Results: [ // DataQualityResultsList // required * // { // DataQualityResult * // ResultId: "STRING_VALUE", * // ProfileId: "STRING_VALUE", * // Score: Number("double"), * // 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", * // }, * // }, * // RulesetName: "STRING_VALUE", * // EvaluationContext: "STRING_VALUE", * // StartedOn: new Date("TIMESTAMP"), * // CompletedOn: new Date("TIMESTAMP"), * // JobName: "STRING_VALUE", * // JobRunId: "STRING_VALUE", * // RulesetEvaluationRunId: "STRING_VALUE", * // RuleResults: [ // DataQualityRuleResults * // { // DataQualityRuleResult * // Name: "STRING_VALUE", * // Description: "STRING_VALUE", * // EvaluationMessage: "STRING_VALUE", * // Result: "PASS" || "FAIL" || "ERROR", * // EvaluatedMetrics: { // EvaluatedMetricsMap * // "": Number("double"), * // }, * // EvaluatedRule: "STRING_VALUE", * // RuleMetrics: { // RuleMetricsMap * // "": Number("double"), * // }, * // Labels: { // Labels * // "": "STRING_VALUE", * // }, * // }, * // ], * // AnalyzerResults: [ // DataQualityAnalyzerResults * // { // DataQualityAnalyzerResult * // Name: "STRING_VALUE", * // Description: "STRING_VALUE", * // EvaluationMessage: "STRING_VALUE", * // EvaluatedMetrics: { * // "": Number("double"), * // }, * // }, * // ], * // Observations: [ // DataQualityObservations * // { // DataQualityObservation * // Description: "STRING_VALUE", * // MetricBasedObservation: { // MetricBasedObservation * // MetricName: "STRING_VALUE", * // StatisticId: "STRING_VALUE", * // MetricValues: { // DataQualityMetricValues * // ActualValue: Number("double"), * // ExpectedValue: Number("double"), * // LowerLimit: Number("double"), * // UpperLimit: Number("double"), * // }, * // NewRules: [ // NewRules * // "STRING_VALUE", * // ], * // }, * // }, * // ], * // AggregatedMetrics: { // DataQualityAggregatedMetrics * // TotalRowsProcessed: Number("double"), * // TotalRowsPassed: Number("double"), * // TotalRowsFailed: Number("double"), * // TotalRulesProcessed: Number("double"), * // TotalRulesPassed: Number("double"), * // TotalRulesFailed: Number("double"), * // }, * // }, * // ], * // ResultsNotFound: [ // DataQualityResultIds * // "STRING_VALUE", * // ], * // }; * * ``` * * @param BatchGetDataQualityResultCommandInput - {@link BatchGetDataQualityResultCommandInput} * @returns {@link BatchGetDataQualityResultCommandOutput} * @see {@link BatchGetDataQualityResultCommandInput} for command's `input` shape. * @see {@link BatchGetDataQualityResultCommandOutput} 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 BatchGetDataQualityResultCommand extends BatchGetDataQualityResultCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: BatchGetDataQualityResultRequest; output: BatchGetDataQualityResultResponse; }; sdk: { input: BatchGetDataQualityResultCommandInput; output: BatchGetDataQualityResultCommandOutput; }; }; }