import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeRulesetRequest, DescribeRulesetResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeRulesetCommand}. */ export interface DescribeRulesetCommandInput extends DescribeRulesetRequest { } /** * @public * * The output of {@link DescribeRulesetCommand}. */ export interface DescribeRulesetCommandOutput extends DescribeRulesetResponse, __MetadataBearer { } declare const DescribeRulesetCommand_base: { new (input: DescribeRulesetCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeRulesetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves detailed information about the ruleset.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, DescribeRulesetCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, DescribeRulesetCommand } = require("@aws-sdk/client-databrew"); // CommonJS import * // import type { DataBrewClientConfig } from "@aws-sdk/client-databrew"; * const config = {}; // type is DataBrewClientConfig * const client = new DataBrewClient(config); * const input = { // DescribeRulesetRequest * Name: "STRING_VALUE", // required * }; * const command = new DescribeRulesetCommand(input); * const response = await client.send(command); * // { // DescribeRulesetResponse * // Name: "STRING_VALUE", // required * // Description: "STRING_VALUE", * // TargetArn: "STRING_VALUE", * // Rules: [ // RuleList * // { // Rule * // Name: "STRING_VALUE", // required * // Disabled: true || false, * // CheckExpression: "STRING_VALUE", // required * // SubstitutionMap: { // ValuesMap * // "": "STRING_VALUE", * // }, * // Threshold: { // Threshold * // Value: Number("double"), // required * // Type: "GREATER_THAN_OR_EQUAL" || "LESS_THAN_OR_EQUAL" || "GREATER_THAN" || "LESS_THAN", * // Unit: "COUNT" || "PERCENTAGE", * // }, * // ColumnSelectors: [ // ColumnSelectorList * // { // ColumnSelector * // Regex: "STRING_VALUE", * // Name: "STRING_VALUE", * // }, * // ], * // }, * // ], * // CreateDate: new Date("TIMESTAMP"), * // CreatedBy: "STRING_VALUE", * // LastModifiedBy: "STRING_VALUE", * // LastModifiedDate: new Date("TIMESTAMP"), * // ResourceArn: "STRING_VALUE", * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // }; * * ``` * * @param DescribeRulesetCommandInput - {@link DescribeRulesetCommandInput} * @returns {@link DescribeRulesetCommandOutput} * @see {@link DescribeRulesetCommandInput} for command's `input` shape. * @see {@link DescribeRulesetCommandOutput} for command's `response` shape. * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape. * * @throws {@link ResourceNotFoundException} (client fault) *

One or more resources can't be found.

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

The input parameters for this request failed validation.

* * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* * * @public */ export declare class DescribeRulesetCommand extends DescribeRulesetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeRulesetRequest; output: DescribeRulesetResponse; }; sdk: { input: DescribeRulesetCommandInput; output: DescribeRulesetCommandOutput; }; }; }