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

Returns a paginated list of rulesets for the specified list of Glue tables.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, ListDataQualityRulesetsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, ListDataQualityRulesetsCommand } = 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 = { // ListDataQualityRulesetsRequest * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * Filter: { // DataQualityRulesetFilterCriteria * Name: "STRING_VALUE", * Description: "STRING_VALUE", * CreatedBefore: new Date("TIMESTAMP"), * CreatedAfter: new Date("TIMESTAMP"), * LastModifiedBefore: new Date("TIMESTAMP"), * LastModifiedAfter: new Date("TIMESTAMP"), * TargetTable: { // DataQualityTargetTable * TableName: "STRING_VALUE", // required * DatabaseName: "STRING_VALUE", // required * CatalogId: "STRING_VALUE", * }, * }, * Tags: { // TagsMap * "": "STRING_VALUE", * }, * }; * const command = new ListDataQualityRulesetsCommand(input); * const response = await client.send(command); * // { // ListDataQualityRulesetsResponse * // Rulesets: [ // DataQualityRulesetList * // { // DataQualityRulesetListDetails * // Name: "STRING_VALUE", * // Description: "STRING_VALUE", * // CreatedOn: new Date("TIMESTAMP"), * // LastModifiedOn: new Date("TIMESTAMP"), * // TargetTable: { // DataQualityTargetTable * // TableName: "STRING_VALUE", // required * // DatabaseName: "STRING_VALUE", // required * // CatalogId: "STRING_VALUE", * // }, * // RecommendationRunId: "STRING_VALUE", * // RuleCount: Number("int"), * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListDataQualityRulesetsCommandInput - {@link ListDataQualityRulesetsCommandInput} * @returns {@link ListDataQualityRulesetsCommandOutput} * @see {@link ListDataQualityRulesetsCommandInput} for command's `input` shape. * @see {@link ListDataQualityRulesetsCommandOutput} 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 ListDataQualityRulesetsCommand extends ListDataQualityRulesetsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListDataQualityRulesetsRequest; output: ListDataQualityRulesetsResponse; }; sdk: { input: ListDataQualityRulesetsCommandInput; output: ListDataQualityRulesetsCommandOutput; }; }; }