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 { GetDataQualityRuleRecommendationRunRequest, GetDataQualityRuleRecommendationRunResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetDataQualityRuleRecommendationRunCommand}. */ export interface GetDataQualityRuleRecommendationRunCommandInput extends GetDataQualityRuleRecommendationRunRequest { } /** * @public * * The output of {@link GetDataQualityRuleRecommendationRunCommand}. */ export interface GetDataQualityRuleRecommendationRunCommandOutput extends GetDataQualityRuleRecommendationRunResponse, __MetadataBearer { } declare const GetDataQualityRuleRecommendationRunCommand_base: { new (input: GetDataQualityRuleRecommendationRunCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetDataQualityRuleRecommendationRunCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Gets the specified recommendation run that was used to generate rules.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, GetDataQualityRuleRecommendationRunCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, GetDataQualityRuleRecommendationRunCommand } = 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 = { // GetDataQualityRuleRecommendationRunRequest * RunId: "STRING_VALUE", // required * }; * const command = new GetDataQualityRuleRecommendationRunCommand(input); * const response = await client.send(command); * // { // GetDataQualityRuleRecommendationRunResponse * // RunId: "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", * // }, * // }, * // Role: "STRING_VALUE", * // NumberOfWorkers: Number("int"), * // Timeout: Number("int"), * // Status: "STARTING" || "RUNNING" || "STOPPING" || "STOPPED" || "SUCCEEDED" || "FAILED" || "TIMEOUT", * // ErrorString: "STRING_VALUE", * // StartedOn: new Date("TIMESTAMP"), * // LastModifiedOn: new Date("TIMESTAMP"), * // CompletedOn: new Date("TIMESTAMP"), * // ExecutionTime: Number("int"), * // RecommendedRuleset: "STRING_VALUE", * // CreatedRulesetName: "STRING_VALUE", * // DataQualitySecurityConfiguration: "STRING_VALUE", * // }; * * ``` * * @param GetDataQualityRuleRecommendationRunCommandInput - {@link GetDataQualityRuleRecommendationRunCommandInput} * @returns {@link GetDataQualityRuleRecommendationRunCommandOutput} * @see {@link GetDataQualityRuleRecommendationRunCommandInput} for command's `input` shape. * @see {@link GetDataQualityRuleRecommendationRunCommandOutput} 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 OperationTimeoutException} (client fault) *

The operation timed out.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class GetDataQualityRuleRecommendationRunCommand extends GetDataQualityRuleRecommendationRunCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetDataQualityRuleRecommendationRunRequest; output: GetDataQualityRuleRecommendationRunResponse; }; sdk: { input: GetDataQualityRuleRecommendationRunCommandInput; output: GetDataQualityRuleRecommendationRunCommandOutput; }; }; }