import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListSchedulesRequest, ListSchedulesResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListSchedulesCommand}. */ export interface ListSchedulesCommandInput extends ListSchedulesRequest { } /** * @public * * The output of {@link ListSchedulesCommand}. */ export interface ListSchedulesCommandOutput extends ListSchedulesResponse, __MetadataBearer { } declare const ListSchedulesCommand_base: { new (input: ListSchedulesCommandInput): import("@smithy/core/client").CommandImpl; new (...[input]: [] | [ListSchedulesCommandInput]): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the DataBrew schedules that are defined.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, ListSchedulesCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, ListSchedulesCommand } = 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 = { // ListSchedulesRequest * JobName: "STRING_VALUE", * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * }; * const command = new ListSchedulesCommand(input); * const response = await client.send(command); * // { // ListSchedulesResponse * // Schedules: [ // ScheduleList // required * // { // Schedule * // AccountId: "STRING_VALUE", * // CreatedBy: "STRING_VALUE", * // CreateDate: new Date("TIMESTAMP"), * // JobNames: [ // JobNameList * // "STRING_VALUE", * // ], * // LastModifiedBy: "STRING_VALUE", * // LastModifiedDate: new Date("TIMESTAMP"), * // ResourceArn: "STRING_VALUE", * // CronExpression: "STRING_VALUE", * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // Name: "STRING_VALUE", // required * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param ListSchedulesCommandInput - {@link ListSchedulesCommandInput} * @returns {@link ListSchedulesCommandOutput} * @see {@link ListSchedulesCommandInput} for command's `input` shape. * @see {@link ListSchedulesCommandOutput} for command's `response` shape. * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape. * * @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 ListSchedulesCommand extends ListSchedulesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListSchedulesRequest; output: ListSchedulesResponse; }; sdk: { input: ListSchedulesCommandInput; output: ListSchedulesCommandOutput; }; }; }