import { Command as $Command } from "@smithy/smithy-client"; import { MetadataBearer as __MetadataBearer } from "@smithy/types"; import { ListDataQualityJobDefinitionsRequest, ListDataQualityJobDefinitionsResponse } from "../models/models_4"; import { SageMakerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../SageMakerClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ListDataQualityJobDefinitionsCommand}. */ export interface ListDataQualityJobDefinitionsCommandInput extends ListDataQualityJobDefinitionsRequest { } /** * @public * * The output of {@link ListDataQualityJobDefinitionsCommand}. */ export interface ListDataQualityJobDefinitionsCommandOutput extends ListDataQualityJobDefinitionsResponse, __MetadataBearer { } declare const ListDataQualityJobDefinitionsCommand_base: { new (input: ListDataQualityJobDefinitionsCommandInput): import("@smithy/smithy-client").CommandImpl; new (...[input]: [] | [ListDataQualityJobDefinitionsCommandInput]): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Lists the data quality job definitions in your account.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { SageMakerClient, ListDataQualityJobDefinitionsCommand } from "@aws-sdk/client-sagemaker"; // ES Modules import * // const { SageMakerClient, ListDataQualityJobDefinitionsCommand } = require("@aws-sdk/client-sagemaker"); // CommonJS import * const client = new SageMakerClient(config); * const input = { // ListDataQualityJobDefinitionsRequest * EndpointName: "STRING_VALUE", * SortBy: "Name" || "CreationTime", * SortOrder: "Ascending" || "Descending", * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * NameContains: "STRING_VALUE", * CreationTimeBefore: new Date("TIMESTAMP"), * CreationTimeAfter: new Date("TIMESTAMP"), * }; * const command = new ListDataQualityJobDefinitionsCommand(input); * const response = await client.send(command); * // { // ListDataQualityJobDefinitionsResponse * // JobDefinitionSummaries: [ // MonitoringJobDefinitionSummaryList // required * // { // MonitoringJobDefinitionSummary * // MonitoringJobDefinitionName: "STRING_VALUE", // required * // MonitoringJobDefinitionArn: "STRING_VALUE", // required * // CreationTime: new Date("TIMESTAMP"), // required * // EndpointName: "STRING_VALUE", // required * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListDataQualityJobDefinitionsCommandInput - {@link ListDataQualityJobDefinitionsCommandInput} * @returns {@link ListDataQualityJobDefinitionsCommandOutput} * @see {@link ListDataQualityJobDefinitionsCommandInput} for command's `input` shape. * @see {@link ListDataQualityJobDefinitionsCommandOutput} for command's `response` shape. * @see {@link SageMakerClientResolvedConfig | config} for SageMakerClient's `config` shape. * * @throws {@link SageMakerServiceException} *

Base exception class for all service exceptions from SageMaker service.

* * * @public */ export declare class ListDataQualityJobDefinitionsCommand extends ListDataQualityJobDefinitionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListDataQualityJobDefinitionsRequest; output: ListDataQualityJobDefinitionsResponse; }; sdk: { input: ListDataQualityJobDefinitionsCommandInput; output: ListDataQualityJobDefinitionsCommandOutput; }; }; }