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

Returns an existing ruleset by identifier or name.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, GetDataQualityRulesetCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, GetDataQualityRulesetCommand } = 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 = { // GetDataQualityRulesetRequest * Name: "STRING_VALUE", // required * }; * const command = new GetDataQualityRulesetCommand(input); * const response = await client.send(command); * // { // GetDataQualityRulesetResponse * // Name: "STRING_VALUE", * // Description: "STRING_VALUE", * // Ruleset: "STRING_VALUE", * // TargetTable: { // DataQualityTargetTable * // TableName: "STRING_VALUE", // required * // DatabaseName: "STRING_VALUE", // required * // CatalogId: "STRING_VALUE", * // }, * // CreatedOn: new Date("TIMESTAMP"), * // LastModifiedOn: new Date("TIMESTAMP"), * // RecommendationRunId: "STRING_VALUE", * // DataQualitySecurityConfiguration: "STRING_VALUE", * // }; * * ``` * * @param GetDataQualityRulesetCommandInput - {@link GetDataQualityRulesetCommandInput} * @returns {@link GetDataQualityRulesetCommandOutput} * @see {@link GetDataQualityRulesetCommandInput} for command's `input` shape. * @see {@link GetDataQualityRulesetCommandOutput} 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 GetDataQualityRulesetCommand extends GetDataQualityRulesetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetDataQualityRulesetRequest; output: GetDataQualityRulesetResponse; }; sdk: { input: GetDataQualityRulesetCommandInput; output: GetDataQualityRulesetCommandOutput; }; }; }